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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (667) hide show
  1. package/README.md +57 -88
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1234 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1013 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1342 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +220 -509
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1405 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +282 -227
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +254 -335
  36. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  37. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1463 -0
  38. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  39. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +410 -0
  40. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1712 -0
  42. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +414 -0
  44. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  46. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1411 -0
  48. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  49. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
  50. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1517 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1978 -0
  54. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  55. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  56. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  57. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +278 -1906
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +318 -70
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +335 -2711
  62. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1623 -0
  64. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  66. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  67. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +904 -338
  68. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  69. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +350 -343
  70. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  71. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +132 -111
  72. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3587 -0
  74. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  76. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  78. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  80. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  82. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  84. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  86. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  88. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  90. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  91. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  92. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  93. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  94. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +979 -0
  95. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  96. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  97. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  98. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  99. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  100. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +765 -0
  101. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  102. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +305 -170
  103. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  104. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +871 -0
  105. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  106. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +927 -0
  107. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  108. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +710 -0
  109. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  110. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +293 -383
  111. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  113. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  114. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1367 -0
  115. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  116. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +802 -0
  117. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +412 -135
  119. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  120. package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +297 -324
  121. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  122. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1198 -0
  123. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  124. package/artifacts/contracts/pool/Pool.sol/Pool.json +1034 -0
  125. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  126. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1474 -0
  127. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  128. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +726 -0
  129. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  130. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +737 -0
  131. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +698 -0
  133. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  134. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +354 -397
  135. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  136. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  137. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  138. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1346 -0
  139. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  140. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +814 -0
  141. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  142. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +129 -168
  143. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  144. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +886 -0
  145. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  146. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +867 -0
  147. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  148. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → product/IPricingService.sol/IPricingService.json} +214 -217
  149. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  150. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +948 -0
  151. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  152. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +81 -65
  153. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  154. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1239 -0
  155. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +770 -0
  157. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  158. package/artifacts/contracts/product/PricingService.sol/PricingService.json +865 -0
  159. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  160. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +746 -0
  161. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  162. package/artifacts/contracts/product/Product.sol/Product.json +1054 -0
  163. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  164. package/artifacts/contracts/product/RiskService.sol/RiskService.json +588 -0
  165. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  166. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +682 -0
  167. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  168. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  169. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  170. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +394 -21
  171. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  172. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
  173. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  174. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  175. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  176. package/artifacts/contracts/registry/Registry.sol/Registry.json +793 -37
  177. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  178. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1858 -0
  179. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  180. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -204
  181. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  182. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +126 -95
  183. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  184. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  185. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  186. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1169 -0
  187. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  188. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  189. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  190. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  191. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  192. package/artifacts/contracts/shared/Component.sol/Component.json +685 -0
  193. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  194. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1573 -0
  195. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  196. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +794 -0
  197. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  198. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +146 -142
  199. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  200. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
  201. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  202. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +193 -75
  203. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  204. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  205. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  206. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +215 -227
  207. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  208. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
  209. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  210. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  211. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  212. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
  213. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  214. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  215. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  216. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
  217. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  218. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  219. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  220. package/artifacts/contracts/shared/IService.sol/IService.json +96 -19
  221. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  222. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  223. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  224. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  225. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  226. package/artifacts/contracts/{components/Component.sol/Component.json → shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json} +194 -215
  227. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  228. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  229. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  230. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
  231. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  232. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  233. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  234. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +12 -70
  235. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  236. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  237. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  238. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +18 -106
  239. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  240. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  241. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  242. package/artifacts/contracts/shared/Service.sol/Service.json +88 -113
  243. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  244. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
  245. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  246. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  247. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  248. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  249. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  250. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  251. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  252. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  253. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  254. package/artifacts/contracts/staking/Staking.sol/Staking.json +1828 -0
  255. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  256. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  257. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  258. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +750 -0
  259. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  260. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  261. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  262. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1236 -0
  263. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  264. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
  265. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  266. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  267. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  268. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  269. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  270. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  271. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  272. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  273. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  274. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  275. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  276. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  277. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  278. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  279. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  280. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  281. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  282. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  283. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  284. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  285. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  286. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  287. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  288. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  289. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  290. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  291. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  292. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  293. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  294. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  295. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  296. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
  297. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  298. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  299. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  300. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  301. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  302. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  303. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  305. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  306. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  307. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  308. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  309. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  310. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  311. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  312. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  313. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  314. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  315. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  316. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  317. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  318. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  319. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  320. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  321. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  322. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +586 -0
  323. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  324. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  325. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  326. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  327. package/contracts/authorization/AccessAdmin.sol +592 -0
  328. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  329. package/contracts/authorization/Authorization.sol +217 -0
  330. package/contracts/authorization/IAccess.sol +48 -0
  331. package/contracts/authorization/IAccessAdmin.sol +135 -0
  332. package/contracts/authorization/IAuthorization.sol +54 -0
  333. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  334. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  335. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  336. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  337. package/contracts/distribution/BasicDistribution.sol +138 -0
  338. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  339. package/contracts/{components → distribution}/Distribution.sol +178 -163
  340. package/contracts/distribution/DistributionService.sol +336 -0
  341. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  342. package/contracts/distribution/IDistributionComponent.sol +52 -0
  343. package/contracts/{instance/service → distribution}/IDistributionService.sol +41 -38
  344. package/contracts/examples/fire/FirePool.sol +75 -0
  345. package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
  346. package/contracts/examples/fire/FireProduct.sol +324 -0
  347. package/contracts/examples/fire/FireProductAuthorization.sol +35 -0
  348. package/contracts/examples/fire/FireUSD.sol +26 -0
  349. package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
  350. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  351. package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
  352. package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
  353. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
  354. package/contracts/instance/IInstance.sol +43 -73
  355. package/contracts/instance/IInstanceService.sol +56 -24
  356. package/contracts/instance/Instance.sol +160 -226
  357. package/contracts/instance/InstanceAdmin.sol +285 -0
  358. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  359. package/contracts/instance/InstanceReader.sol +201 -65
  360. package/contracts/instance/InstanceService.sol +333 -356
  361. package/contracts/instance/InstanceServiceManager.sol +14 -29
  362. package/contracts/instance/InstanceStore.sol +287 -0
  363. package/contracts/instance/base/BalanceStore.sol +123 -0
  364. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  365. package/contracts/instance/base/ObjectCounter.sol +21 -0
  366. package/contracts/instance/base/ObjectLifecycle.sol +111 -0
  367. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +19 -24
  368. package/contracts/instance/module/IAccess.sol +19 -20
  369. package/contracts/instance/module/IBundle.sol +8 -9
  370. package/contracts/instance/module/IComponents.sol +20 -9
  371. package/contracts/instance/module/IDistribution.sol +6 -6
  372. package/contracts/instance/module/IPolicy.sol +47 -35
  373. package/contracts/instance/module/IRisk.sol +1 -1
  374. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  375. package/contracts/oracle/BasicOracle.sol +48 -0
  376. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  377. package/contracts/oracle/IOracle.sol +36 -0
  378. package/contracts/oracle/IOracleComponent.sol +33 -0
  379. package/contracts/oracle/IOracleService.sol +65 -0
  380. package/contracts/oracle/Oracle.sol +167 -0
  381. package/contracts/oracle/OracleService.sol +281 -0
  382. package/contracts/oracle/OracleServiceManager.sol +39 -0
  383. package/contracts/pool/BasicPool.sol +166 -0
  384. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  385. package/contracts/pool/BundleService.sol +438 -0
  386. package/contracts/pool/BundleServiceManager.sol +39 -0
  387. package/contracts/pool/IBundleService.sol +134 -0
  388. package/contracts/pool/IPoolComponent.sol +58 -0
  389. package/contracts/pool/IPoolService.sol +160 -0
  390. package/contracts/pool/Pool.sol +326 -0
  391. package/contracts/pool/PoolService.sol +508 -0
  392. package/contracts/pool/PoolServiceManager.sol +39 -0
  393. package/contracts/product/ApplicationService.sol +247 -0
  394. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  395. package/contracts/product/BasicProduct.sol +53 -0
  396. package/contracts/product/BasicProductAuthorization.sol +43 -0
  397. package/contracts/product/ClaimService.sol +546 -0
  398. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  399. package/contracts/{instance/service → product}/IApplicationService.sol +16 -35
  400. package/contracts/product/IClaimService.sol +122 -0
  401. package/contracts/product/IPolicyService.sol +77 -0
  402. package/contracts/product/IPricingService.sol +39 -0
  403. package/contracts/product/IProductComponent.sol +39 -0
  404. package/contracts/product/IRiskService.sol +33 -0
  405. package/contracts/product/PolicyService.sol +651 -0
  406. package/contracts/product/PolicyServiceManager.sol +39 -0
  407. package/contracts/product/PricingService.sol +300 -0
  408. package/contracts/product/PricingServiceManager.sol +39 -0
  409. package/contracts/product/Product.sol +425 -0
  410. package/contracts/product/RiskService.sol +96 -0
  411. package/contracts/product/RiskServiceManager.sol +39 -0
  412. package/contracts/registry/ChainNft.sol +80 -32
  413. package/contracts/registry/IRegistry.sol +94 -25
  414. package/contracts/registry/IRegistryService.sol +44 -42
  415. package/contracts/registry/ITransferInterceptor.sol +1 -0
  416. package/contracts/registry/Registry.sol +439 -201
  417. package/contracts/registry/RegistryAdmin.sol +464 -0
  418. package/contracts/registry/RegistryService.sol +70 -101
  419. package/contracts/registry/RegistryServiceManager.sol +23 -32
  420. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  421. package/contracts/registry/ReleaseRegistry.sol +491 -0
  422. package/contracts/registry/ServiceAuthorizationV3.sol +199 -0
  423. package/contracts/registry/TokenRegistry.sol +261 -62
  424. package/contracts/shared/Component.sol +268 -0
  425. package/contracts/shared/ComponentService.sol +641 -0
  426. package/contracts/shared/ComponentServiceManager.sol +38 -0
  427. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  428. package/contracts/shared/ContractLib.sol +38 -0
  429. package/contracts/shared/IComponent.sol +70 -0
  430. package/contracts/shared/IComponentService.sol +108 -0
  431. package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
  432. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  433. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  434. package/contracts/shared/INftOwnable.sol +2 -2
  435. package/contracts/shared/IPolicyHolder.sol +23 -14
  436. package/contracts/shared/IRegistryLinked.sol +0 -1
  437. package/contracts/shared/IService.sol +15 -8
  438. package/contracts/shared/InitializableCustom.sol +177 -0
  439. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  440. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  441. package/contracts/shared/KeyValueStore.sol +131 -0
  442. package/contracts/shared/Lifecycle.sol +77 -0
  443. package/contracts/shared/NftIdSet.sol +65 -0
  444. package/contracts/shared/NftOwnable.sol +10 -23
  445. package/contracts/shared/PolicyHolder.sol +19 -42
  446. package/contracts/shared/Registerable.sol +17 -16
  447. package/contracts/shared/RegistryLinked.sol +3 -7
  448. package/contracts/shared/Service.sol +56 -27
  449. package/contracts/shared/TokenHandler.sol +115 -9
  450. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  451. package/contracts/staking/IStaking.sol +168 -0
  452. package/contracts/staking/IStakingService.sol +160 -0
  453. package/contracts/staking/StakeManagerLib.sol +224 -0
  454. package/contracts/staking/Staking.sol +498 -0
  455. package/contracts/staking/StakingLifecycle.sol +23 -0
  456. package/contracts/staking/StakingManager.sol +52 -0
  457. package/contracts/staking/StakingReader.sol +183 -0
  458. package/contracts/staking/StakingService.sol +407 -0
  459. package/contracts/staking/StakingServiceManager.sol +44 -0
  460. package/contracts/staking/StakingStore.sol +605 -0
  461. package/contracts/staking/TargetManagerLib.sol +211 -0
  462. package/contracts/{types → type}/AddressSet.sol +1 -1
  463. package/contracts/type/Amount.sol +135 -0
  464. package/contracts/{types → type}/Blocknumber.sol +26 -3
  465. package/contracts/{types → type}/ClaimId.sol +25 -2
  466. package/contracts/{types → type}/Fee.sol +33 -24
  467. package/contracts/{types → type}/NftId.sol +15 -16
  468. package/contracts/{types → type}/NftIdSet.sol +2 -2
  469. package/contracts/type/ObjectType.sol +275 -0
  470. package/contracts/{types → type}/PayoutId.sol +33 -5
  471. package/contracts/{types → type}/Referral.sol +2 -1
  472. package/contracts/type/RequestId.sol +75 -0
  473. package/contracts/{types → type}/RiskId.sol +16 -2
  474. package/contracts/type/RoleId.sol +174 -0
  475. package/contracts/type/Seconds.sol +101 -0
  476. package/contracts/type/Selector.sol +102 -0
  477. package/contracts/{types → type}/StateId.sol +34 -4
  478. package/contracts/type/String.sol +53 -0
  479. package/contracts/{types → type}/Timestamp.sol +21 -2
  480. package/contracts/{types → type}/UFixed.sol +34 -9
  481. package/contracts/{types → type}/Version.sol +4 -2
  482. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  483. package/contracts/{shared → upgradeability}/ProxyManager.sol +92 -30
  484. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  485. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  486. package/package.json +8 -5
  487. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  488. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  489. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  490. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  491. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  492. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  493. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  494. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  495. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  496. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -783
  497. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  498. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  499. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
  500. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  501. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  502. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  503. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  504. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  505. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  506. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  507. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  508. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  509. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  511. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  512. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  513. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -968
  514. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  515. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
  516. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  517. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1093
  518. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  519. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
  520. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  521. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
  522. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  523. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
  524. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  525. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1724
  526. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  527. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -801
  528. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  529. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  530. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  531. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -409
  532. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  533. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  534. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  535. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  537. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1021
  538. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
  540. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -816
  542. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  543. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -653
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  545. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
  546. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  547. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
  548. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  549. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  550. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  551. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  552. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  553. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  554. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  555. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  556. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  557. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  558. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  559. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  560. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  561. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  563. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  564. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  565. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  566. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  567. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  568. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  569. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -521
  570. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  571. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  572. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  573. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  574. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  575. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  576. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  577. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  578. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  579. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  580. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  581. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  582. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  583. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  584. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  585. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  586. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  588. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  590. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  591. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  592. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  593. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  594. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  595. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  596. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  597. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  598. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  599. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  600. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  601. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  602. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  603. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  604. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  605. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  606. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  607. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  608. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  609. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  610. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  611. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  613. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  614. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  615. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  617. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  619. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  621. package/contracts/components/Component.sol +0 -241
  622. package/contracts/components/IComponent.sol +0 -74
  623. package/contracts/components/IDistributionComponent.sol +0 -71
  624. package/contracts/components/IPoolComponent.sol +0 -113
  625. package/contracts/components/IProductComponent.sol +0 -40
  626. package/contracts/components/Pool.sol +0 -299
  627. package/contracts/components/Product.sol +0 -293
  628. package/contracts/instance/InstanceAccessManager.sol +0 -297
  629. package/contracts/instance/base/ComponentService.sol +0 -134
  630. package/contracts/instance/base/KeyValueStore.sol +0 -175
  631. package/contracts/instance/base/Lifecycle.sol +0 -109
  632. package/contracts/instance/module/ISetup.sol +0 -33
  633. package/contracts/instance/module/ITreasury.sol +0 -23
  634. package/contracts/instance/service/ApplicationService.sol +0 -350
  635. package/contracts/instance/service/BundleService.sol +0 -336
  636. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  637. package/contracts/instance/service/ClaimService.sol +0 -151
  638. package/contracts/instance/service/DistributionService.sol +0 -450
  639. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  640. package/contracts/instance/service/IBundleService.sol +0 -62
  641. package/contracts/instance/service/IClaimService.sol +0 -61
  642. package/contracts/instance/service/IPolicyService.sol +0 -72
  643. package/contracts/instance/service/IPoolService.sol +0 -35
  644. package/contracts/instance/service/IProductService.sol +0 -40
  645. package/contracts/instance/service/PolicyService.sol +0 -403
  646. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  647. package/contracts/instance/service/PoolService.sol +0 -163
  648. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  649. package/contracts/instance/service/ProductService.sol +0 -233
  650. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  651. package/contracts/registry/RegistryAccessManager.sol +0 -216
  652. package/contracts/registry/ReleaseManager.sol +0 -322
  653. package/contracts/shared/ContractDeployerLib.sol +0 -72
  654. package/contracts/test/TestFee.sol +0 -25
  655. package/contracts/test/TestRegisterable.sol +0 -18
  656. package/contracts/test/TestRoleId.sol +0 -14
  657. package/contracts/test/TestService.sol +0 -25
  658. package/contracts/test/TestToken.sol +0 -26
  659. package/contracts/test/TestVersion.sol +0 -44
  660. package/contracts/test/TestVersionable.sol +0 -17
  661. package/contracts/types/ChainId.sol +0 -38
  662. package/contracts/types/NumberId.sol +0 -52
  663. package/contracts/types/ObjectType.sol +0 -157
  664. package/contracts/types/RoleId.sol +0 -95
  665. package/contracts/types/Seconds.sol +0 -54
  666. /package/contracts/{types → type}/DistributorType.sol +0 -0
  667. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -0,0 +1,1239 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PolicyService",
4
+ "sourceName": "contracts/product/PolicyService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "NftId",
48
+ "name": "componentNftId",
49
+ "type": "uint96"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "componentNftId",
60
+ "type": "uint96"
61
+ },
62
+ {
63
+ "internalType": "ObjectType",
64
+ "name": "expectedType",
65
+ "type": "uint8"
66
+ },
67
+ {
68
+ "internalType": "ObjectType",
69
+ "name": "actualType",
70
+ "type": "uint8"
71
+ }
72
+ ],
73
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "nftId",
81
+ "type": "uint96"
82
+ }
83
+ ],
84
+ "name": "ErrorNftOwnableAlreadyLinked",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "contractAddress",
92
+ "type": "address"
93
+ }
94
+ ],
95
+ "name": "ErrorNftOwnableContractNotRegistered",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [],
100
+ "name": "ErrorNftOwnableInitialOwnerZero",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [
105
+ {
106
+ "internalType": "address",
107
+ "name": "account",
108
+ "type": "address"
109
+ }
110
+ ],
111
+ "name": "ErrorNftOwnableNotOwner",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "registryAddress",
119
+ "type": "address"
120
+ }
121
+ ],
122
+ "name": "ErrorNotRegistry",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "address",
129
+ "name": "policyOwner",
130
+ "type": "address"
131
+ },
132
+ {
133
+ "internalType": "address",
134
+ "name": "tokenHandler",
135
+ "type": "address"
136
+ },
137
+ {
138
+ "internalType": "uint256",
139
+ "name": "premiumAmount",
140
+ "type": "uint256"
141
+ },
142
+ {
143
+ "internalType": "uint256",
144
+ "name": "allowance",
145
+ "type": "uint256"
146
+ }
147
+ ],
148
+ "name": "ErrorPolicyServiceAllowanceInsufficient",
149
+ "type": "error"
150
+ },
151
+ {
152
+ "inputs": [
153
+ {
154
+ "internalType": "address",
155
+ "name": "policyOwner",
156
+ "type": "address"
157
+ },
158
+ {
159
+ "internalType": "uint256",
160
+ "name": "premiumAmount",
161
+ "type": "uint256"
162
+ },
163
+ {
164
+ "internalType": "uint256",
165
+ "name": "balance",
166
+ "type": "uint256"
167
+ }
168
+ ],
169
+ "name": "ErrorPolicyServiceBalanceInsufficient",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [
174
+ {
175
+ "internalType": "address",
176
+ "name": "customer",
177
+ "type": "address"
178
+ },
179
+ {
180
+ "internalType": "address",
181
+ "name": "tokenHandlerAddress",
182
+ "type": "address"
183
+ },
184
+ {
185
+ "internalType": "uint256",
186
+ "name": "amount",
187
+ "type": "uint256"
188
+ }
189
+ ],
190
+ "name": "ErrorPolicyServiceInsufficientAllowance",
191
+ "type": "error"
192
+ },
193
+ {
194
+ "inputs": [
195
+ {
196
+ "internalType": "NftId",
197
+ "name": "policyNftId",
198
+ "type": "uint96"
199
+ },
200
+ {
201
+ "internalType": "uint16",
202
+ "name": "openClaimsCount",
203
+ "type": "uint16"
204
+ }
205
+ ],
206
+ "name": "ErrorPolicyServiceOpenClaims",
207
+ "type": "error"
208
+ },
209
+ {
210
+ "inputs": [
211
+ {
212
+ "internalType": "NftId",
213
+ "name": "policyNftId",
214
+ "type": "uint96"
215
+ }
216
+ ],
217
+ "name": "ErrorPolicyServicePolicyAlreadyActivated",
218
+ "type": "error"
219
+ },
220
+ {
221
+ "inputs": [
222
+ {
223
+ "internalType": "NftId",
224
+ "name": "policyNftId",
225
+ "type": "uint96"
226
+ }
227
+ ],
228
+ "name": "ErrorPolicyServicePolicyAlreadyClosed",
229
+ "type": "error"
230
+ },
231
+ {
232
+ "inputs": [
233
+ {
234
+ "internalType": "NftId",
235
+ "name": "policyNftId",
236
+ "type": "uint96"
237
+ },
238
+ {
239
+ "internalType": "Timestamp",
240
+ "name": "lowerLimit",
241
+ "type": "uint40"
242
+ },
243
+ {
244
+ "internalType": "Timestamp",
245
+ "name": "expiredAt",
246
+ "type": "uint40"
247
+ }
248
+ ],
249
+ "name": "ErrorPolicyServicePolicyExpirationTooEarly",
250
+ "type": "error"
251
+ },
252
+ {
253
+ "inputs": [
254
+ {
255
+ "internalType": "NftId",
256
+ "name": "policyNftId",
257
+ "type": "uint96"
258
+ },
259
+ {
260
+ "internalType": "Timestamp",
261
+ "name": "upperLimit",
262
+ "type": "uint40"
263
+ },
264
+ {
265
+ "internalType": "Timestamp",
266
+ "name": "expiredAt",
267
+ "type": "uint40"
268
+ }
269
+ ],
270
+ "name": "ErrorPolicyServicePolicyExpirationTooLate",
271
+ "type": "error"
272
+ },
273
+ {
274
+ "inputs": [
275
+ {
276
+ "internalType": "NftId",
277
+ "name": "policyNftId",
278
+ "type": "uint96"
279
+ },
280
+ {
281
+ "internalType": "Timestamp",
282
+ "name": "expiredAt",
283
+ "type": "uint40"
284
+ }
285
+ ],
286
+ "name": "ErrorPolicyServicePolicyHasNotExpired",
287
+ "type": "error"
288
+ },
289
+ {
290
+ "inputs": [
291
+ {
292
+ "internalType": "NftId",
293
+ "name": "policyNftId",
294
+ "type": "uint96"
295
+ }
296
+ ],
297
+ "name": "ErrorPolicyServicePolicyNotActivated",
298
+ "type": "error"
299
+ },
300
+ {
301
+ "inputs": [
302
+ {
303
+ "internalType": "NftId",
304
+ "name": "policyNftId",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "internalType": "StateId",
309
+ "name": "state",
310
+ "type": "uint8"
311
+ }
312
+ ],
313
+ "name": "ErrorPolicyServicePolicyNotActive",
314
+ "type": "error"
315
+ },
316
+ {
317
+ "inputs": [
318
+ {
319
+ "internalType": "NftId",
320
+ "name": "applicationNftId",
321
+ "type": "uint96"
322
+ },
323
+ {
324
+ "internalType": "NftId",
325
+ "name": "expectedProductNftId",
326
+ "type": "uint96"
327
+ },
328
+ {
329
+ "internalType": "NftId",
330
+ "name": "actualProductNftId",
331
+ "type": "uint96"
332
+ }
333
+ ],
334
+ "name": "ErrorPolicyServicePolicyProductMismatch",
335
+ "type": "error"
336
+ },
337
+ {
338
+ "inputs": [
339
+ {
340
+ "internalType": "NftId",
341
+ "name": "applicationNftId",
342
+ "type": "uint96"
343
+ }
344
+ ],
345
+ "name": "ErrorPolicyServicePolicyStateNotApplied",
346
+ "type": "error"
347
+ },
348
+ {
349
+ "inputs": [
350
+ {
351
+ "internalType": "NftId",
352
+ "name": "applicationNftId",
353
+ "type": "uint96"
354
+ }
355
+ ],
356
+ "name": "ErrorPolicyServicePolicyStateNotCollateralized",
357
+ "type": "error"
358
+ },
359
+ {
360
+ "inputs": [
361
+ {
362
+ "internalType": "NftId",
363
+ "name": "policyNftId",
364
+ "type": "uint96"
365
+ }
366
+ ],
367
+ "name": "ErrorPolicyServicePremiumAlreadyPaid",
368
+ "type": "error"
369
+ },
370
+ {
371
+ "inputs": [
372
+ {
373
+ "internalType": "NftId",
374
+ "name": "policyNftId",
375
+ "type": "uint96"
376
+ },
377
+ {
378
+ "internalType": "Amount",
379
+ "name": "expectedPremiumAmount",
380
+ "type": "uint96"
381
+ },
382
+ {
383
+ "internalType": "Amount",
384
+ "name": "recalculatedPremiumAmount",
385
+ "type": "uint96"
386
+ }
387
+ ],
388
+ "name": "ErrorPolicyServicePremiumMismatch",
389
+ "type": "error"
390
+ },
391
+ {
392
+ "inputs": [
393
+ {
394
+ "internalType": "NftId",
395
+ "name": "policyNftId",
396
+ "type": "uint96"
397
+ },
398
+ {
399
+ "internalType": "Amount",
400
+ "name": "premiumAmount",
401
+ "type": "uint96"
402
+ }
403
+ ],
404
+ "name": "ErrorPolicyServicePremiumNotPaid",
405
+ "type": "error"
406
+ },
407
+ {
408
+ "inputs": [
409
+ {
410
+ "internalType": "NftId",
411
+ "name": "policyNftId",
412
+ "type": "uint96"
413
+ },
414
+ {
415
+ "internalType": "Amount",
416
+ "name": "expectedPremiumAmount",
417
+ "type": "uint96"
418
+ },
419
+ {
420
+ "internalType": "Amount",
421
+ "name": "transferredPremiumAmount",
422
+ "type": "uint96"
423
+ }
424
+ ],
425
+ "name": "ErrorPolicyServiceTransferredPremiumMismatch",
426
+ "type": "error"
427
+ },
428
+ {
429
+ "inputs": [],
430
+ "name": "ErrorServiceNotImplemented",
431
+ "type": "error"
432
+ },
433
+ {
434
+ "inputs": [],
435
+ "name": "InvalidInitialization",
436
+ "type": "error"
437
+ },
438
+ {
439
+ "inputs": [],
440
+ "name": "NotInitializing",
441
+ "type": "error"
442
+ },
443
+ {
444
+ "inputs": [],
445
+ "name": "ReentrancyGuardReentrantCall",
446
+ "type": "error"
447
+ },
448
+ {
449
+ "anonymous": false,
450
+ "inputs": [
451
+ {
452
+ "indexed": false,
453
+ "internalType": "address",
454
+ "name": "authority",
455
+ "type": "address"
456
+ }
457
+ ],
458
+ "name": "AuthorityUpdated",
459
+ "type": "event"
460
+ },
461
+ {
462
+ "anonymous": false,
463
+ "inputs": [
464
+ {
465
+ "indexed": false,
466
+ "internalType": "uint64",
467
+ "name": "version",
468
+ "type": "uint64"
469
+ }
470
+ ],
471
+ "name": "Initialized",
472
+ "type": "event"
473
+ },
474
+ {
475
+ "anonymous": false,
476
+ "inputs": [
477
+ {
478
+ "indexed": false,
479
+ "internalType": "NftId",
480
+ "name": "policyNftId",
481
+ "type": "uint96"
482
+ },
483
+ {
484
+ "indexed": false,
485
+ "internalType": "Timestamp",
486
+ "name": "activatedAt",
487
+ "type": "uint40"
488
+ }
489
+ ],
490
+ "name": "LogPolicyServicePolicyActivated",
491
+ "type": "event"
492
+ },
493
+ {
494
+ "anonymous": false,
495
+ "inputs": [
496
+ {
497
+ "indexed": false,
498
+ "internalType": "NftId",
499
+ "name": "policyNftId",
500
+ "type": "uint96"
501
+ }
502
+ ],
503
+ "name": "LogPolicyServicePolicyClosed",
504
+ "type": "event"
505
+ },
506
+ {
507
+ "anonymous": false,
508
+ "inputs": [
509
+ {
510
+ "indexed": false,
511
+ "internalType": "NftId",
512
+ "name": "policyNftId",
513
+ "type": "uint96"
514
+ },
515
+ {
516
+ "indexed": false,
517
+ "internalType": "Amount",
518
+ "name": "premiumAmount",
519
+ "type": "uint96"
520
+ },
521
+ {
522
+ "indexed": false,
523
+ "internalType": "Timestamp",
524
+ "name": "activatedAt",
525
+ "type": "uint40"
526
+ }
527
+ ],
528
+ "name": "LogPolicyServicePolicyCreated",
529
+ "type": "event"
530
+ },
531
+ {
532
+ "anonymous": false,
533
+ "inputs": [
534
+ {
535
+ "indexed": false,
536
+ "internalType": "NftId",
537
+ "name": "policyNftId",
538
+ "type": "uint96"
539
+ }
540
+ ],
541
+ "name": "LogPolicyServicePolicyDeclined",
542
+ "type": "event"
543
+ },
544
+ {
545
+ "anonymous": false,
546
+ "inputs": [
547
+ {
548
+ "indexed": false,
549
+ "internalType": "NftId",
550
+ "name": "policyNftId",
551
+ "type": "uint96"
552
+ },
553
+ {
554
+ "indexed": false,
555
+ "internalType": "Timestamp",
556
+ "name": "originalExpiredAt",
557
+ "type": "uint40"
558
+ },
559
+ {
560
+ "indexed": false,
561
+ "internalType": "Timestamp",
562
+ "name": "expiredAt",
563
+ "type": "uint40"
564
+ }
565
+ ],
566
+ "name": "LogPolicyServicePolicyExpirationUpdated",
567
+ "type": "event"
568
+ },
569
+ {
570
+ "anonymous": false,
571
+ "inputs": [
572
+ {
573
+ "indexed": false,
574
+ "internalType": "NftId",
575
+ "name": "policyNftId",
576
+ "type": "uint96"
577
+ },
578
+ {
579
+ "indexed": false,
580
+ "internalType": "Amount",
581
+ "name": "premiumAmount",
582
+ "type": "uint96"
583
+ }
584
+ ],
585
+ "name": "LogPolicyServicePolicyPremiumCollected",
586
+ "type": "event"
587
+ },
588
+ {
589
+ "inputs": [],
590
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
591
+ "outputs": [
592
+ {
593
+ "internalType": "bytes32",
594
+ "name": "",
595
+ "type": "bytes32"
596
+ }
597
+ ],
598
+ "stateMutability": "view",
599
+ "type": "function"
600
+ },
601
+ {
602
+ "inputs": [],
603
+ "name": "REGISTERABLE_LOCATION_V1",
604
+ "outputs": [
605
+ {
606
+ "internalType": "bytes32",
607
+ "name": "",
608
+ "type": "bytes32"
609
+ }
610
+ ],
611
+ "stateMutability": "view",
612
+ "type": "function"
613
+ },
614
+ {
615
+ "inputs": [
616
+ {
617
+ "internalType": "NftId",
618
+ "name": "policyNftId",
619
+ "type": "uint96"
620
+ },
621
+ {
622
+ "internalType": "Timestamp",
623
+ "name": "activateAt",
624
+ "type": "uint40"
625
+ }
626
+ ],
627
+ "name": "activate",
628
+ "outputs": [],
629
+ "stateMutability": "nonpayable",
630
+ "type": "function"
631
+ },
632
+ {
633
+ "inputs": [],
634
+ "name": "authority",
635
+ "outputs": [
636
+ {
637
+ "internalType": "address",
638
+ "name": "",
639
+ "type": "address"
640
+ }
641
+ ],
642
+ "stateMutability": "view",
643
+ "type": "function"
644
+ },
645
+ {
646
+ "inputs": [
647
+ {
648
+ "internalType": "NftId",
649
+ "name": "policyNftId",
650
+ "type": "uint96"
651
+ }
652
+ ],
653
+ "name": "close",
654
+ "outputs": [],
655
+ "stateMutability": "nonpayable",
656
+ "type": "function"
657
+ },
658
+ {
659
+ "inputs": [
660
+ {
661
+ "internalType": "NftId",
662
+ "name": "policyNftId",
663
+ "type": "uint96"
664
+ },
665
+ {
666
+ "internalType": "Timestamp",
667
+ "name": "activateAt",
668
+ "type": "uint40"
669
+ }
670
+ ],
671
+ "name": "collectPremium",
672
+ "outputs": [],
673
+ "stateMutability": "nonpayable",
674
+ "type": "function"
675
+ },
676
+ {
677
+ "inputs": [
678
+ {
679
+ "internalType": "NftId",
680
+ "name": "applicationNftId",
681
+ "type": "uint96"
682
+ },
683
+ {
684
+ "internalType": "Timestamp",
685
+ "name": "activateAt",
686
+ "type": "uint40"
687
+ }
688
+ ],
689
+ "name": "createPolicy",
690
+ "outputs": [],
691
+ "stateMutability": "nonpayable",
692
+ "type": "function"
693
+ },
694
+ {
695
+ "inputs": [
696
+ {
697
+ "internalType": "NftId",
698
+ "name": "applicationNftId",
699
+ "type": "uint96"
700
+ }
701
+ ],
702
+ "name": "decline",
703
+ "outputs": [],
704
+ "stateMutability": "nonpayable",
705
+ "type": "function"
706
+ },
707
+ {
708
+ "inputs": [
709
+ {
710
+ "internalType": "NftId",
711
+ "name": "policyNftId",
712
+ "type": "uint96"
713
+ },
714
+ {
715
+ "internalType": "Timestamp",
716
+ "name": "expireAt",
717
+ "type": "uint40"
718
+ }
719
+ ],
720
+ "name": "expire",
721
+ "outputs": [
722
+ {
723
+ "internalType": "Timestamp",
724
+ "name": "expiredAt",
725
+ "type": "uint40"
726
+ }
727
+ ],
728
+ "stateMutability": "nonpayable",
729
+ "type": "function"
730
+ },
731
+ {
732
+ "inputs": [],
733
+ "name": "getDomain",
734
+ "outputs": [
735
+ {
736
+ "internalType": "ObjectType",
737
+ "name": "serviceDomain",
738
+ "type": "uint8"
739
+ }
740
+ ],
741
+ "stateMutability": "pure",
742
+ "type": "function"
743
+ },
744
+ {
745
+ "inputs": [],
746
+ "name": "getInitialInfo",
747
+ "outputs": [
748
+ {
749
+ "components": [
750
+ {
751
+ "internalType": "NftId",
752
+ "name": "nftId",
753
+ "type": "uint96"
754
+ },
755
+ {
756
+ "internalType": "NftId",
757
+ "name": "parentNftId",
758
+ "type": "uint96"
759
+ },
760
+ {
761
+ "internalType": "ObjectType",
762
+ "name": "objectType",
763
+ "type": "uint8"
764
+ },
765
+ {
766
+ "internalType": "bool",
767
+ "name": "isInterceptor",
768
+ "type": "bool"
769
+ },
770
+ {
771
+ "internalType": "address",
772
+ "name": "objectAddress",
773
+ "type": "address"
774
+ },
775
+ {
776
+ "internalType": "address",
777
+ "name": "initialOwner",
778
+ "type": "address"
779
+ },
780
+ {
781
+ "internalType": "bytes",
782
+ "name": "data",
783
+ "type": "bytes"
784
+ }
785
+ ],
786
+ "internalType": "struct IRegistry.ObjectInfo",
787
+ "name": "info",
788
+ "type": "tuple"
789
+ }
790
+ ],
791
+ "stateMutability": "view",
792
+ "type": "function"
793
+ },
794
+ {
795
+ "inputs": [],
796
+ "name": "getNftId",
797
+ "outputs": [
798
+ {
799
+ "internalType": "NftId",
800
+ "name": "",
801
+ "type": "uint96"
802
+ }
803
+ ],
804
+ "stateMutability": "view",
805
+ "type": "function"
806
+ },
807
+ {
808
+ "inputs": [],
809
+ "name": "getOwner",
810
+ "outputs": [
811
+ {
812
+ "internalType": "address",
813
+ "name": "",
814
+ "type": "address"
815
+ }
816
+ ],
817
+ "stateMutability": "view",
818
+ "type": "function"
819
+ },
820
+ {
821
+ "inputs": [],
822
+ "name": "getRegistry",
823
+ "outputs": [
824
+ {
825
+ "internalType": "contract IRegistry",
826
+ "name": "",
827
+ "type": "address"
828
+ }
829
+ ],
830
+ "stateMutability": "view",
831
+ "type": "function"
832
+ },
833
+ {
834
+ "inputs": [],
835
+ "name": "getRoleId",
836
+ "outputs": [
837
+ {
838
+ "internalType": "RoleId",
839
+ "name": "serviceRoleId",
840
+ "type": "uint64"
841
+ }
842
+ ],
843
+ "stateMutability": "pure",
844
+ "type": "function"
845
+ },
846
+ {
847
+ "inputs": [],
848
+ "name": "getVersion",
849
+ "outputs": [
850
+ {
851
+ "internalType": "Version",
852
+ "name": "",
853
+ "type": "uint24"
854
+ }
855
+ ],
856
+ "stateMutability": "pure",
857
+ "type": "function"
858
+ },
859
+ {
860
+ "inputs": [
861
+ {
862
+ "internalType": "address",
863
+ "name": "activatedBy",
864
+ "type": "address"
865
+ },
866
+ {
867
+ "internalType": "bytes",
868
+ "name": "data",
869
+ "type": "bytes"
870
+ }
871
+ ],
872
+ "name": "initializeVersionable",
873
+ "outputs": [],
874
+ "stateMutability": "nonpayable",
875
+ "type": "function"
876
+ },
877
+ {
878
+ "inputs": [],
879
+ "name": "isConsumingScheduledOp",
880
+ "outputs": [
881
+ {
882
+ "internalType": "bytes4",
883
+ "name": "",
884
+ "type": "bytes4"
885
+ }
886
+ ],
887
+ "stateMutability": "view",
888
+ "type": "function"
889
+ },
890
+ {
891
+ "inputs": [],
892
+ "name": "linkToRegisteredNftId",
893
+ "outputs": [
894
+ {
895
+ "internalType": "NftId",
896
+ "name": "nftId",
897
+ "type": "uint96"
898
+ }
899
+ ],
900
+ "stateMutability": "nonpayable",
901
+ "type": "function"
902
+ },
903
+ {
904
+ "inputs": [
905
+ {
906
+ "internalType": "address",
907
+ "name": "newAuthority",
908
+ "type": "address"
909
+ }
910
+ ],
911
+ "name": "setAuthority",
912
+ "outputs": [],
913
+ "stateMutability": "nonpayable",
914
+ "type": "function"
915
+ },
916
+ {
917
+ "inputs": [
918
+ {
919
+ "internalType": "bytes4",
920
+ "name": "interfaceId",
921
+ "type": "bytes4"
922
+ }
923
+ ],
924
+ "name": "supportsInterface",
925
+ "outputs": [
926
+ {
927
+ "internalType": "bool",
928
+ "name": "",
929
+ "type": "bool"
930
+ }
931
+ ],
932
+ "stateMutability": "view",
933
+ "type": "function"
934
+ },
935
+ {
936
+ "inputs": [
937
+ {
938
+ "internalType": "bytes",
939
+ "name": "data",
940
+ "type": "bytes"
941
+ }
942
+ ],
943
+ "name": "upgradeVersionable",
944
+ "outputs": [],
945
+ "stateMutability": "nonpayable",
946
+ "type": "function"
947
+ }
948
+ ],
949
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615be8806100d65f395ff3fe608060405234801561000f575f80fd5b506004361061013d575f3560e01c80636c741e78116100b45780639ffcede9116100795780639ffcede91461031d578063aa5ae5aa14610330578063ada9652e14610343578063b68d180914610357578063bbfbbfba14610366578063bf7e214f14610379575f80fd5b80636c741e78146102985780637a9e5e4b146102b85780637baa9a0b146102cb578063893d20e8146102f45780638fb36037146102fc575f80fd5b80631eff4b22116101055780631eff4b22146101e8578063329d6e741461021d57806349bb9e4b146102305780634d5e16a9146102435780635ab1bd5314610256578063644c45e01461027b575f80fd5b806301ffc9a7146101415780630aaba8e8146101825780630d8e6e2c146101975780630fec111c146101b3578063138461e0146101c8575b5f80fd5b61016d61014f3660046149f2565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610195610190366004614a2d565b610396565b005b61019f6109b9565b60405162ffffff9091168152602001610179565b6101bb610a40565b6040516101799190614a76565b6101d0610bcc565b6040516001600160601b039091168152602001610179565b61020f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610179565b61019561022b366004614c79565b610bd6565b61019561023e366004614cbe565b610d20565b610195610251366004614d1c565b610e1c565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610179565b5f80516020615b33833981519152546001600160601b03166101d0565b6102a0611046565b6040516001600160401b039091168152602001610179565b6101956102c6366004614d53565b61113c565b6102de6102d9366004614d1c565b6111d4565b60405164ffffffffff9091168152602001610179565b61026361177f565b6103046118b0565b6040516001600160e01b03199091168152602001610179565b61019561032b366004614a2d565b6118e5565b61019561033e366004614d1c565b611bd3565b61020f5f80516020615b3383398151915281565b60405160158152602001610179565b610195610374366004614d1c565b6122c0565b5f80516020615b53833981519152546001600160a01b0316610263565b61039e6127ed565b5f6103a9600c612824565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061040e9190614d6e565b60405163bd7d9d8560e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa15801561045d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526104849190810190614e1b565b604051639096a1f360e01b81526001600160601b03861660048201529091505f906001600160a01b03841690639096a1f390602401602060405180830381865afa1580156104d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104f89190614fc7565b905061050481836128c0565b61053a5760405163536eb56160e11b81526001600160601b038616600482015260ff821660248201526044015b60405180910390fd5b6101e0820151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015610595573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b99190614ff1565b156105e25760405163bdcc947d60e01b81526001600160601b0386166004820152602401610531565b61014082015161ffff161561062657610140820151604051637459ec8b60e11b81526001600160601b038716600482015261ffff9091166024820152604401610531565b6040516309c5844f60e01b81526001600160601b03861660048201526001600160a01b038416906309c5844f90602401602060405180830381865afa158015610671573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106959190614fc7565b60408051632c2f8a6760e01b815260ff909216600483015260dc60248301525173__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__91632c2f8a679160448083019260209291908290030181865af41580156106f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107179190614ff1565b61074d5760a0820151604051635567446960e11b81526001600160601b0380881660048301529091166024820152604401610531565b600754825160405163f0ea17c360e01b81526001600160601b0390911660048201526001600160a01b03918216916332f9f3df91879187169063f0ea17c3906024015f60405180830381865afa1580156107a9573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107d09190810190615015565b6040015188866040518563ffffffff1660e01b81526004016107f59493929190615298565b5f604051808303815f87803b15801561080c575f80fd5b505af115801561081e573d5f803e3d5ffd5b5050505073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610869573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061088d91906152dc565b64ffffffffff166101e083015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa1580156108dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109019190614d6e565b6001600160a01b031663425d08e2868460c86040518463ffffffff1660e01b8152600401610931939291906152f7565b5f604051808303815f87803b158015610948575f80fd5b505af115801561095a573d5f803e3d5ffd5b50506040516001600160601b03881681527f549ae8b6fdcdbc1ee634d00b432905175415ba23ee737dac1d99b6ef540afc71925060200190505b60405180910390a1505050506109b660015f80516020615b7383398151915255565b50565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610a17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3b919061532b565b905090565b610a486149b5565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610abe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae2919061534d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610b2a61177f565b6001600160a01b03168152602001826001018054610b4790615368565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7390615368565b8015610bbe5780601f10610b9557610100808354040283529160200191610bbe565b820191905f5260205f20905b815481529060010190602001808311610ba157829003601f168201915b505050505081525091505090565b5f610a3b30612983565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610bf86109b9565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610c36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5a91906153ae565b5f80516020615b938339815191528054600160401b900460ff1680610c8c575080546001600160401b03808416911610155b15610caa5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610cd483612b7c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80516020615b938339815191528054600160401b810460ff1615906001600160401b03165f81158015610d515750825b90505f826001600160401b03166001148015610d6c5750303b155b905081158015610d7a575080155b15610d985760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dc257845460ff60401b1916600160401b1785555b610dcc8787612b84565b8315610e1357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610e246127ed565b5f610e2f600c612824565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e949190614d6e565b60405163bd7d9d8560e01b81526001600160601b03861660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015610ee3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f0a9190810190614e1b565b9050610f1785828661315c565b9050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f55573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f799190614d6e565b6001600160a01b031663425d08e2868360ff6040518463ffffffff1660e01b8152600401610fa9939291906152f7565b5f604051808303815f87803b158015610fc0575f80fd5b505af1158015610fd2573d5f803e3d5ffd5b5050604080516001600160601b038916815264ffffffffff881660208201527f0fb266de81849f168e7cbd8db91f5efc1e79dd85e672e18e6fdb84e86c42cc6c935001905060405180910390a16110298585613364565b50505061104260015f80516020615b7383398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36015604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156110b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d59190614fc7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611118573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3b91906153ae565b3361115b5f80516020615b53833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146111965760405162d1953b60e31b81526001600160a01b0382166004820152602401610531565b816001600160a01b03163b5f036111cb576040516361798f2f60e11b81526001600160a01b0383166004820152602401610531565b6110428261346c565b5f6111dd6127ed565b5f806111e9600c612824565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f9190614d6e565b60405163bd7d9d8560e01b81526001600160601b03881660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa15801561129e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112c59190810190614e1b565b90506112d4815f0151856134cc565b15611310578051604051631a06208360e01b81526001600160601b03808a16600483015291821660248201529085166044820152606401610531565b604051639096a1f360e01b81526001600160601b03881660048201525f906001600160a01b03841690639096a1f390602401602060405180830381865afa15801561135d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113819190614fc7565b905061138d81836128c0565b6113be5760405163536eb56160e11b81526001600160601b038916600482015260ff82166024820152604401610531565b60405163790a38ad60e01b815264ffffffffff8816600482015287965073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015611415573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114399190614ff1565b156114ac5773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611485573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a991906152dc565b95505b6101c082015164ffffffffff90811690871610611503576101c08201516040516372f7b9bd60e11b81526001600160601b038a16600482015264ffffffffff91821660248201529088166044820152606401610531565b6115818673__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561154e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061157291906152dc565b64ffffffffff90811691161090565b1561162c578773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156115ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115f291906152dc565b604051631c66624d60e01b81526001600160601b03909216600483015264ffffffffff908116602483015288166044820152606401610531565b6101c08201805164ffffffffff881690915260408051631a99b41b60e31b815290516001600160a01b0387169163d4cda0d89160048083019260209291908290030181865afa158015611681573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a59190614d6e565b6001600160a01b031663425d08e28a8560ff6040518463ffffffff1660e01b81526004016116d5939291906152f7565b5f604051808303815f87803b1580156116ec575f80fd5b505af11580156116fe573d5f803e3d5ffd5b5050604080516001600160601b038d16815264ffffffffff85811660208301528b168183015290517f4f967a98dc5f06461aaa876310c99e192cdb277cb377899950e0a00b04f6629c9350908190036060019150a161175d8988613550565b50505050505061177960015f80516020615b7383398151915255565b92915050565b5f805f80516020615b3383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156117eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061180f9190614ff1565b1561189a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611870573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118949190614d6e565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615b5383398151915280545f9190600160a01b900460ff166118d7575f611894565b638fb3603760e01b91505090565b6118ed6127ed565b5f806118f9600c612824565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561193b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061195f9190614d6e565b604051639096a1f360e01b81526001600160601b03861660048201529091506119e5906001600160a01b03831690639096a1f3906024015b602060405180830381865afa1580156119b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d69190614fc7565b600a5b60ff9081169116141590565b15611a0e57604051631130ddad60e21b81526001600160601b0385166004820152602401610531565b60405163bd7d9d8560e01b81526001600160601b03851660048201525f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015611a5a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a819190810190614e1b565b9050611a90815f0151856134cc565b15611acc578051604051631a06208360e01b81526001600160601b03808816600483015291821660248201529085166044820152606401610531565b826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2c9190614d6e565b6001600160a01b0316635d4345cc86601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015611b83575f80fd5b505af1158015611b95573d5f803e3d5ffd5b50506040516001600160601b03881681527fa9d1c49a019bf7dc62cfada9540cd302c4fc54f6ed05d99b581074ed70441fae92506020019050610994565b611bdb6127ed565b5f80611be7600c612824565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c29573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c4d9190614d6e565b604051639096a1f360e01b81526001600160601b0387166004820152909150611c89906001600160a01b03831690639096a1f390602401611997565b15611cb257604051631130ddad60e21b81526001600160601b0386166004820152602401610531565b60405163bd7d9d8560e01b81526001600160601b03861660048201525f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015611cfe573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d259190810190614e1b565b9050611d34815f0151856134cc565b15611d70578051604051631a06208360e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610531565b60075460405163f0ea17c360e01b81526001600160601b03861660048201526001600160a01b03918216916384d1f7cf91869186169063f0ea17c3906024015f60405180830381865afa158015611dc9573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611df09190810190615015565b6040908101516020860151608087015192516001600160e01b031960e087901b1681526001600160a01b0394851660048201529390911660248401526001600160601b03808a166044850152808c16606485015290811660848401521660a482015260c40160408051808303815f875af1158015611e70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9491906153c9565b5050611eb085611ea15f90565b64ffffffffff90811691161190565b15611ec357611ec086828761315c565b90505b826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f239190614d6e565b6001600160a01b031663425d08e2878360286040518463ffffffff1660e01b8152600401611f53939291906152f7565b5f604051808303815f87803b158015611f6a575f80fd5b505af1158015611f7c573d5f803e3d5ffd5b50506008546060840151608085015160c086015160e087015160208801516040808a01519051637a5ff29d60e11b81525f99506001600160a01b03909716975063f4bfe53a96611fda968e96909590949093909290916004016153f6565b61024060405180830381865afa158015611ff6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201a9190615473565b9050836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612058573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061207c9190614d6e565b6001600160a01b0316634d4a7ae988836040518363ffffffff1660e01b81526004016120a99291906157c0565b5f604051808303815f87803b1580156120c0575f80fd5b505af11580156120d2573d5f803e3d5ffd5b50506040516302d764c760e21b81526001600160601b03881660048201525f92506001600160a01b0386169150630b5d931c9060240161020060405180830381865afa158015612124573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612148919061582a565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156121a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121c89190614ff1565b612245576006548151604085810151905163038f0f2560e11b81526001600160601b0390921660048301526001600160c01b03191660248201526001600160a01b039091169063071e1e4a906044015f604051808303815f87803b15801561222e575f80fd5b505af1158015612240573d5f803e3d5ffd5b505050505b5060a0810151604080516001600160601b038a81168252909216602083015264ffffffffff881682820152517f2e8d9b075b0da8e4e0de386a81c149b1f6fb08eb063859bb0802de4d3261249b9181900360600190a16122a58787613364565b505050505061104260015f80516020615b7383398151915255565b6122c86127ed565b5f6122d3600c612824565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612314573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123389190614d6e565b604051639096a1f360e01b81526001600160601b03861660048201529091505f906001600160a01b03831690639096a1f390602401602060405180830381865afa158015612388573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123ac9190614fc7565b90506123c08160285b60ff90811691161490565b6123e85760405163904913a960e01b81526001600160601b0386166004820152602401610531565b6040516309c5844f60e01b81526001600160601b0386166004820152612462906001600160a01b038416906309c5844f90602401602060405180830381865afa158015612437573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061245b9190614fc7565b60dc6123b5565b1561248b57604051635b7a826360e01b81526001600160601b0386166004820152602401610531565b60405163bd7d9d8560e01b81526001600160601b03861660048201525f906001600160a01b0384169063bd7d9d85906024015f60405180830381865afa1580156124d7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526124fe9190810190614e1b565b60405163e444c3df60e01b81526001600160601b03881660048201529091505f906001600160a01b0385169063e444c3df9060240161024060405180830381865afa15801561254f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125739190615473565b90506125818588848461362e565b604051638d38cd4b60e01b815264ffffffffff8716600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af41580156125d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125f99190614ff1565b1561260c5761260987838861315c565b91505b846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612648573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061266c9190614d6e565b6001600160a01b031663425d08e2888460ff6040518463ffffffff1660e01b815260040161269c939291906152f7565b5f604051808303815f87803b1580156126b3575f80fd5b505af11580156126c5573d5f803e3d5ffd5b50505050846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612705573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127299190614d6e565b6001600160a01b0316632ae5819d8860dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612780575f80fd5b505af1158015612792573d5f803e3d5ffd5b50505060a0820151604080516001600160601b03808c16825290921660208301527ea0c8fe3b5b724e2059f6961117d71cb0d74006490b63aa1e51f89d050e1b3b92500160405180910390a16122a58488845f015184613819565b5f80516020615b7383398151915280546001190161281e57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f61282d6149b5565b5f6128406001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612884573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128a8919061534d565b92506128b683856001613967565b9395909450915050565b5f6128cc8360286119d9565b156128d857505f611779565b61295b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612922573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061294691906152dc565b836101a0015164ffffffffff90811691161090565b1561296757505f611779565b50600192915050565b60015f80516020615b7383398151915255565b5f805f80516020615b3383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156129ef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a139190614ff1565b15612a3f5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610531565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612a91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab59190614ff1565b612add5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610531565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612b2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b53919061534d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b61013d613bfe565b5f80516020615b938339815191528054600160401b810460ff1615906001600160401b03165f81158015612bb55750825b90505f826001600160401b03166001148015612bd05750303b155b905081158015612bde575080155b15612bfc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612c2657845460ff60401b1916600160401b1785555b5f8087806020019051810190612c3c91906158eb565b91509150612c4b82828b613c36565b5f612c546109b9565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015612ca7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ccb9190614fc7565b9050612cdf6001546001600160a01b031690565b6001600160a01b031663d39e604360146040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612d33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d579190614d6e565b600280546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043601f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612dcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612def9190614d6e565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600b6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612e63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e879190614d6e565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e604360176040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612efb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f1f9190614d6e565b600580546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612f93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fb79190614d6e565b600780546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561302b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061304f9190614d6e565b600680546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043601a6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156130c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130e79190614d6e565b600880546001600160a01b0319166001600160a01b039290921691909117905561311763b20293b360e01b613d72565b5050508315610e1357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610e0a565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820181905261010082015261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e08101919091526101a083015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015613236573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061325a9190614ff1565b15801561327657506101a083015164ffffffffff808416911614155b1561329f5760405163f95747d360e01b81526001600160601b0385166004820152602401610531565b6101a083015164ffffffffff8381169116036132bc57508161335d565b64ffffffffff8281166101a0850181905260c08501516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015613329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061334d91906152dc565b64ffffffffff166101c084015250815b9392505050565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156133b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133dc9190614ff1565b156133e5575050565b5f6133ef83613d9e565b90506001600160a01b0381161561346757604051630be6b84560e21b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b03821690632f9ae114906044015b5f604051808303815f87803b158015613455575f80fd5b505af1158015610e13573d5f803e3d5ffd5b505050565b5f80516020615b5383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af415801561352c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061335d9190614ff1565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156135a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135c89190614ff1565b156135d1575050565b5f6135db83613d9e565b90506001600160a01b03811615613467576040516362782d9f60e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b038216906362782d9f9060440161343e565b5f825f015190505f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613672573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136969190614d6e565b90505f6136a38284613eb1565b90505f6136b86001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03891660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613705573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137299190614d6e565b905061379a826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561376a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061378e9190614d6e565b83838860a00151613f2f565b505061381181876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138009190614d6e565b84876020015188604001518861410b565b505050505050565b5f6138248584613eb1565b90505f6138396001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613886573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138aa9190614d6e565b90505f805f6138b98988614305565b895160208b01516040808d015190516321711b5760e21b81526001600160a01b038c8116600483015280861660248301526001600160601b0394851660448301528088166064830152928416608482015282861660a4820152921660c4830152939750919550935090871691506385c46d5c9060e4015f604051808303815f87803b158015613946575f80fd5b505af1158015613958573d5f803e3d5ffd5b50505050505050505050505050565b61396f6149b5565b5f806139836001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa1580156139d0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139f79190810190615918565b9250613a0485600b6119d9565b15613a5a57604083015160ff868116911614613a5557604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610531565b613aeb565b613a6a83604001516123b5600c90565b80613a805750613a8083604001516123b5600f90565b80613a965750613a9683604001516123b5600e90565b80613aac5750613aac83604001516123b5600d90565b613aeb57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610531565b613af883602001516144fe565b91508315613bf557816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b609190614d6e565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613ba8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bcc9190614ff1565b15613bf557604051637d71120960e11b81526001600160601b0387166004820152602401610531565b50935093915050565b5f80516020615b9383398151915254600160401b900460ff16613c3457604051631afcd79f60e31b815260040160405180910390fd5b565b613c3e613bfe565b613c4661458e565b6001600160a01b03821615613c6357613c5e8261459e565b613cda565b5f613c6e60026145af565b9050613cd8816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613caf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cd39190614d6e565b61459e565b505b613d5683846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d1a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d3e919061534d565b60085f8560405180602001604052805f8152506146b0565b613d66634a531f3360e01b613d72565b61346763daf9067160e01b5b613d7a613bfe565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f80613db26001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03851660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613dff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e239190614d6e565b604051635b5dd68960e11b81526001600160a01b038216600482015290925082915073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063b6bbad1290602401602060405180830381865af4158015613e7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ea39190614ff1565b613eab575f91505b50919050565b60405163f0ea17c360e01b81526001600160601b03821660048201525f906001600160a01b0384169063f0ea17c3906024015f60405180830381865afa158015613efd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f249190810190615015565b606001519392505050565b60405163046e44af60e11b81526001600160601b03821660048201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015613f87573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fab91906159e8565b6040516370a0823160e01b81526001600160a01b0385811660048301529192505f918716906370a0823190602401602060405180830381865afa158015613ff4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061401891906159e8565b604051636eb1769f60e11b81526001600160a01b03868116600483015287811660248301529192505f9188169063dd62ed3e90604401602060405180830381865afa158015614069573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061408d91906159e8565b9050828210156140c95760405163503edf3960e11b81526001600160a01b03861660048201526024810184905260448101839052606401610531565b82811015610e1357604051630afa3e2d60e11b81526001600160a01b038087166004830152871660248201526044810184905260648101829052608401610531565b5f6141168786614305565b505050905060035f9054906101000a90046001600160a01b03166001600160a01b03166367438c5087876141538661014001518760c00151614755565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160601b0391821660248401521660448201526064015f604051808303815f87803b1580156141a7575f80fd5b505af11580156141b9573d5f803e3d5ffd5b5050604051630a4d29dd60e31b81526001600160601b038416600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__92506352694ee89150602401602060405180830381865af4158015614213573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142379190614ff1565b61429d57600654604051633ca8687160e11b81526001600160a01b0390911690637950d0e29061426f908490879087906004016159ff565b5f604051808303815f87803b158015614286575f80fd5b505af1158015614298573d5f803e3d5ffd5b505050505b60075460405163fb3bcd1f60e01b81526001600160a01b039091169063fb3bcd1f906142cf90879086906004016157c0565b5f604051808303815f87803b1580156142e6575f80fd5b505af11580156142f8573d5f803e3d5ffd5b5050505050505050505050565b6040516302d764c760e21b81526001600160601b03821660048201525f9081908190819081906001600160a01b03881690630b5d931c9060240161020060405180830381865afa15801561435b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061437f919061582a565b805160405163f0ea17c360e01b81526001600160601b03821660048201529096509091506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa1580156143d1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526143f89190810190615015565b60800151602082015160405163f0ea17c360e01b81526001600160601b0390911660048201529094506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa15801561444f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144769190810190615015565b6080015160405163f0ea17c360e01b81526001600160601b03881660048201529093506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa1580156144c7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144ee9190810190615015565b6080015191505092959194509250565b5f6145116001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561455d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526145849190810190615918565b6080015192915050565b614596613bfe565b613c346147d9565b6145a6613bfe565b6109b6816147e1565b5f6145c26001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015614625573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146499190614fc7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561468c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117799190614d6e565b6146b8613bfe565b6146c282876147f2565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161474b8382615a78565b5050505050505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af41580156147b5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061335d919061534d565b612970613bfe565b6147e9613bfe565b6109b68161346c565b6147fa613bfe565b61480381614868565b61480b614970565b6001600160a01b0382166148325760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020615b3383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b614870613bfe565b806001600160a01b03163b5f036148a55760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610531565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa92505050801561491f575060408051601f3d908101601f1916820190925261491c91810190614ff1565b60015b6149475760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610531565b806110425760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610531565b614978613bfe565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f60208284031215614a02575f80fd5b81356001600160e01b03198116811461335d575f80fd5b6001600160601b03811681146109b6575f80fd5b5f60208284031215614a3d575f80fd5b813561335d81614a19565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614abe608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614b02610100840182614a48565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b60405161020081016001600160401b0381118282101715614b4157614b41614b0a565b60405290565b60405160c081016001600160401b0381118282101715614b4157614b41614b0a565b60405161024081016001600160401b0381118282101715614b4157614b41614b0a565b60405161012081016001600160401b0381118282101715614b4157614b41614b0a565b60405160e081016001600160401b0381118282101715614b4157614b41614b0a565b604051601f8201601f191681016001600160401b0381118282101715614bf957614bf9614b0a565b604052919050565b5f6001600160401b03821115614c1957614c19614b0a565b50601f01601f191660200190565b5f82601f830112614c36575f80fd5b8135614c49614c4482614c01565b614bd1565b818152846020838601011115614c5d575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614c89575f80fd5b81356001600160401b03811115614c9e575f80fd5b614b0284828501614c27565b6001600160a01b03811681146109b6575f80fd5b5f8060408385031215614ccf575f80fd5b8235614cda81614caa565b915060208301356001600160401b03811115614cf4575f80fd5b614d0085828601614c27565b9150509250929050565b64ffffffffff811681146109b6575f80fd5b5f8060408385031215614d2d575f80fd5b8235614d3881614a19565b91506020830135614d4881614d0a565b809150509250929050565b5f60208284031215614d63575f80fd5b813561335d81614caa565b5f60208284031215614d7e575f80fd5b815161335d81614caa565b8051614d9481614a19565b919050565b80516001600160c01b031981168114614d94575f80fd5b8051614d9481614d0a565b5f82601f830112614dca575f80fd5b8151602083015f614ddd614c4484614c01565b9050828152858383011115614df0575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161ffff81168114614d94575f80fd5b5f60208284031215614e2b575f80fd5b81516001600160401b03811115614e40575f80fd5b82016102008185031215614e52575f80fd5b614e5a614b1e565b614e6382614d89565b8152614e7160208301614d89565b6020820152614e8260408301614d99565b6040820152614e9360608301614d99565b6060820152614ea460808301614d89565b6080820152614eb560a08301614d89565b60a0820152614ec660c08301614db0565b60c082015260e08201516001600160401b03811115614ee3575f80fd5b614eef86828501614dbb565b60e0830152506101008201516001600160401b03811115614f0e575f80fd5b614f1a86828501614dbb565b61010083015250614f2e6101208301614e0a565b610120820152614f416101408301614e0a565b610140820152614f546101608301614d89565b610160820152614f676101808301614d89565b610180820152614f7a6101a08301614db0565b6101a0820152614f8d6101c08301614db0565b6101c0820152614fa06101e08301614db0565b6101e0820152949350505050565b60ff811681146109b6575f80fd5b8051614d9481614fae565b5f60208284031215614fd7575f80fd5b815161335d81614fae565b80518015158114614d94575f80fd5b5f60208284031215615001575f80fd5b61335d82614fe2565b8051614d9481614caa565b5f60208284031215615025575f80fd5b81516001600160401b0381111561503a575f80fd5b820160c0818503121561504b575f80fd5b615053614b47565b81516001600160401b03811115615068575f80fd5b61507486828501614dbb565b82525061508360208301614d89565b60208201526150946040830161500a565b60408201526150a56060830161500a565b60608201526150b66080830161500a565b608082015260a08201516001600160401b038111156150d3575f80fd5b6150df86828501614dbb565b60a083015250949350505050565b80516001600160601b031682525f602082015161511560208501826001600160601b03169052565b50604082015161513160408501826001600160c01b0319169052565b50606082015161514d60608501826001600160c01b0319169052565b50608082015161516860808501826001600160601b03169052565b5060a082015161518360a08501826001600160601b03169052565b5060c082015161519c60c085018264ffffffffff169052565b5060e082015161020060e08501526151b8610200850182614a48565b90506101008301518482036101008601526151d38282614a48565b9150506101208301516151ed61012086018261ffff169052565b5061014083015161520561014086018261ffff169052565b506101608301516152226101608601826001600160601b03169052565b5061018083015161523f6101808601826001600160601b03169052565b506101a083015161525a6101a086018264ffffffffff169052565b506101c08301516152756101c086018264ffffffffff169052565b506101e08301516152906101e086018264ffffffffff169052565b509392505050565b6001600160a01b038581168252841660208201526001600160601b03831660408201526080606082018190525f906152d2908301846150ed565b9695505050505050565b5f602082840312156152ec575f80fd5b815161335d81614d0a565b6001600160601b0384168152606060208201525f61531860608301856150ed565b905060ff83166040830152949350505050565b5f6020828403121561533b575f80fd5b815162ffffff8116811461335d575f80fd5b5f6020828403121561535d575f80fd5b815161335d81614a19565b600181811c9082168061537c57607f821691505b602082108103613eab57634e487b7160e01b5f52602260045260245ffd5b6001600160401b03811681146109b6575f80fd5b5f602082840312156153be575f80fd5b815161335d8161539a565b5f80604083850312156153da575f80fd5b82516153e581614a19565b6020840151909250614d4881614a19565b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f61544560e0830186614a48565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f610240828403128015615485575f80fd5b5061548e614b69565b61549783614d89565b81526154a560208401614d89565b60208201526154b660408401614d89565b60408201526154c760608401614d89565b60608201526154d860808401614d89565b60808201526154e960a08401614d89565b60a08201526154fa60c08401614d89565b60c082015261550b60e08401614d89565b60e082015261551d6101008401614d89565b6101008201526155306101208401614d89565b6101208201526155436101408401614d89565b6101408201526155566101608401614d89565b6101608201526155696101808401614d89565b61018082015261557c6101a08401614d89565b6101a082015261558f6101c08401614d89565b6101c08201526155a26101e08401614d89565b6101e08201526155b56102008401614d89565b6102008201526155c86102208401614d89565b6102208201529392505050565b80516001600160601b0316825260208101516155fc60208401826001600160601b03169052565b50604081015161561760408401826001600160601b03169052565b50606081015161563260608401826001600160601b03169052565b50608081015161564d60808401826001600160601b03169052565b5060a081015161566860a08401826001600160601b03169052565b5060c081015161568360c08401826001600160601b03169052565b5060e081015161569e60e08401826001600160601b03169052565b506101008101516156bb6101008401826001600160601b03169052565b506101208101516156d86101208401826001600160601b03169052565b506101408101516156f56101408401826001600160601b03169052565b506101608101516157126101608401826001600160601b03169052565b5061018081015161572f6101808401826001600160601b03169052565b506101a081015161574c6101a08401826001600160601b03169052565b506101c08101516157696101c08401826001600160601b03169052565b506101e08101516157866101e08401826001600160601b03169052565b506102008101516157a36102008401826001600160601b03169052565b506102208101516134676102208401826001600160601b03169052565b6001600160601b0383168152610260810161335d60208301846155d5565b5f604082840312156157ee575f80fd5b604080519081016001600160401b038111828210171561581057615810614b0a565b604052825181526020928301519281019290925250919050565b5f61020082840312801561583c575f80fd5b50615845614b8c565b61584e83614d89565b815261585c60208401614d89565b602082015261586e84604085016157de565b604082015261588084608085016157de565b60608201526158928460c085016157de565b60808201526158a58461010085016157de565b60a08201526158b88461014085016157de565b60c08201526158cb8461018085016157de565b60e08201526158de846101c085016157de565b6101008201529392505050565b5f80604083850312156158fc575f80fd5b825161590781614caa565b6020840151909250614d4881614caa565b5f60208284031215615928575f80fd5b81516001600160401b0381111561593d575f80fd5b820160e0818503121561594e575f80fd5b615956614baf565b61595f82614d89565b815261596d60208301614d89565b602082015261597e60408301614fbc565b604082015261598f60608301614fe2565b60608201526159a06080830161500a565b60808201526159b160a0830161500a565b60a082015260c08201516001600160401b038111156159ce575f80fd5b6159da86828501614dbb565b60c083015250949350505050565b5f602082840312156159f8575f80fd5b5051919050565b6001600160601b03841681526001600160c01b0319831660208201526102808101614b0260408301846155d5565b601f82111561346757805f5260205f20601f840160051c81016020851015615a525750805b601f840160051c820191505b81811015615a71575f8155600101615a5e565b5050505050565b81516001600160401b03811115615a9157615a91614b0a565b615aa581615a9f8454615368565b84615a2d565b6020601f821160018114615ad7575f8315615ac05750848201515b5f19600385901b1c1916600184901b178455615a71565b5f84815260208120601f198516915b82811015615b065787850151825560209485019460019092019101615ae6565b5084821015615b2357868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220715f3d7ffd97e65533d46d1d795a419ff04ebb6730f8950ed7bd3c9025b94c9e64736f6c634300081a0033",
950
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061013d575f3560e01c80636c741e78116100b45780639ffcede9116100795780639ffcede91461031d578063aa5ae5aa14610330578063ada9652e14610343578063b68d180914610357578063bbfbbfba14610366578063bf7e214f14610379575f80fd5b80636c741e78146102985780637a9e5e4b146102b85780637baa9a0b146102cb578063893d20e8146102f45780638fb36037146102fc575f80fd5b80631eff4b22116101055780631eff4b22146101e8578063329d6e741461021d57806349bb9e4b146102305780634d5e16a9146102435780635ab1bd5314610256578063644c45e01461027b575f80fd5b806301ffc9a7146101415780630aaba8e8146101825780630d8e6e2c146101975780630fec111c146101b3578063138461e0146101c8575b5f80fd5b61016d61014f3660046149f2565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610195610190366004614a2d565b610396565b005b61019f6109b9565b60405162ffffff9091168152602001610179565b6101bb610a40565b6040516101799190614a76565b6101d0610bcc565b6040516001600160601b039091168152602001610179565b61020f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610179565b61019561022b366004614c79565b610bd6565b61019561023e366004614cbe565b610d20565b610195610251366004614d1c565b610e1c565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610179565b5f80516020615b33833981519152546001600160601b03166101d0565b6102a0611046565b6040516001600160401b039091168152602001610179565b6101956102c6366004614d53565b61113c565b6102de6102d9366004614d1c565b6111d4565b60405164ffffffffff9091168152602001610179565b61026361177f565b6103046118b0565b6040516001600160e01b03199091168152602001610179565b61019561032b366004614a2d565b6118e5565b61019561033e366004614d1c565b611bd3565b61020f5f80516020615b3383398151915281565b60405160158152602001610179565b610195610374366004614d1c565b6122c0565b5f80516020615b53833981519152546001600160a01b0316610263565b61039e6127ed565b5f6103a9600c612824565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061040e9190614d6e565b60405163bd7d9d8560e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa15801561045d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526104849190810190614e1b565b604051639096a1f360e01b81526001600160601b03861660048201529091505f906001600160a01b03841690639096a1f390602401602060405180830381865afa1580156104d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104f89190614fc7565b905061050481836128c0565b61053a5760405163536eb56160e11b81526001600160601b038616600482015260ff821660248201526044015b60405180910390fd5b6101e0820151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015610595573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b99190614ff1565b156105e25760405163bdcc947d60e01b81526001600160601b0386166004820152602401610531565b61014082015161ffff161561062657610140820151604051637459ec8b60e11b81526001600160601b038716600482015261ffff9091166024820152604401610531565b6040516309c5844f60e01b81526001600160601b03861660048201526001600160a01b038416906309c5844f90602401602060405180830381865afa158015610671573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106959190614fc7565b60408051632c2f8a6760e01b815260ff909216600483015260dc60248301525173__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__91632c2f8a679160448083019260209291908290030181865af41580156106f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107179190614ff1565b61074d5760a0820151604051635567446960e11b81526001600160601b0380881660048301529091166024820152604401610531565b600754825160405163f0ea17c360e01b81526001600160601b0390911660048201526001600160a01b03918216916332f9f3df91879187169063f0ea17c3906024015f60405180830381865afa1580156107a9573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107d09190810190615015565b6040015188866040518563ffffffff1660e01b81526004016107f59493929190615298565b5f604051808303815f87803b15801561080c575f80fd5b505af115801561081e573d5f803e3d5ffd5b5050505073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610869573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061088d91906152dc565b64ffffffffff166101e083015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa1580156108dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109019190614d6e565b6001600160a01b031663425d08e2868460c86040518463ffffffff1660e01b8152600401610931939291906152f7565b5f604051808303815f87803b158015610948575f80fd5b505af115801561095a573d5f803e3d5ffd5b50506040516001600160601b03881681527f549ae8b6fdcdbc1ee634d00b432905175415ba23ee737dac1d99b6ef540afc71925060200190505b60405180910390a1505050506109b660015f80516020615b7383398151915255565b50565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610a17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3b919061532b565b905090565b610a486149b5565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610abe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae2919061534d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610b2a61177f565b6001600160a01b03168152602001826001018054610b4790615368565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7390615368565b8015610bbe5780601f10610b9557610100808354040283529160200191610bbe565b820191905f5260205f20905b815481529060010190602001808311610ba157829003601f168201915b505050505081525091505090565b5f610a3b30612983565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610bf86109b9565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610c36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5a91906153ae565b5f80516020615b938339815191528054600160401b900460ff1680610c8c575080546001600160401b03808416911610155b15610caa5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610cd483612b7c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80516020615b938339815191528054600160401b810460ff1615906001600160401b03165f81158015610d515750825b90505f826001600160401b03166001148015610d6c5750303b155b905081158015610d7a575080155b15610d985760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dc257845460ff60401b1916600160401b1785555b610dcc8787612b84565b8315610e1357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610e246127ed565b5f610e2f600c612824565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e949190614d6e565b60405163bd7d9d8560e01b81526001600160601b03861660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015610ee3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f0a9190810190614e1b565b9050610f1785828661315c565b9050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f55573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f799190614d6e565b6001600160a01b031663425d08e2868360ff6040518463ffffffff1660e01b8152600401610fa9939291906152f7565b5f604051808303815f87803b158015610fc0575f80fd5b505af1158015610fd2573d5f803e3d5ffd5b5050604080516001600160601b038916815264ffffffffff881660208201527f0fb266de81849f168e7cbd8db91f5efc1e79dd85e672e18e6fdb84e86c42cc6c935001905060405180910390a16110298585613364565b50505061104260015f80516020615b7383398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36015604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156110b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d59190614fc7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611118573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3b91906153ae565b3361115b5f80516020615b53833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146111965760405162d1953b60e31b81526001600160a01b0382166004820152602401610531565b816001600160a01b03163b5f036111cb576040516361798f2f60e11b81526001600160a01b0383166004820152602401610531565b6110428261346c565b5f6111dd6127ed565b5f806111e9600c612824565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f9190614d6e565b60405163bd7d9d8560e01b81526001600160601b03881660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa15801561129e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112c59190810190614e1b565b90506112d4815f0151856134cc565b15611310578051604051631a06208360e01b81526001600160601b03808a16600483015291821660248201529085166044820152606401610531565b604051639096a1f360e01b81526001600160601b03881660048201525f906001600160a01b03841690639096a1f390602401602060405180830381865afa15801561135d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113819190614fc7565b905061138d81836128c0565b6113be5760405163536eb56160e11b81526001600160601b038916600482015260ff82166024820152604401610531565b60405163790a38ad60e01b815264ffffffffff8816600482015287965073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015611415573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114399190614ff1565b156114ac5773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611485573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a991906152dc565b95505b6101c082015164ffffffffff90811690871610611503576101c08201516040516372f7b9bd60e11b81526001600160601b038a16600482015264ffffffffff91821660248201529088166044820152606401610531565b6115818673__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561154e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061157291906152dc565b64ffffffffff90811691161090565b1561162c578773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156115ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115f291906152dc565b604051631c66624d60e01b81526001600160601b03909216600483015264ffffffffff908116602483015288166044820152606401610531565b6101c08201805164ffffffffff881690915260408051631a99b41b60e31b815290516001600160a01b0387169163d4cda0d89160048083019260209291908290030181865afa158015611681573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a59190614d6e565b6001600160a01b031663425d08e28a8560ff6040518463ffffffff1660e01b81526004016116d5939291906152f7565b5f604051808303815f87803b1580156116ec575f80fd5b505af11580156116fe573d5f803e3d5ffd5b5050604080516001600160601b038d16815264ffffffffff85811660208301528b168183015290517f4f967a98dc5f06461aaa876310c99e192cdb277cb377899950e0a00b04f6629c9350908190036060019150a161175d8988613550565b50505050505061177960015f80516020615b7383398151915255565b92915050565b5f805f80516020615b3383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156117eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061180f9190614ff1565b1561189a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611870573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118949190614d6e565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615b5383398151915280545f9190600160a01b900460ff166118d7575f611894565b638fb3603760e01b91505090565b6118ed6127ed565b5f806118f9600c612824565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561193b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061195f9190614d6e565b604051639096a1f360e01b81526001600160601b03861660048201529091506119e5906001600160a01b03831690639096a1f3906024015b602060405180830381865afa1580156119b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d69190614fc7565b600a5b60ff9081169116141590565b15611a0e57604051631130ddad60e21b81526001600160601b0385166004820152602401610531565b60405163bd7d9d8560e01b81526001600160601b03851660048201525f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015611a5a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a819190810190614e1b565b9050611a90815f0151856134cc565b15611acc578051604051631a06208360e01b81526001600160601b03808816600483015291821660248201529085166044820152606401610531565b826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2c9190614d6e565b6001600160a01b0316635d4345cc86601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015611b83575f80fd5b505af1158015611b95573d5f803e3d5ffd5b50506040516001600160601b03881681527fa9d1c49a019bf7dc62cfada9540cd302c4fc54f6ed05d99b581074ed70441fae92506020019050610994565b611bdb6127ed565b5f80611be7600c612824565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c29573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c4d9190614d6e565b604051639096a1f360e01b81526001600160601b0387166004820152909150611c89906001600160a01b03831690639096a1f390602401611997565b15611cb257604051631130ddad60e21b81526001600160601b0386166004820152602401610531565b60405163bd7d9d8560e01b81526001600160601b03861660048201525f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015611cfe573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d259190810190614e1b565b9050611d34815f0151856134cc565b15611d70578051604051631a06208360e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610531565b60075460405163f0ea17c360e01b81526001600160601b03861660048201526001600160a01b03918216916384d1f7cf91869186169063f0ea17c3906024015f60405180830381865afa158015611dc9573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611df09190810190615015565b6040908101516020860151608087015192516001600160e01b031960e087901b1681526001600160a01b0394851660048201529390911660248401526001600160601b03808a166044850152808c16606485015290811660848401521660a482015260c40160408051808303815f875af1158015611e70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9491906153c9565b5050611eb085611ea15f90565b64ffffffffff90811691161190565b15611ec357611ec086828761315c565b90505b826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f239190614d6e565b6001600160a01b031663425d08e2878360286040518463ffffffff1660e01b8152600401611f53939291906152f7565b5f604051808303815f87803b158015611f6a575f80fd5b505af1158015611f7c573d5f803e3d5ffd5b50506008546060840151608085015160c086015160e087015160208801516040808a01519051637a5ff29d60e11b81525f99506001600160a01b03909716975063f4bfe53a96611fda968e96909590949093909290916004016153f6565b61024060405180830381865afa158015611ff6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201a9190615473565b9050836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612058573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061207c9190614d6e565b6001600160a01b0316634d4a7ae988836040518363ffffffff1660e01b81526004016120a99291906157c0565b5f604051808303815f87803b1580156120c0575f80fd5b505af11580156120d2573d5f803e3d5ffd5b50506040516302d764c760e21b81526001600160601b03881660048201525f92506001600160a01b0386169150630b5d931c9060240161020060405180830381865afa158015612124573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612148919061582a565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156121a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121c89190614ff1565b612245576006548151604085810151905163038f0f2560e11b81526001600160601b0390921660048301526001600160c01b03191660248201526001600160a01b039091169063071e1e4a906044015f604051808303815f87803b15801561222e575f80fd5b505af1158015612240573d5f803e3d5ffd5b505050505b5060a0810151604080516001600160601b038a81168252909216602083015264ffffffffff881682820152517f2e8d9b075b0da8e4e0de386a81c149b1f6fb08eb063859bb0802de4d3261249b9181900360600190a16122a58787613364565b505050505061104260015f80516020615b7383398151915255565b6122c86127ed565b5f6122d3600c612824565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612314573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123389190614d6e565b604051639096a1f360e01b81526001600160601b03861660048201529091505f906001600160a01b03831690639096a1f390602401602060405180830381865afa158015612388573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123ac9190614fc7565b90506123c08160285b60ff90811691161490565b6123e85760405163904913a960e01b81526001600160601b0386166004820152602401610531565b6040516309c5844f60e01b81526001600160601b0386166004820152612462906001600160a01b038416906309c5844f90602401602060405180830381865afa158015612437573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061245b9190614fc7565b60dc6123b5565b1561248b57604051635b7a826360e01b81526001600160601b0386166004820152602401610531565b60405163bd7d9d8560e01b81526001600160601b03861660048201525f906001600160a01b0384169063bd7d9d85906024015f60405180830381865afa1580156124d7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526124fe9190810190614e1b565b60405163e444c3df60e01b81526001600160601b03881660048201529091505f906001600160a01b0385169063e444c3df9060240161024060405180830381865afa15801561254f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125739190615473565b90506125818588848461362e565b604051638d38cd4b60e01b815264ffffffffff8716600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af41580156125d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125f99190614ff1565b1561260c5761260987838861315c565b91505b846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612648573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061266c9190614d6e565b6001600160a01b031663425d08e2888460ff6040518463ffffffff1660e01b815260040161269c939291906152f7565b5f604051808303815f87803b1580156126b3575f80fd5b505af11580156126c5573d5f803e3d5ffd5b50505050846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612705573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127299190614d6e565b6001600160a01b0316632ae5819d8860dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612780575f80fd5b505af1158015612792573d5f803e3d5ffd5b50505060a0820151604080516001600160601b03808c16825290921660208301527ea0c8fe3b5b724e2059f6961117d71cb0d74006490b63aa1e51f89d050e1b3b92500160405180910390a16122a58488845f015184613819565b5f80516020615b7383398151915280546001190161281e57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f61282d6149b5565b5f6128406001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612884573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128a8919061534d565b92506128b683856001613967565b9395909450915050565b5f6128cc8360286119d9565b156128d857505f611779565b61295b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612922573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061294691906152dc565b836101a0015164ffffffffff90811691161090565b1561296757505f611779565b50600192915050565b60015f80516020615b7383398151915255565b5f805f80516020615b3383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156129ef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a139190614ff1565b15612a3f5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610531565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612a91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab59190614ff1565b612add5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610531565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612b2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b53919061534d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b61013d613bfe565b5f80516020615b938339815191528054600160401b810460ff1615906001600160401b03165f81158015612bb55750825b90505f826001600160401b03166001148015612bd05750303b155b905081158015612bde575080155b15612bfc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612c2657845460ff60401b1916600160401b1785555b5f8087806020019051810190612c3c91906158eb565b91509150612c4b82828b613c36565b5f612c546109b9565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015612ca7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ccb9190614fc7565b9050612cdf6001546001600160a01b031690565b6001600160a01b031663d39e604360146040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612d33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d579190614d6e565b600280546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043601f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612dcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612def9190614d6e565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600b6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612e63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e879190614d6e565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e604360176040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612efb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f1f9190614d6e565b600580546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612f93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fb79190614d6e565b600780546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561302b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061304f9190614d6e565b600680546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043601a6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156130c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130e79190614d6e565b600880546001600160a01b0319166001600160a01b039290921691909117905561311763b20293b360e01b613d72565b5050508315610e1357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610e0a565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820181905261010082015261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e08101919091526101a083015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015613236573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061325a9190614ff1565b15801561327657506101a083015164ffffffffff808416911614155b1561329f5760405163f95747d360e01b81526001600160601b0385166004820152602401610531565b6101a083015164ffffffffff8381169116036132bc57508161335d565b64ffffffffff8281166101a0850181905260c08501516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015613329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061334d91906152dc565b64ffffffffff166101c084015250815b9392505050565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156133b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133dc9190614ff1565b156133e5575050565b5f6133ef83613d9e565b90506001600160a01b0381161561346757604051630be6b84560e21b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b03821690632f9ae114906044015b5f604051808303815f87803b158015613455575f80fd5b505af1158015610e13573d5f803e3d5ffd5b505050565b5f80516020615b5383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af415801561352c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061335d9190614ff1565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156135a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135c89190614ff1565b156135d1575050565b5f6135db83613d9e565b90506001600160a01b03811615613467576040516362782d9f60e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b038216906362782d9f9060440161343e565b5f825f015190505f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613672573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136969190614d6e565b90505f6136a38284613eb1565b90505f6136b86001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03891660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613705573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137299190614d6e565b905061379a826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561376a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061378e9190614d6e565b83838860a00151613f2f565b505061381181876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138009190614d6e565b84876020015188604001518861410b565b505050505050565b5f6138248584613eb1565b90505f6138396001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613886573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138aa9190614d6e565b90505f805f6138b98988614305565b895160208b01516040808d015190516321711b5760e21b81526001600160a01b038c8116600483015280861660248301526001600160601b0394851660448301528088166064830152928416608482015282861660a4820152921660c4830152939750919550935090871691506385c46d5c9060e4015f604051808303815f87803b158015613946575f80fd5b505af1158015613958573d5f803e3d5ffd5b50505050505050505050505050565b61396f6149b5565b5f806139836001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa1580156139d0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139f79190810190615918565b9250613a0485600b6119d9565b15613a5a57604083015160ff868116911614613a5557604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610531565b613aeb565b613a6a83604001516123b5600c90565b80613a805750613a8083604001516123b5600f90565b80613a965750613a9683604001516123b5600e90565b80613aac5750613aac83604001516123b5600d90565b613aeb57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610531565b613af883602001516144fe565b91508315613bf557816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b609190614d6e565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613ba8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bcc9190614ff1565b15613bf557604051637d71120960e11b81526001600160601b0387166004820152602401610531565b50935093915050565b5f80516020615b9383398151915254600160401b900460ff16613c3457604051631afcd79f60e31b815260040160405180910390fd5b565b613c3e613bfe565b613c4661458e565b6001600160a01b03821615613c6357613c5e8261459e565b613cda565b5f613c6e60026145af565b9050613cd8816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613caf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cd39190614d6e565b61459e565b505b613d5683846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d1a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d3e919061534d565b60085f8560405180602001604052805f8152506146b0565b613d66634a531f3360e01b613d72565b61346763daf9067160e01b5b613d7a613bfe565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f80613db26001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03851660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613dff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e239190614d6e565b604051635b5dd68960e11b81526001600160a01b038216600482015290925082915073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063b6bbad1290602401602060405180830381865af4158015613e7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ea39190614ff1565b613eab575f91505b50919050565b60405163f0ea17c360e01b81526001600160601b03821660048201525f906001600160a01b0384169063f0ea17c3906024015f60405180830381865afa158015613efd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f249190810190615015565b606001519392505050565b60405163046e44af60e11b81526001600160601b03821660048201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015613f87573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fab91906159e8565b6040516370a0823160e01b81526001600160a01b0385811660048301529192505f918716906370a0823190602401602060405180830381865afa158015613ff4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061401891906159e8565b604051636eb1769f60e11b81526001600160a01b03868116600483015287811660248301529192505f9188169063dd62ed3e90604401602060405180830381865afa158015614069573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061408d91906159e8565b9050828210156140c95760405163503edf3960e11b81526001600160a01b03861660048201526024810184905260448101839052606401610531565b82811015610e1357604051630afa3e2d60e11b81526001600160a01b038087166004830152871660248201526044810184905260648101829052608401610531565b5f6141168786614305565b505050905060035f9054906101000a90046001600160a01b03166001600160a01b03166367438c5087876141538661014001518760c00151614755565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160601b0391821660248401521660448201526064015f604051808303815f87803b1580156141a7575f80fd5b505af11580156141b9573d5f803e3d5ffd5b5050604051630a4d29dd60e31b81526001600160601b038416600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__92506352694ee89150602401602060405180830381865af4158015614213573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142379190614ff1565b61429d57600654604051633ca8687160e11b81526001600160a01b0390911690637950d0e29061426f908490879087906004016159ff565b5f604051808303815f87803b158015614286575f80fd5b505af1158015614298573d5f803e3d5ffd5b505050505b60075460405163fb3bcd1f60e01b81526001600160a01b039091169063fb3bcd1f906142cf90879086906004016157c0565b5f604051808303815f87803b1580156142e6575f80fd5b505af11580156142f8573d5f803e3d5ffd5b5050505050505050505050565b6040516302d764c760e21b81526001600160601b03821660048201525f9081908190819081906001600160a01b03881690630b5d931c9060240161020060405180830381865afa15801561435b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061437f919061582a565b805160405163f0ea17c360e01b81526001600160601b03821660048201529096509091506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa1580156143d1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526143f89190810190615015565b60800151602082015160405163f0ea17c360e01b81526001600160601b0390911660048201529094506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa15801561444f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144769190810190615015565b6080015160405163f0ea17c360e01b81526001600160601b03881660048201529093506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa1580156144c7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144ee9190810190615015565b6080015191505092959194509250565b5f6145116001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561455d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526145849190810190615918565b6080015192915050565b614596613bfe565b613c346147d9565b6145a6613bfe565b6109b6816147e1565b5f6145c26001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015614625573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146499190614fc7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561468c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117799190614d6e565b6146b8613bfe565b6146c282876147f2565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161474b8382615a78565b5050505050505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af41580156147b5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061335d919061534d565b612970613bfe565b6147e9613bfe565b6109b68161346c565b6147fa613bfe565b61480381614868565b61480b614970565b6001600160a01b0382166148325760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020615b3383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b614870613bfe565b806001600160a01b03163b5f036148a55760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610531565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa92505050801561491f575060408051601f3d908101601f1916820190925261491c91810190614ff1565b60015b6149475760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610531565b806110425760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610531565b614978613bfe565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f60208284031215614a02575f80fd5b81356001600160e01b03198116811461335d575f80fd5b6001600160601b03811681146109b6575f80fd5b5f60208284031215614a3d575f80fd5b813561335d81614a19565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614abe608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614b02610100840182614a48565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b60405161020081016001600160401b0381118282101715614b4157614b41614b0a565b60405290565b60405160c081016001600160401b0381118282101715614b4157614b41614b0a565b60405161024081016001600160401b0381118282101715614b4157614b41614b0a565b60405161012081016001600160401b0381118282101715614b4157614b41614b0a565b60405160e081016001600160401b0381118282101715614b4157614b41614b0a565b604051601f8201601f191681016001600160401b0381118282101715614bf957614bf9614b0a565b604052919050565b5f6001600160401b03821115614c1957614c19614b0a565b50601f01601f191660200190565b5f82601f830112614c36575f80fd5b8135614c49614c4482614c01565b614bd1565b818152846020838601011115614c5d575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614c89575f80fd5b81356001600160401b03811115614c9e575f80fd5b614b0284828501614c27565b6001600160a01b03811681146109b6575f80fd5b5f8060408385031215614ccf575f80fd5b8235614cda81614caa565b915060208301356001600160401b03811115614cf4575f80fd5b614d0085828601614c27565b9150509250929050565b64ffffffffff811681146109b6575f80fd5b5f8060408385031215614d2d575f80fd5b8235614d3881614a19565b91506020830135614d4881614d0a565b809150509250929050565b5f60208284031215614d63575f80fd5b813561335d81614caa565b5f60208284031215614d7e575f80fd5b815161335d81614caa565b8051614d9481614a19565b919050565b80516001600160c01b031981168114614d94575f80fd5b8051614d9481614d0a565b5f82601f830112614dca575f80fd5b8151602083015f614ddd614c4484614c01565b9050828152858383011115614df0575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161ffff81168114614d94575f80fd5b5f60208284031215614e2b575f80fd5b81516001600160401b03811115614e40575f80fd5b82016102008185031215614e52575f80fd5b614e5a614b1e565b614e6382614d89565b8152614e7160208301614d89565b6020820152614e8260408301614d99565b6040820152614e9360608301614d99565b6060820152614ea460808301614d89565b6080820152614eb560a08301614d89565b60a0820152614ec660c08301614db0565b60c082015260e08201516001600160401b03811115614ee3575f80fd5b614eef86828501614dbb565b60e0830152506101008201516001600160401b03811115614f0e575f80fd5b614f1a86828501614dbb565b61010083015250614f2e6101208301614e0a565b610120820152614f416101408301614e0a565b610140820152614f546101608301614d89565b610160820152614f676101808301614d89565b610180820152614f7a6101a08301614db0565b6101a0820152614f8d6101c08301614db0565b6101c0820152614fa06101e08301614db0565b6101e0820152949350505050565b60ff811681146109b6575f80fd5b8051614d9481614fae565b5f60208284031215614fd7575f80fd5b815161335d81614fae565b80518015158114614d94575f80fd5b5f60208284031215615001575f80fd5b61335d82614fe2565b8051614d9481614caa565b5f60208284031215615025575f80fd5b81516001600160401b0381111561503a575f80fd5b820160c0818503121561504b575f80fd5b615053614b47565b81516001600160401b03811115615068575f80fd5b61507486828501614dbb565b82525061508360208301614d89565b60208201526150946040830161500a565b60408201526150a56060830161500a565b60608201526150b66080830161500a565b608082015260a08201516001600160401b038111156150d3575f80fd5b6150df86828501614dbb565b60a083015250949350505050565b80516001600160601b031682525f602082015161511560208501826001600160601b03169052565b50604082015161513160408501826001600160c01b0319169052565b50606082015161514d60608501826001600160c01b0319169052565b50608082015161516860808501826001600160601b03169052565b5060a082015161518360a08501826001600160601b03169052565b5060c082015161519c60c085018264ffffffffff169052565b5060e082015161020060e08501526151b8610200850182614a48565b90506101008301518482036101008601526151d38282614a48565b9150506101208301516151ed61012086018261ffff169052565b5061014083015161520561014086018261ffff169052565b506101608301516152226101608601826001600160601b03169052565b5061018083015161523f6101808601826001600160601b03169052565b506101a083015161525a6101a086018264ffffffffff169052565b506101c08301516152756101c086018264ffffffffff169052565b506101e08301516152906101e086018264ffffffffff169052565b509392505050565b6001600160a01b038581168252841660208201526001600160601b03831660408201526080606082018190525f906152d2908301846150ed565b9695505050505050565b5f602082840312156152ec575f80fd5b815161335d81614d0a565b6001600160601b0384168152606060208201525f61531860608301856150ed565b905060ff83166040830152949350505050565b5f6020828403121561533b575f80fd5b815162ffffff8116811461335d575f80fd5b5f6020828403121561535d575f80fd5b815161335d81614a19565b600181811c9082168061537c57607f821691505b602082108103613eab57634e487b7160e01b5f52602260045260245ffd5b6001600160401b03811681146109b6575f80fd5b5f602082840312156153be575f80fd5b815161335d8161539a565b5f80604083850312156153da575f80fd5b82516153e581614a19565b6020840151909250614d4881614a19565b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f61544560e0830186614a48565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f610240828403128015615485575f80fd5b5061548e614b69565b61549783614d89565b81526154a560208401614d89565b60208201526154b660408401614d89565b60408201526154c760608401614d89565b60608201526154d860808401614d89565b60808201526154e960a08401614d89565b60a08201526154fa60c08401614d89565b60c082015261550b60e08401614d89565b60e082015261551d6101008401614d89565b6101008201526155306101208401614d89565b6101208201526155436101408401614d89565b6101408201526155566101608401614d89565b6101608201526155696101808401614d89565b61018082015261557c6101a08401614d89565b6101a082015261558f6101c08401614d89565b6101c08201526155a26101e08401614d89565b6101e08201526155b56102008401614d89565b6102008201526155c86102208401614d89565b6102208201529392505050565b80516001600160601b0316825260208101516155fc60208401826001600160601b03169052565b50604081015161561760408401826001600160601b03169052565b50606081015161563260608401826001600160601b03169052565b50608081015161564d60808401826001600160601b03169052565b5060a081015161566860a08401826001600160601b03169052565b5060c081015161568360c08401826001600160601b03169052565b5060e081015161569e60e08401826001600160601b03169052565b506101008101516156bb6101008401826001600160601b03169052565b506101208101516156d86101208401826001600160601b03169052565b506101408101516156f56101408401826001600160601b03169052565b506101608101516157126101608401826001600160601b03169052565b5061018081015161572f6101808401826001600160601b03169052565b506101a081015161574c6101a08401826001600160601b03169052565b506101c08101516157696101c08401826001600160601b03169052565b506101e08101516157866101e08401826001600160601b03169052565b506102008101516157a36102008401826001600160601b03169052565b506102208101516134676102208401826001600160601b03169052565b6001600160601b0383168152610260810161335d60208301846155d5565b5f604082840312156157ee575f80fd5b604080519081016001600160401b038111828210171561581057615810614b0a565b604052825181526020928301519281019290925250919050565b5f61020082840312801561583c575f80fd5b50615845614b8c565b61584e83614d89565b815261585c60208401614d89565b602082015261586e84604085016157de565b604082015261588084608085016157de565b60608201526158928460c085016157de565b60808201526158a58461010085016157de565b60a08201526158b88461014085016157de565b60c08201526158cb8461018085016157de565b60e08201526158de846101c085016157de565b6101008201529392505050565b5f80604083850312156158fc575f80fd5b825161590781614caa565b6020840151909250614d4881614caa565b5f60208284031215615928575f80fd5b81516001600160401b0381111561593d575f80fd5b820160e0818503121561594e575f80fd5b615956614baf565b61595f82614d89565b815261596d60208301614d89565b602082015261597e60408301614fbc565b604082015261598f60608301614fe2565b60608201526159a06080830161500a565b60808201526159b160a0830161500a565b60a082015260c08201516001600160401b038111156159ce575f80fd5b6159da86828501614dbb565b60c083015250949350505050565b5f602082840312156159f8575f80fd5b5051919050565b6001600160601b03841681526001600160c01b0319831660208201526102808101614b0260408301846155d5565b601f82111561346757805f5260205f20601f840160051c81016020851015615a525750805b601f840160051c820191505b81811015615a71575f8155600101615a5e565b5050505050565b81516001600160401b03811115615a9157615a91614b0a565b615aa581615a9f8454615368565b84615a2d565b6020601f821160018114615ad7575f8315615ac05750848201515b5f19600385901b1c1916600184901b178455615a71565b5f84815260208120601f198516915b82811015615b065787850151825560209485019460019092019101615ae6565b5084821015615b2357868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220715f3d7ffd97e65533d46d1d795a419ff04ebb6730f8950ed7bd3c9025b94c9e64736f6c634300081a0033",
951
+ "linkReferences": {
952
+ "contracts/shared/ContractLib.sol": {
953
+ "ContractLib": [
954
+ {
955
+ "length": 20,
956
+ "start": 16157
957
+ }
958
+ ]
959
+ },
960
+ "contracts/type/Amount.sol": {
961
+ "AmountLib": [
962
+ {
963
+ "length": 20,
964
+ "start": 16421
965
+ },
966
+ {
967
+ "length": 20,
968
+ "start": 18515
969
+ }
970
+ ]
971
+ },
972
+ "contracts/type/NftId.sol": {
973
+ "NftIdLib": [
974
+ {
975
+ "length": 20,
976
+ "start": 2895
977
+ },
978
+ {
979
+ "length": 20,
980
+ "start": 6281
981
+ },
982
+ {
983
+ "length": 20,
984
+ "start": 8770
985
+ },
986
+ {
987
+ "length": 20,
988
+ "start": 10893
989
+ },
990
+ {
991
+ "length": 20,
992
+ "start": 13770
993
+ },
994
+ {
995
+ "length": 20,
996
+ "start": 17071
997
+ }
998
+ ]
999
+ },
1000
+ "contracts/type/RoleId.sol": {
1001
+ "RoleIdLib": [
1002
+ {
1003
+ "length": 20,
1004
+ "start": 4383
1005
+ }
1006
+ ]
1007
+ },
1008
+ "contracts/type/StateId.sol": {
1009
+ "StateIdLib": [
1010
+ {
1011
+ "length": 20,
1012
+ "start": 1933
1013
+ }
1014
+ ]
1015
+ },
1016
+ "contracts/type/Timestamp.sol": {
1017
+ "TimestampLib": [
1018
+ {
1019
+ "length": 20,
1020
+ "start": 1587
1021
+ },
1022
+ {
1023
+ "length": 20,
1024
+ "start": 2298
1025
+ },
1026
+ {
1027
+ "length": 20,
1028
+ "start": 5299
1029
+ },
1030
+ {
1031
+ "length": 20,
1032
+ "start": 5398
1033
+ },
1034
+ {
1035
+ "length": 20,
1036
+ "start": 5599
1037
+ },
1038
+ {
1039
+ "length": 20,
1040
+ "start": 5727
1041
+ },
1042
+ {
1043
+ "length": 20,
1044
+ "start": 9843
1045
+ },
1046
+ {
1047
+ "length": 20,
1048
+ "start": 10675
1049
+ },
1050
+ {
1051
+ "length": 20,
1052
+ "start": 13012
1053
+ },
1054
+ {
1055
+ "length": 20,
1056
+ "start": 13255
1057
+ },
1058
+ {
1059
+ "length": 20,
1060
+ "start": 13398
1061
+ },
1062
+ {
1063
+ "length": 20,
1064
+ "start": 13890
1065
+ }
1066
+ ]
1067
+ },
1068
+ "contracts/type/Version.sol": {
1069
+ "VersionLib": [
1070
+ {
1071
+ "length": 20,
1072
+ "start": 2741
1073
+ },
1074
+ {
1075
+ "length": 20,
1076
+ "start": 3246
1077
+ },
1078
+ {
1079
+ "length": 20,
1080
+ "start": 11589
1081
+ }
1082
+ ],
1083
+ "VersionPartLib": [
1084
+ {
1085
+ "length": 20,
1086
+ "start": 4431
1087
+ },
1088
+ {
1089
+ "length": 20,
1090
+ "start": 18115
1091
+ }
1092
+ ]
1093
+ }
1094
+ },
1095
+ "deployedLinkReferences": {
1096
+ "contracts/shared/ContractLib.sol": {
1097
+ "ContractLib": [
1098
+ {
1099
+ "length": 20,
1100
+ "start": 15943
1101
+ }
1102
+ ]
1103
+ },
1104
+ "contracts/type/Amount.sol": {
1105
+ "AmountLib": [
1106
+ {
1107
+ "length": 20,
1108
+ "start": 16207
1109
+ },
1110
+ {
1111
+ "length": 20,
1112
+ "start": 18301
1113
+ }
1114
+ ]
1115
+ },
1116
+ "contracts/type/NftId.sol": {
1117
+ "NftIdLib": [
1118
+ {
1119
+ "length": 20,
1120
+ "start": 2681
1121
+ },
1122
+ {
1123
+ "length": 20,
1124
+ "start": 6067
1125
+ },
1126
+ {
1127
+ "length": 20,
1128
+ "start": 8556
1129
+ },
1130
+ {
1131
+ "length": 20,
1132
+ "start": 10679
1133
+ },
1134
+ {
1135
+ "length": 20,
1136
+ "start": 13556
1137
+ },
1138
+ {
1139
+ "length": 20,
1140
+ "start": 16857
1141
+ }
1142
+ ]
1143
+ },
1144
+ "contracts/type/RoleId.sol": {
1145
+ "RoleIdLib": [
1146
+ {
1147
+ "length": 20,
1148
+ "start": 4169
1149
+ }
1150
+ ]
1151
+ },
1152
+ "contracts/type/StateId.sol": {
1153
+ "StateIdLib": [
1154
+ {
1155
+ "length": 20,
1156
+ "start": 1719
1157
+ }
1158
+ ]
1159
+ },
1160
+ "contracts/type/Timestamp.sol": {
1161
+ "TimestampLib": [
1162
+ {
1163
+ "length": 20,
1164
+ "start": 1373
1165
+ },
1166
+ {
1167
+ "length": 20,
1168
+ "start": 2084
1169
+ },
1170
+ {
1171
+ "length": 20,
1172
+ "start": 5085
1173
+ },
1174
+ {
1175
+ "length": 20,
1176
+ "start": 5184
1177
+ },
1178
+ {
1179
+ "length": 20,
1180
+ "start": 5385
1181
+ },
1182
+ {
1183
+ "length": 20,
1184
+ "start": 5513
1185
+ },
1186
+ {
1187
+ "length": 20,
1188
+ "start": 9629
1189
+ },
1190
+ {
1191
+ "length": 20,
1192
+ "start": 10461
1193
+ },
1194
+ {
1195
+ "length": 20,
1196
+ "start": 12798
1197
+ },
1198
+ {
1199
+ "length": 20,
1200
+ "start": 13041
1201
+ },
1202
+ {
1203
+ "length": 20,
1204
+ "start": 13184
1205
+ },
1206
+ {
1207
+ "length": 20,
1208
+ "start": 13676
1209
+ }
1210
+ ]
1211
+ },
1212
+ "contracts/type/Version.sol": {
1213
+ "VersionLib": [
1214
+ {
1215
+ "length": 20,
1216
+ "start": 2527
1217
+ },
1218
+ {
1219
+ "length": 20,
1220
+ "start": 3032
1221
+ },
1222
+ {
1223
+ "length": 20,
1224
+ "start": 11375
1225
+ }
1226
+ ],
1227
+ "VersionPartLib": [
1228
+ {
1229
+ "length": 20,
1230
+ "start": 4217
1231
+ },
1232
+ {
1233
+ "length": 20,
1234
+ "start": 17901
1235
+ }
1236
+ ]
1237
+ }
1238
+ }
1239
+ }