@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,1367 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "BundleService",
4
+ "sourceName": "contracts/pool/BundleService.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": "bundleNftId",
49
+ "type": "uint96"
50
+ },
51
+ {
52
+ "internalType": "StateId",
53
+ "name": "state",
54
+ "type": "uint8"
55
+ },
56
+ {
57
+ "internalType": "Timestamp",
58
+ "name": "expiredAt",
59
+ "type": "uint40"
60
+ }
61
+ ],
62
+ "name": "ErrorBundleServiceBundleNotOpen",
63
+ "type": "error"
64
+ },
65
+ {
66
+ "inputs": [
67
+ {
68
+ "internalType": "NftId",
69
+ "name": "bundleNftId",
70
+ "type": "uint96"
71
+ },
72
+ {
73
+ "internalType": "NftId",
74
+ "name": "expectedPool",
75
+ "type": "uint96"
76
+ },
77
+ {
78
+ "internalType": "NftId",
79
+ "name": "actualPool",
80
+ "type": "uint96"
81
+ }
82
+ ],
83
+ "name": "ErrorBundleServiceBundlePoolMismatch",
84
+ "type": "error"
85
+ },
86
+ {
87
+ "inputs": [
88
+ {
89
+ "internalType": "NftId",
90
+ "name": "bundleNftId",
91
+ "type": "uint96"
92
+ }
93
+ ],
94
+ "name": "ErrorBundleServiceBundleUnknown",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "NftId",
101
+ "name": "bundleNftId",
102
+ "type": "uint96"
103
+ },
104
+ {
105
+ "internalType": "uint256",
106
+ "name": "openPoliciesCount",
107
+ "type": "uint256"
108
+ }
109
+ ],
110
+ "name": "ErrorBundleServiceBundleWithOpenPolicies",
111
+ "type": "error"
112
+ },
113
+ {
114
+ "inputs": [
115
+ {
116
+ "internalType": "NftId",
117
+ "name": "bundleNftId",
118
+ "type": "uint96"
119
+ },
120
+ {
121
+ "internalType": "Amount",
122
+ "name": "capacityAmount",
123
+ "type": "uint96"
124
+ },
125
+ {
126
+ "internalType": "Amount",
127
+ "name": "collateralAmount",
128
+ "type": "uint96"
129
+ }
130
+ ],
131
+ "name": "ErrorBundleServiceCapacityInsufficient",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [],
136
+ "name": "ErrorBundleServiceExtensionLifetimeIsZero",
137
+ "type": "error"
138
+ },
139
+ {
140
+ "inputs": [
141
+ {
142
+ "internalType": "Amount",
143
+ "name": "amount",
144
+ "type": "uint96"
145
+ },
146
+ {
147
+ "internalType": "Amount",
148
+ "name": "limit",
149
+ "type": "uint96"
150
+ }
151
+ ],
152
+ "name": "ErrorBundleServiceFeesWithdrawAmountExceedsLimit",
153
+ "type": "error"
154
+ },
155
+ {
156
+ "inputs": [
157
+ {
158
+ "internalType": "address",
159
+ "name": "bundleOwner",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "internalType": "address",
164
+ "name": "tokenHandlerAddress",
165
+ "type": "address"
166
+ },
167
+ {
168
+ "internalType": "Amount",
169
+ "name": "amount",
170
+ "type": "uint96"
171
+ }
172
+ ],
173
+ "name": "ErrorBundleServiceInsufficientAllowance",
174
+ "type": "error"
175
+ },
176
+ {
177
+ "inputs": [
178
+ {
179
+ "internalType": "NftId",
180
+ "name": "policyNftId",
181
+ "type": "uint96"
182
+ }
183
+ ],
184
+ "name": "ErrorBundleServicePolicyNotCloseable",
185
+ "type": "error"
186
+ },
187
+ {
188
+ "inputs": [
189
+ {
190
+ "internalType": "Amount",
191
+ "name": "amount",
192
+ "type": "uint96"
193
+ },
194
+ {
195
+ "internalType": "Amount",
196
+ "name": "limit",
197
+ "type": "uint96"
198
+ }
199
+ ],
200
+ "name": "ErrorBundleServiceUnstakeAmountExceedsLimit",
201
+ "type": "error"
202
+ },
203
+ {
204
+ "inputs": [
205
+ {
206
+ "internalType": "NftId",
207
+ "name": "policyNftId",
208
+ "type": "uint96"
209
+ }
210
+ ],
211
+ "name": "ErrorBundleSetPolicyAlreadyActivated",
212
+ "type": "error"
213
+ },
214
+ {
215
+ "inputs": [
216
+ {
217
+ "internalType": "NftId",
218
+ "name": "componentNftId",
219
+ "type": "uint96"
220
+ }
221
+ ],
222
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
223
+ "type": "error"
224
+ },
225
+ {
226
+ "inputs": [
227
+ {
228
+ "internalType": "NftId",
229
+ "name": "componentNftId",
230
+ "type": "uint96"
231
+ },
232
+ {
233
+ "internalType": "ObjectType",
234
+ "name": "expectedType",
235
+ "type": "uint8"
236
+ },
237
+ {
238
+ "internalType": "ObjectType",
239
+ "name": "actualType",
240
+ "type": "uint8"
241
+ }
242
+ ],
243
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
244
+ "type": "error"
245
+ },
246
+ {
247
+ "inputs": [
248
+ {
249
+ "internalType": "NftId",
250
+ "name": "nftId",
251
+ "type": "uint96"
252
+ }
253
+ ],
254
+ "name": "ErrorNftOwnableAlreadyLinked",
255
+ "type": "error"
256
+ },
257
+ {
258
+ "inputs": [
259
+ {
260
+ "internalType": "address",
261
+ "name": "contractAddress",
262
+ "type": "address"
263
+ }
264
+ ],
265
+ "name": "ErrorNftOwnableContractNotRegistered",
266
+ "type": "error"
267
+ },
268
+ {
269
+ "inputs": [],
270
+ "name": "ErrorNftOwnableInitialOwnerZero",
271
+ "type": "error"
272
+ },
273
+ {
274
+ "inputs": [
275
+ {
276
+ "internalType": "address",
277
+ "name": "account",
278
+ "type": "address"
279
+ }
280
+ ],
281
+ "name": "ErrorNftOwnableNotOwner",
282
+ "type": "error"
283
+ },
284
+ {
285
+ "inputs": [
286
+ {
287
+ "internalType": "address",
288
+ "name": "registryAddress",
289
+ "type": "address"
290
+ }
291
+ ],
292
+ "name": "ErrorNotRegistry",
293
+ "type": "error"
294
+ },
295
+ {
296
+ "inputs": [],
297
+ "name": "ErrorServiceNotImplemented",
298
+ "type": "error"
299
+ },
300
+ {
301
+ "inputs": [],
302
+ "name": "InvalidInitialization",
303
+ "type": "error"
304
+ },
305
+ {
306
+ "inputs": [],
307
+ "name": "NotInitializing",
308
+ "type": "error"
309
+ },
310
+ {
311
+ "inputs": [],
312
+ "name": "ReentrancyGuardReentrantCall",
313
+ "type": "error"
314
+ },
315
+ {
316
+ "anonymous": false,
317
+ "inputs": [
318
+ {
319
+ "indexed": false,
320
+ "internalType": "address",
321
+ "name": "authority",
322
+ "type": "address"
323
+ }
324
+ ],
325
+ "name": "AuthorityUpdated",
326
+ "type": "event"
327
+ },
328
+ {
329
+ "anonymous": false,
330
+ "inputs": [
331
+ {
332
+ "indexed": false,
333
+ "internalType": "uint64",
334
+ "name": "version",
335
+ "type": "uint64"
336
+ }
337
+ ],
338
+ "name": "Initialized",
339
+ "type": "event"
340
+ },
341
+ {
342
+ "anonymous": false,
343
+ "inputs": [
344
+ {
345
+ "indexed": false,
346
+ "internalType": "NftId",
347
+ "name": "bundleNftId",
348
+ "type": "uint96"
349
+ }
350
+ ],
351
+ "name": "LogBundleServiceBundleActivated",
352
+ "type": "event"
353
+ },
354
+ {
355
+ "anonymous": false,
356
+ "inputs": [
357
+ {
358
+ "indexed": false,
359
+ "internalType": "NftId",
360
+ "name": "bundleNftId",
361
+ "type": "uint96"
362
+ },
363
+ {
364
+ "indexed": false,
365
+ "internalType": "Seconds",
366
+ "name": "lifetimeExtension",
367
+ "type": "uint40"
368
+ },
369
+ {
370
+ "indexed": false,
371
+ "internalType": "Timestamp",
372
+ "name": "extendedExpiredAt",
373
+ "type": "uint40"
374
+ }
375
+ ],
376
+ "name": "LogBundleServiceBundleExtended",
377
+ "type": "event"
378
+ },
379
+ {
380
+ "anonymous": false,
381
+ "inputs": [
382
+ {
383
+ "indexed": false,
384
+ "internalType": "NftId",
385
+ "name": "bundleNftId",
386
+ "type": "uint96"
387
+ }
388
+ ],
389
+ "name": "LogBundleServiceBundleLocked",
390
+ "type": "event"
391
+ },
392
+ {
393
+ "anonymous": false,
394
+ "inputs": [
395
+ {
396
+ "indexed": false,
397
+ "internalType": "NftId",
398
+ "name": "bundleNftId",
399
+ "type": "uint96"
400
+ },
401
+ {
402
+ "indexed": false,
403
+ "internalType": "address",
404
+ "name": "recipient",
405
+ "type": "address"
406
+ },
407
+ {
408
+ "indexed": false,
409
+ "internalType": "address",
410
+ "name": "tokenAddress",
411
+ "type": "address"
412
+ },
413
+ {
414
+ "indexed": false,
415
+ "internalType": "Amount",
416
+ "name": "amount",
417
+ "type": "uint96"
418
+ }
419
+ ],
420
+ "name": "LogBundleServiceFeesWithdrawn",
421
+ "type": "event"
422
+ },
423
+ {
424
+ "inputs": [],
425
+ "name": "NAME",
426
+ "outputs": [
427
+ {
428
+ "internalType": "string",
429
+ "name": "",
430
+ "type": "string"
431
+ }
432
+ ],
433
+ "stateMutability": "view",
434
+ "type": "function"
435
+ },
436
+ {
437
+ "inputs": [],
438
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
439
+ "outputs": [
440
+ {
441
+ "internalType": "bytes32",
442
+ "name": "",
443
+ "type": "bytes32"
444
+ }
445
+ ],
446
+ "stateMutability": "view",
447
+ "type": "function"
448
+ },
449
+ {
450
+ "inputs": [],
451
+ "name": "REGISTERABLE_LOCATION_V1",
452
+ "outputs": [
453
+ {
454
+ "internalType": "bytes32",
455
+ "name": "",
456
+ "type": "bytes32"
457
+ }
458
+ ],
459
+ "stateMutability": "view",
460
+ "type": "function"
461
+ },
462
+ {
463
+ "inputs": [],
464
+ "name": "authority",
465
+ "outputs": [
466
+ {
467
+ "internalType": "address",
468
+ "name": "",
469
+ "type": "address"
470
+ }
471
+ ],
472
+ "stateMutability": "view",
473
+ "type": "function"
474
+ },
475
+ {
476
+ "inputs": [
477
+ {
478
+ "internalType": "contract IInstance",
479
+ "name": "instance",
480
+ "type": "address"
481
+ },
482
+ {
483
+ "internalType": "NftId",
484
+ "name": "bundleNftId",
485
+ "type": "uint96"
486
+ }
487
+ ],
488
+ "name": "close",
489
+ "outputs": [
490
+ {
491
+ "internalType": "Amount",
492
+ "name": "unstakedAmount",
493
+ "type": "uint96"
494
+ },
495
+ {
496
+ "internalType": "Amount",
497
+ "name": "feeAmount",
498
+ "type": "uint96"
499
+ }
500
+ ],
501
+ "stateMutability": "nonpayable",
502
+ "type": "function"
503
+ },
504
+ {
505
+ "inputs": [
506
+ {
507
+ "internalType": "contract IInstance",
508
+ "name": "instance",
509
+ "type": "address"
510
+ },
511
+ {
512
+ "internalType": "NftId",
513
+ "name": "poolNftId",
514
+ "type": "uint96"
515
+ },
516
+ {
517
+ "internalType": "address",
518
+ "name": "owner",
519
+ "type": "address"
520
+ },
521
+ {
522
+ "components": [
523
+ {
524
+ "internalType": "UFixed",
525
+ "name": "fractionalFee",
526
+ "type": "uint256"
527
+ },
528
+ {
529
+ "internalType": "uint256",
530
+ "name": "fixedFee",
531
+ "type": "uint256"
532
+ }
533
+ ],
534
+ "internalType": "struct Fee",
535
+ "name": "bundleFee",
536
+ "type": "tuple"
537
+ },
538
+ {
539
+ "internalType": "Amount",
540
+ "name": "stakingAmount",
541
+ "type": "uint96"
542
+ },
543
+ {
544
+ "internalType": "Seconds",
545
+ "name": "lifetime",
546
+ "type": "uint40"
547
+ },
548
+ {
549
+ "internalType": "bytes",
550
+ "name": "filter",
551
+ "type": "bytes"
552
+ }
553
+ ],
554
+ "name": "create",
555
+ "outputs": [
556
+ {
557
+ "internalType": "NftId",
558
+ "name": "bundleNftId",
559
+ "type": "uint96"
560
+ }
561
+ ],
562
+ "stateMutability": "nonpayable",
563
+ "type": "function"
564
+ },
565
+ {
566
+ "inputs": [
567
+ {
568
+ "internalType": "NftId",
569
+ "name": "bundleNftId",
570
+ "type": "uint96"
571
+ },
572
+ {
573
+ "internalType": "Seconds",
574
+ "name": "lifetimeExtension",
575
+ "type": "uint40"
576
+ }
577
+ ],
578
+ "name": "extend",
579
+ "outputs": [
580
+ {
581
+ "internalType": "Timestamp",
582
+ "name": "extendedExpiredAt",
583
+ "type": "uint40"
584
+ }
585
+ ],
586
+ "stateMutability": "nonpayable",
587
+ "type": "function"
588
+ },
589
+ {
590
+ "inputs": [],
591
+ "name": "getDomain",
592
+ "outputs": [
593
+ {
594
+ "internalType": "ObjectType",
595
+ "name": "serviceDomain",
596
+ "type": "uint8"
597
+ }
598
+ ],
599
+ "stateMutability": "pure",
600
+ "type": "function"
601
+ },
602
+ {
603
+ "inputs": [],
604
+ "name": "getInitialInfo",
605
+ "outputs": [
606
+ {
607
+ "components": [
608
+ {
609
+ "internalType": "NftId",
610
+ "name": "nftId",
611
+ "type": "uint96"
612
+ },
613
+ {
614
+ "internalType": "NftId",
615
+ "name": "parentNftId",
616
+ "type": "uint96"
617
+ },
618
+ {
619
+ "internalType": "ObjectType",
620
+ "name": "objectType",
621
+ "type": "uint8"
622
+ },
623
+ {
624
+ "internalType": "bool",
625
+ "name": "isInterceptor",
626
+ "type": "bool"
627
+ },
628
+ {
629
+ "internalType": "address",
630
+ "name": "objectAddress",
631
+ "type": "address"
632
+ },
633
+ {
634
+ "internalType": "address",
635
+ "name": "initialOwner",
636
+ "type": "address"
637
+ },
638
+ {
639
+ "internalType": "bytes",
640
+ "name": "data",
641
+ "type": "bytes"
642
+ }
643
+ ],
644
+ "internalType": "struct IRegistry.ObjectInfo",
645
+ "name": "info",
646
+ "type": "tuple"
647
+ }
648
+ ],
649
+ "stateMutability": "view",
650
+ "type": "function"
651
+ },
652
+ {
653
+ "inputs": [],
654
+ "name": "getNftId",
655
+ "outputs": [
656
+ {
657
+ "internalType": "NftId",
658
+ "name": "",
659
+ "type": "uint96"
660
+ }
661
+ ],
662
+ "stateMutability": "view",
663
+ "type": "function"
664
+ },
665
+ {
666
+ "inputs": [],
667
+ "name": "getOwner",
668
+ "outputs": [
669
+ {
670
+ "internalType": "address",
671
+ "name": "",
672
+ "type": "address"
673
+ }
674
+ ],
675
+ "stateMutability": "view",
676
+ "type": "function"
677
+ },
678
+ {
679
+ "inputs": [],
680
+ "name": "getRegistry",
681
+ "outputs": [
682
+ {
683
+ "internalType": "contract IRegistry",
684
+ "name": "",
685
+ "type": "address"
686
+ }
687
+ ],
688
+ "stateMutability": "view",
689
+ "type": "function"
690
+ },
691
+ {
692
+ "inputs": [],
693
+ "name": "getRoleId",
694
+ "outputs": [
695
+ {
696
+ "internalType": "RoleId",
697
+ "name": "serviceRoleId",
698
+ "type": "uint64"
699
+ }
700
+ ],
701
+ "stateMutability": "pure",
702
+ "type": "function"
703
+ },
704
+ {
705
+ "inputs": [],
706
+ "name": "getVersion",
707
+ "outputs": [
708
+ {
709
+ "internalType": "Version",
710
+ "name": "",
711
+ "type": "uint24"
712
+ }
713
+ ],
714
+ "stateMutability": "pure",
715
+ "type": "function"
716
+ },
717
+ {
718
+ "inputs": [
719
+ {
720
+ "internalType": "address",
721
+ "name": "activatedBy",
722
+ "type": "address"
723
+ },
724
+ {
725
+ "internalType": "bytes",
726
+ "name": "data",
727
+ "type": "bytes"
728
+ }
729
+ ],
730
+ "name": "initializeVersionable",
731
+ "outputs": [],
732
+ "stateMutability": "nonpayable",
733
+ "type": "function"
734
+ },
735
+ {
736
+ "inputs": [],
737
+ "name": "isConsumingScheduledOp",
738
+ "outputs": [
739
+ {
740
+ "internalType": "bytes4",
741
+ "name": "",
742
+ "type": "bytes4"
743
+ }
744
+ ],
745
+ "stateMutability": "view",
746
+ "type": "function"
747
+ },
748
+ {
749
+ "inputs": [],
750
+ "name": "linkToRegisteredNftId",
751
+ "outputs": [
752
+ {
753
+ "internalType": "NftId",
754
+ "name": "nftId",
755
+ "type": "uint96"
756
+ }
757
+ ],
758
+ "stateMutability": "nonpayable",
759
+ "type": "function"
760
+ },
761
+ {
762
+ "inputs": [
763
+ {
764
+ "internalType": "NftId",
765
+ "name": "bundleNftId",
766
+ "type": "uint96"
767
+ }
768
+ ],
769
+ "name": "lock",
770
+ "outputs": [],
771
+ "stateMutability": "nonpayable",
772
+ "type": "function"
773
+ },
774
+ {
775
+ "inputs": [
776
+ {
777
+ "internalType": "contract IInstance",
778
+ "name": "instance",
779
+ "type": "address"
780
+ },
781
+ {
782
+ "internalType": "NftId",
783
+ "name": "policyNftId",
784
+ "type": "uint96"
785
+ },
786
+ {
787
+ "internalType": "NftId",
788
+ "name": "bundleNftId",
789
+ "type": "uint96"
790
+ },
791
+ {
792
+ "internalType": "Amount",
793
+ "name": "collateralAmount",
794
+ "type": "uint96"
795
+ }
796
+ ],
797
+ "name": "lockCollateral",
798
+ "outputs": [],
799
+ "stateMutability": "nonpayable",
800
+ "type": "function"
801
+ },
802
+ {
803
+ "inputs": [
804
+ {
805
+ "internalType": "contract IInstance",
806
+ "name": "instance",
807
+ "type": "address"
808
+ },
809
+ {
810
+ "internalType": "NftId",
811
+ "name": "policyNftId",
812
+ "type": "uint96"
813
+ },
814
+ {
815
+ "internalType": "NftId",
816
+ "name": "bundleNftId",
817
+ "type": "uint96"
818
+ },
819
+ {
820
+ "internalType": "Amount",
821
+ "name": "collateralAmount",
822
+ "type": "uint96"
823
+ }
824
+ ],
825
+ "name": "releaseCollateral",
826
+ "outputs": [],
827
+ "stateMutability": "nonpayable",
828
+ "type": "function"
829
+ },
830
+ {
831
+ "inputs": [
832
+ {
833
+ "internalType": "address",
834
+ "name": "newAuthority",
835
+ "type": "address"
836
+ }
837
+ ],
838
+ "name": "setAuthority",
839
+ "outputs": [],
840
+ "stateMutability": "nonpayable",
841
+ "type": "function"
842
+ },
843
+ {
844
+ "inputs": [
845
+ {
846
+ "internalType": "NftId",
847
+ "name": "bundleNftId",
848
+ "type": "uint96"
849
+ },
850
+ {
851
+ "components": [
852
+ {
853
+ "internalType": "UFixed",
854
+ "name": "fractionalFee",
855
+ "type": "uint256"
856
+ },
857
+ {
858
+ "internalType": "uint256",
859
+ "name": "fixedFee",
860
+ "type": "uint256"
861
+ }
862
+ ],
863
+ "internalType": "struct Fee",
864
+ "name": "fee",
865
+ "type": "tuple"
866
+ }
867
+ ],
868
+ "name": "setFee",
869
+ "outputs": [],
870
+ "stateMutability": "nonpayable",
871
+ "type": "function"
872
+ },
873
+ {
874
+ "inputs": [
875
+ {
876
+ "internalType": "contract IInstance",
877
+ "name": "instance",
878
+ "type": "address"
879
+ },
880
+ {
881
+ "internalType": "NftId",
882
+ "name": "bundleNftId",
883
+ "type": "uint96"
884
+ },
885
+ {
886
+ "internalType": "Amount",
887
+ "name": "amount",
888
+ "type": "uint96"
889
+ }
890
+ ],
891
+ "name": "stake",
892
+ "outputs": [],
893
+ "stateMutability": "nonpayable",
894
+ "type": "function"
895
+ },
896
+ {
897
+ "inputs": [
898
+ {
899
+ "internalType": "bytes4",
900
+ "name": "interfaceId",
901
+ "type": "bytes4"
902
+ }
903
+ ],
904
+ "name": "supportsInterface",
905
+ "outputs": [
906
+ {
907
+ "internalType": "bool",
908
+ "name": "",
909
+ "type": "bool"
910
+ }
911
+ ],
912
+ "stateMutability": "view",
913
+ "type": "function"
914
+ },
915
+ {
916
+ "inputs": [
917
+ {
918
+ "internalType": "contract IInstance",
919
+ "name": "instance",
920
+ "type": "address"
921
+ },
922
+ {
923
+ "internalType": "NftId",
924
+ "name": "policyNftId",
925
+ "type": "uint96"
926
+ }
927
+ ],
928
+ "name": "unlinkPolicy",
929
+ "outputs": [],
930
+ "stateMutability": "nonpayable",
931
+ "type": "function"
932
+ },
933
+ {
934
+ "inputs": [
935
+ {
936
+ "internalType": "NftId",
937
+ "name": "bundleNftId",
938
+ "type": "uint96"
939
+ }
940
+ ],
941
+ "name": "unlock",
942
+ "outputs": [],
943
+ "stateMutability": "nonpayable",
944
+ "type": "function"
945
+ },
946
+ {
947
+ "inputs": [
948
+ {
949
+ "internalType": "contract IInstance",
950
+ "name": "instance",
951
+ "type": "address"
952
+ },
953
+ {
954
+ "internalType": "NftId",
955
+ "name": "bundleNftId",
956
+ "type": "uint96"
957
+ },
958
+ {
959
+ "internalType": "Amount",
960
+ "name": "amount",
961
+ "type": "uint96"
962
+ }
963
+ ],
964
+ "name": "unstake",
965
+ "outputs": [
966
+ {
967
+ "internalType": "Amount",
968
+ "name": "unstakedAmount",
969
+ "type": "uint96"
970
+ }
971
+ ],
972
+ "stateMutability": "nonpayable",
973
+ "type": "function"
974
+ },
975
+ {
976
+ "inputs": [
977
+ {
978
+ "internalType": "bytes",
979
+ "name": "data",
980
+ "type": "bytes"
981
+ }
982
+ ],
983
+ "name": "upgradeVersionable",
984
+ "outputs": [],
985
+ "stateMutability": "nonpayable",
986
+ "type": "function"
987
+ },
988
+ {
989
+ "inputs": [
990
+ {
991
+ "internalType": "NftId",
992
+ "name": "bundleNftId",
993
+ "type": "uint96"
994
+ },
995
+ {
996
+ "internalType": "Amount",
997
+ "name": "amount",
998
+ "type": "uint96"
999
+ }
1000
+ ],
1001
+ "name": "withdrawBundleFees",
1002
+ "outputs": [
1003
+ {
1004
+ "internalType": "Amount",
1005
+ "name": "withdrawnAmount",
1006
+ "type": "uint96"
1007
+ }
1008
+ ],
1009
+ "stateMutability": "nonpayable",
1010
+ "type": "function"
1011
+ }
1012
+ ],
1013
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615b39806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101c6575f3560e01c8063644c45e0116100fe578063aa9acb2c1161009e578063b68d18091161006e578063b68d180914610482578063bf7e214f14610491578063e283b4a914610499578063f3d0e5d2146104ac575f80fd5b8063aa9acb2c14610415578063ad328d9f14610448578063ada9652e1461045b578063b5346af51461046f575f80fd5b80637a9e5e4b116100d95780637a9e5e4b146103a0578063893d20e8146103b35780638fb36037146103bb578063a3f4df7e146103dc575f80fd5b8063644c45e0146103505780636c741e781461036d57806376429bc01461038d575f80fd5b806325fa796b1161016957806349bb9e4b1161014457806349bb9e4b146102f25780634adcf9091461030557806354e50779146103185780635ab1bd531461032b575f80fd5b806325fa796b146102b95780632d2cf222146102cc578063329d6e74146102df575f80fd5b80630fec111c116101a45780630fec111c1461023c578063138461e0146102515780631eff4b22146102715780631f8e8f36146102a6575f80fd5b806301ffc9a7146101ca57806306fa45651461020b5780630d8e6e2c14610220575b5f80fd5b6101f66101d8366004614bb5565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e610219366004614bf0565b6104d5565b005b6102286106b5565b60405162ffffff9091168152602001610202565b61024461073c565b6040516102029190614c39565b6102596108c8565b6040516001600160601b039091168152602001610202565b6102987f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610202565b61021e6102b4366004614dcf565b6108d2565b61021e6102c7366004614e17565b610b7e565b6102596102da366004614e17565b610fcf565b61021e6102ed366004614ed7565b6112f3565b61021e610300366004614f08565b611435565b61021e610313366004614f54565b611531565b610259610326366004614fad565b611953565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610202565b5f80516020615aa4833981519152546001600160601b0316610259565b61037561215a565b6040516001600160401b039091168152602001610202565b61021e61039b366004614fe4565b612250565b61021e6103ae366004615000565b612415565b61033861249b565b6103c36125cc565b6040516001600160e01b03199091168152602001610202565b6104086040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b604051610202919061501b565b610428610423366004614fe4565b612601565b604080516001600160601b03938416815292909116602083015201610202565b61021e610456366004614f54565b612a03565b6102985f80516020615aa483398151915281565b61021e61047d366004614bf0565b612aed565b604051601f8152602001610202565b610338612cc4565b6102596104a736600461503f565b612cdf565b6104bf6104ba366004615117565b613307565b60405164ffffffffff9091168152602001610202565b5f6104e0600f613800565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610520573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105449190615143565b6001600160a01b031663fe1f18d68360046040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b15801561059b575f80fd5b505af11580156105ad573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106129190615143565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa4565906024015f604051808303815f87803b15801561065c575f80fd5b505af115801561066e573d5f803e3d5ffd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610713573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610737919061515e565b905090565b610744614b78565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156107ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107de9190615190565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161082661249b565b6001600160a01b03168152602001826001018054610843906151ab565b80601f016020809104026020016040519081016040528092919081815260200182805461086f906151ab565b80156108ba5780601f10610891576101008083540402835291602001916108ba565b820191905f5260205f20905b81548152906001019060200180831161089d57829003601f168201915b505050505081525091505090565b5f6107373061389c565b5f806108de600f613800565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610920573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109449190615143565b604051634793b4ab60e01b81526001600160601b03871660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa158015610993573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109ba919081019061523d565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610a16573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3a919061532c565b15610a68576040516349e9f38360e01b81526001600160601b03871660048201526024015b60405180910390fd5b8051610a749085613a95565b15610ab057805160405163dab86e4560e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610a5f565b848160200181905250826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610af5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b199190615143565b6001600160a01b03166351dd844b878360ff6040518463ffffffff1660e01b8152600401610b49939291906153c9565b5f604051808303815f87803b158015610b60575f80fd5b505af1158015610b72573d5f803e3d5ffd5b50505050505050505050565b5f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bdf9190615143565b604051634793b4ab60e01b81526001600160601b03851660048201526001600160a01b039190911690634793b4ab906024015f60405180830381865afa158015610c2b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c52919081019061523d565b90505f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb59190615143565b604051637d8f1e8160e01b81526001600160601b03861660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa158015610d02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d269190615416565b9050610d3b8160045b60ff9081169116141590565b8015610d4d5750610d4d81606e610d2f565b80610dd55750610dd5826080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610da2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc69190615431565b64ffffffffff90811691161090565b80610e59575060a0820151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015610e35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e59919061532c565b15610e9e57608082015160405163bf5b8f0960e01b81526001600160601b038616600482015260ff8316602482015264ffffffffff9091166044820152606401610a5f565b6004805460408051631a99b41b60e31b815290516001600160a01b03928316936325e451d3938a169263d4cda0d892818301926020928290030181865afa158015610eeb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0f9190615143565b868673__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7c9190615190565b6040518563ffffffff1660e01b8152600401610f9b949392919061544c565b5f604051808303815f87803b158015610fb2575f80fd5b505af1158015610fc4573d5f803e3d5ffd5b505050505050505050565b5f80846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561100d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110319190615143565b6040516317bb785d60e21b81526001600160601b03861660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015611085573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a9919061547e565b91945092509050855f6110c5856110c08686613b21565b613ba6565b9050876001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611134573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111589190615190565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156111a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c5919061532c565b156111ce578091505b6111d88282613bf0565b156112085760405162f808ef60e61b81526001600160601b03808a16600483015282166024820152604401610a5f565b60045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f878b8573__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611275573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112999190615190565b6040518563ffffffff1660e01b81526004016112b8949392919061544c565b5f604051808303815f87803b1580156112cf575f80fd5b505af11580156112e1573d5f803e3d5ffd5b50939c9b505050505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6113156106b5565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611353573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137791906154d1565b5f80516020615ae48339815191528054600160401b900460ff16806113a9575080546001600160401b03808416911610155b156113c75760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113f183613c3a565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016106a8565b5f80516020615ae48339815191528054600160401b810460ff1615906001600160401b03165f811580156114665750825b90505f826001600160401b031660011480156114815750303b155b90508115801561148f575080155b156114ad5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114d757845460ff60401b1916600160401b1785555b6114e18787613c42565b831561152857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61153d335b5f36613db1565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561157a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061159e9190615143565b90505f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116019190615143565b604051637d8f1e8160e01b81526001600160601b03861660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa15801561164e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116729190615416565b604051634793b4ab60e01b81526001600160601b03861660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa1580156116c1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526116e8919081019061523d565b90506116f5826004610d2f565b8061174a575061174a816080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610da2573d5f803e3d5ffd5b1561178f57608081015160405163bf5b8f0960e01b81526001600160601b038716600482015260ff8416602482015264ffffffffff9091166044820152606401610a5f565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117f09190615143565b6040516317bb785d60e21b81526001600160601b03881660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015611844573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611868919061547e565b9250925092505f61187d846110c08585613b21565b9050611889818a613ea7565b156118c25760405163826a5ff960e01b81526001600160601b03808c16600483015280831660248301528a166044820152606401610a5f565b60405163248a77dd60e01b81526001600160601b03808c1660048301528a1660248201526001600160a01b0386169063248a77dd906044016020604051808303815f875af1158015611916573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061193a9190615190565b506119458c8c613ef1565b505050505050505050505050565b5f8080611960600f613800565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c69190615143565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa158015611a15573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a3c91908101906154f7565b6080810151604051634793b4ab60e01b81526001600160601b038a166004820152919250905f906001600160a01b03851690634793b4ab906024015f60405180830381865afa158015611a91573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611ab8919081019061523d565b9050879650866001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4e9190615190565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015611b97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bbb919061532c565b15611c3657604051630232ca4960e01b81526001600160601b038a1660048201526001600160a01b03851690630232ca4990602401602060405180830381865afa158015611c0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c2f9190615190565b9650611dd4565b604051630232ca4960e01b81526001600160601b038a8116600483015273__$3bac17678db7ae928afa209f2f44deec9c$__916398058c4c918a16906001600160a01b03881690630232ca4990602401602060405180830381865afa158015611ca1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cc59190615190565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015611d0e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d32919061532c565b15611dd457604051630232ca4960e01b81526001600160601b038a16600482015287906001600160a01b03861690630232ca4990602401602060405180830381865afa158015611d84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da89190615190565b60405163d98a83b760e01b81526001600160601b03928316600482015291166024820152604401610a5f565b5f856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e359190615143565b905060045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f828c73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611ea3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec79190615190565b8c6040518563ffffffff1660e01b8152600401611ee7949392919061544c565b5f604051808303815f87803b158015611efe575f80fd5b505af1158015611f10573d5f803e3d5ffd5b5050505060045f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a282898b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611f81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa59190615190565b6040518563ffffffff1660e01b8152600401611fc4949392919061544c565b5f604051808303815f87803b158015611fdb575f80fd5b505af1158015611fed573d5f803e3d5ffd5b50505050505f6120056001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038c1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612052573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120769190615143565b60408581015181516001600160601b038e811682526001600160a01b03858116602084015290921681840152908b16606082015290519192507fc3eff56dd5436528da6d208eff7a92ed71cafc177d49a9c55303bff3b1bcf8d2919081900360800190a1606084015160405163153c361360e21b81526001600160a01b03858116600483015283811660248301526001600160601b038b166044830152909116906354f0d84c906064015f604051808303815f87803b158015612137575f80fd5b505af1158015612149573d5f803e3d5ffd5b505050505050505050505092915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3601f604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156121c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121e99190615416565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af415801561222c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061073791906154d1565b61225933611536565b816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612295573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b99190615143565b6040516375d357df60e01b81526001600160601b03831660048201526001600160a01b0391909116906375d357df90602401602060405180830381865afa158015612306573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061232a919061532c565b612352576040516392bb4dff60e01b81526001600160601b0382166004820152602401610a5f565b816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561238e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123b29190615143565b604051631351fccf60e31b81526001600160601b03831660048201526001600160a01b039190911690639a8fe678906024015f604051808303815f87803b1580156123fb575f80fd5b505af115801561240d573d5f803e3d5ffd5b505050505050565b3361241e612cc4565b6001600160a01b0316816001600160a01b0316146124595760405162d1953b60e31b81526001600160a01b0382166004820152602401610a5f565b816001600160a01b03163b5f0361248e576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a5f565b61249782614163565b5050565b5f805f80516020615aa483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252b919061532c565b156125b6576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561258c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125b09190615143565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615ac483398151915280545f9190600160a01b900460ff166125f3575f6125b0565b638fb3603760e01b91505090565b5f8061260c33611536565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612649573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061266d9190615143565b90505f856001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126d09190615143565b6040516322cc1d4560e11b81526001600160601b03871660048201529091505f906001600160a01b038316906345983a8a90602401602060405180830381865afa158015612720573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061274491906155cf565b90508015612777576040516356a410b760e01b81526001600160601b038716600482015260248101829052604401610a5f565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127d89190615143565b90506001600160a01b03811663fe1f18d68860c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612832575f80fd5b505af1158015612844573d5f803e3d5ffd5b505060405163b5346af560e01b81526001600160601b038a1660048201526001600160a01b038616925063b5346af591506024015f604051808303815f87803b15801561288f575f80fd5b505af11580156128a1573d5f803e3d5ffd5b50506040516308a390bb60e21b81526001600160601b038a1660048201525f92506001600160a01b038716915063228e42ec90602401602060405180830381865afa1580156128f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129169190615190565b604051630232ca4960e01b81526001600160601b038a1660048201529091506001600160a01b03861690630232ca4990602401602060405180830381865afa158015612964573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129889190615190565b95506129948187613ba6565b6004805460405163e618053f60e01b81529299506001600160a01b03169163e618053f916129ca9186918d918d918d910161544c565b5f604051808303815f87803b1580156129e1575f80fd5b505af11580156129f3573d5f803e3d5ffd5b5050505050505050509250929050565b612a0c33611536565b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a6c9190615143565b6040516353ebe12960e01b81526001600160601b038085166004830152831660248201526001600160a01b0391909116906353ebe129906044016020604051808303815f875af1158015612ac2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ae69190615190565b5050505050565b5f612af8600f613800565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b5c9190615143565b6001600160a01b031663fe1f18d683606e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612bb3575f80fd5b505af1158015612bc5573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c2a9190615143565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af5906024015f604051808303815f87803b158015612c74575f80fd5b505af1158015612c86573d5f803e3d5ffd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f4925060200190506106a8565b5f80516020615ac4833981519152546001600160a01b031690565b5f612ce933611536565b60035f9054906101000a90046001600160a01b03166001600160a01b031663c2bf08c86040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612d5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d829190615190565b6001600160601b031681526020018b6001600160601b03168152602001612da7601f90565b60ff1681526020015f151581526020015f6001600160a01b031681526020018a6001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401612e039190614c39565b6020604051808303815f875af1158015612e1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e439190615190565b90505f896001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ea69190615143565b9050806001600160a01b031663a46eb8dc836040518060c001604052808d6001600160601b031681526020018b815260200188888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250505090825250604080516356db0c1960e11b8152905160209283019273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb6183292600480830193928290030181865af4158015612f60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f849190615431565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612fd7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ffb9190615431565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908b16602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015613058573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061307c9190615431565b64ffffffffff1681525f6020909101526040516001600160e01b031960e085901b1681526130ae9291906004016155e6565b5f604051808303815f87803b1580156130c5575f80fd5b505af11580156130d7573d5f803e3d5ffd5b50506040516330b8415f60e01b81526001600160601b038916600482015273__$3bac17678db7ae928afa209f2f44deec9c$__92506330b8415f9150602401602060405180830381865af4158015613131573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613155919061532c565b156132385760045f9054906101000a90046001600160a01b03166001600160a01b03166325e451d382848973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156131c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131eb9190615190565b6040518563ffffffff1660e01b815260040161320a949392919061544c565b5f604051808303815f87803b158015613221575f80fd5b505af1158015613233573d5f803e3d5ffd5b505050505b5f8a6001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015613275573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132999190615143565b6040516346f0e8a760e11b81526001600160601b03851660048201529091506001600160a01b03821690638de1d14e906024015f604051808303815f87803b1580156132e3575f80fd5b505af11580156132f5573d5f803e3d5ffd5b50505050505098975050505050505050565b5f8080613314600f613800565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613356573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061337a9190615143565b604051634793b4ab60e01b81526001600160601b03881660048201526001600160a01b039190911690634793b4ab906024015f60405180830381865afa1580156133c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526133ed919081019061523d565b90505f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561342c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134509190615143565b604051637d8f1e8160e01b81526001600160601b03891660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa15801561349d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c19190615416565b90506134d0825f015185613a95565b1561350c57815160405163dab86e4560e01b81526001600160601b03808a16600483015291821660248201529085166044820152606401610a5f565b613517816004610d2f565b8061356c575061356c826080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610da2573d5f803e3d5ffd5b156135b157608082015160405163bf5b8f0960e01b81526001600160601b038916600482015260ff8316602482015264ffffffffff9091166044820152606401610a5f565b60405163790a38ad60e01b815264ffffffffff8716600482015273__$71e292c09eace9601b3e21e68a1278917a$__9063790a38ad90602401602060405180830381865af4158015613605573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613629919061532c565b15613647576040516307f6a6ab60e31b815260040160405180910390fd5b60808201516040516352bcc5a760e11b815264ffffffffff9182166004820152908716602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af41580156136a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136cd9190615431565b64ffffffffff16608083015260408051631a99b41b60e31b815290516001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa15801561371c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137409190615143565b6001600160a01b03166351dd844b888460ff6040518463ffffffff1660e01b8152600401613770939291906153c9565b5f604051808303815f87803b158015613787575f80fd5b505af1158015613799573d5f803e3d5ffd5b505050506080820151604080516001600160601b038a16815264ffffffffff898116602083015290921682820152517f47dde095fac4cfe7361ede303a6499020b475037d805fa37784e682c423ddc929181900360600190a1506080015195945050505050565b5f613809614b78565b5f61381c6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015613860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138849190615190565b9250613892838560016141c3565b9395909450915050565b5f805f80516020615aa483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613908573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061392c919061532c565b156139585780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610a5f565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156139aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139ce919061532c565b6139f65760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610a5f565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613a48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a6c9190615190565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015613af6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b1a919061532c565b9392505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015613b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b1a9190615190565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613b67565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401613adb565b6101c6614465565b5f80516020615ae48339815191528054600160401b810460ff1615906001600160401b03165f81158015613c735750825b90505f826001600160401b03166001148015613c8e5750303b155b905081158015613c9c575080155b15613cba5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315613ce457845460ff60401b1916600160401b1785555b5f8087806020019051810190613cfa9190615607565b91509150613d0982828b61449d565b613d1360026145e2565b600380546001600160a01b0319166001600160a01b0392909216919091179055613d3d600b6145e2565b600480546001600160a01b0319166001600160a01b0392909216919091179055613d6d63da16599760e01b6146e9565b5050831561152857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161151f565b5f80516020615ac48339815191525f80613de9613dcc612cc4565b8730613ddb60045f8a8c615634565b613de49161565b565b614715565b915091508161240d5763ffffffff811615613e8457825460ff60a01b1916600160a01b178355613e17612cc4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401613e4693929190615693565b5f604051808303815f87803b158015613e5d575f80fd5b505af1158015613e6f573d5f803e3d5ffd5b5050845460ff60a01b191685555061240d9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a5f565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401613adb565b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f529190615143565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015613fa1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613fc891908101906156fa565b6101a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015614026573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061404a919061532c565b80156140a157506140a1816101a0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610da2573d5f803e3d5ffd5b156140ca576040516311db797560e31b81526001600160601b0384166004820152602401610a5f565b5f846001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015614107573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061412b9190615143565b604051630331f98560e21b81526001600160601b03861660048201529091506001600160a01b03821690630cc7e61490602401610f9b565b5f80516020615ac483398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6141cb614b78565b5f806141df6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa15801561422c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052614253919081019061588d565b925061426085600b610d2f565b156142b657604083015160ff8681169116146142b157604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610a5f565b614352565b6142d183604001516142c6600c90565b60ff90811691161490565b806142e757506142e783604001516142c6600f90565b806142fd57506142fd83604001516142c6600e90565b80614313575061431383604001516142c6600d90565b61435257604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610a5f565b61435f836020015161481d565b9150831561445c57816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143c79190615143565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa15801561440f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614433919061532c565b1561445c57604051637d71120960e11b81526001600160601b0387166004820152602401610a5f565b50935093915050565b5f80516020615ae483398151915254600160401b900460ff1661449b57604051631afcd79f60e31b815260040160405180910390fd5b565b6144a5614465565b6144ad6148ad565b6001600160a01b038216156144ca576144c5826148bd565b614541565b5f6144d560026145e2565b905061453f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614516573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061453a9190615143565b6148bd565b505b6145bd83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015614581573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145a59190615190565b60085f8560405180602001604052805f8152506148d1565b6145cd634a531f3360e01b6146e9565b6145dd63daf9067160e01b6146e9565b505050565b5f6145f56001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015614658573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061467c9190615416565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156146bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146e39190615143565b92915050565b6146f1614465565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251614783919061595d565b5f60405180830381855afa9150503d805f81146147bb576040519150601f19603f3d011682016040523d82523d5f602084013e6147c0565b606091505b509150915081156148125760408151106147f257808060200190518101906147e89190615973565b9094509250614812565b6020815110614812578080602001905181019061480f919061532c565b93505b505094509492505050565b5f6148306001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561487c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526148a3919081019061588d565b6080015192915050565b6148b5614465565b61449b614976565b6148c5614465565b6148ce816149a4565b50565b6148d9614465565b6148e382876149b5565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161496c83826159e9565b5050505050505050565b61497e614465565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6149ac614465565b6148ce81614163565b6149bd614465565b6149c681614a2b565b6149ce614b33565b6001600160a01b0382166149f55760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020615aa483398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b614a33614465565b806001600160a01b03163b5f03614a685760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a5f565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015614ae2575060408051601f3d908101601f19168201909252614adf9181019061532c565b60015b614b0a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a5f565b806124975760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610a5f565b614b3b614465565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f60208284031215614bc5575f80fd5b81356001600160e01b031981168114613b1a575f80fd5b6001600160601b03811681146148ce575f80fd5b5f60208284031215614c00575f80fd5b8135613b1a81614bdc565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614c81608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614cc5610100840182614c0b565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614d0357614d03614ccd565b60405290565b60405160c081016001600160401b0381118282101715614d0357614d03614ccd565b60405161020081016001600160401b0381118282101715614d0357614d03614ccd565b60405160e081016001600160401b0381118282101715614d0357614d03614ccd565b604051601f8201601f191681016001600160401b0381118282101715614d9857614d98614ccd565b604052919050565b5f60408284031215614db0575f80fd5b614db8614ce1565b823581526020928301359281019290925250919050565b5f8060608385031215614de0575f80fd5b8235614deb81614bdc565b9150614dfa8460208501614da0565b90509250929050565b6001600160a01b03811681146148ce575f80fd5b5f805f60608486031215614e29575f80fd5b8335614e3481614e03565b92506020840135614e4481614bdc565b91506040840135614e5481614bdc565b809150509250925092565b5f6001600160401b03821115614e7757614e77614ccd565b50601f01601f191660200190565b5f82601f830112614e94575f80fd5b8135614ea7614ea282614e5f565b614d70565b818152846020838601011115614ebb575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614ee7575f80fd5b81356001600160401b03811115614efc575f80fd5b614cc584828501614e85565b5f8060408385031215614f19575f80fd5b8235614f2481614e03565b915060208301356001600160401b03811115614f3e575f80fd5b614f4a85828601614e85565b9150509250929050565b5f805f8060808587031215614f67575f80fd5b8435614f7281614e03565b93506020850135614f8281614bdc565b92506040850135614f9281614bdc565b91506060850135614fa281614bdc565b939692955090935050565b5f8060408385031215614fbe575f80fd5b8235614fc981614bdc565b91506020830135614fd981614bdc565b809150509250929050565b5f8060408385031215614ff5575f80fd5b8235614fc981614e03565b5f60208284031215615010575f80fd5b8135613b1a81614e03565b602081525f613b1a6020830184614c0b565b64ffffffffff811681146148ce575f80fd5b5f805f805f805f80610100898b031215615057575f80fd5b883561506281614e03565b9750602089013561507281614bdc565b9650604089013561508281614e03565b95506150918a60608b01614da0565b945060a08901356150a181614bdc565b935060c08901356150b18161502d565b925060e08901356001600160401b038111156150cb575f80fd5b8901601f81018b136150db575f80fd5b80356001600160401b038111156150f0575f80fd5b8b6020828401011115615101575f80fd5b989b979a50959850939692959194602001935050565b5f8060408385031215615128575f80fd5b823561513381614bdc565b91506020830135614fd98161502d565b5f60208284031215615153575f80fd5b8151613b1a81614e03565b5f6020828403121561516e575f80fd5b815162ffffff81168114613b1a575f80fd5b805161518b81614bdc565b919050565b5f602082840312156151a0575f80fd5b8151613b1a81614bdc565b600181811c908216806151bf57607f821691505b6020821081036151dd57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f82601f8301126151f2575f80fd5b8151602083015f615205614ea284614e5f565b9050828152858383011115615218575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161518b8161502d565b5f6020828403121561524d575f80fd5b81516001600160401b03811115615262575f80fd5b820180840360e0811215615274575f80fd5b61527c614d09565b825161528781614bdc565b81526040601f198301121561529a575f80fd5b6152a2614ce1565b6020848101518252604085015181830152820152606083015191506001600160401b038211156152d0575f80fd5b6152dc868385016151e3565b60408201526152ed60808401615232565b60608201526152fe60a08401615232565b608082015261530f60c08401615232565b60a082015295945050505050565b8051801515811461518b575f80fd5b5f6020828403121561533c575f80fd5b613b1a8261531d565b6001600160601b0381511682525f6020820151805160208501526020810151604085015250604082015160e0606085015261538360e0850182614c0b565b905064ffffffffff606084015116608085015260808301516153ae60a086018264ffffffffff169052565b5060a083015164ffffffffff811660c0860152509392505050565b6001600160601b0384168152606060208201525f6153ea6060830185615345565b905060ff83166040830152949350505050565b60ff811681146148ce575f80fd5b805161518b816153fd565b5f60208284031215615426575f80fd5b8151613b1a816153fd565b5f60208284031215615441575f80fd5b8151613b1a8161502d565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f805f60608486031215615490575f80fd5b835161549b81614bdc565b60208501519093506154ac81614bdc565b6040850151909250614e5481614bdc565b6001600160401b03811681146148ce575f80fd5b5f602082840312156154e1575f80fd5b8151613b1a816154bd565b805161518b81614e03565b5f60208284031215615507575f80fd5b81516001600160401b0381111561551c575f80fd5b820160c0818503121561552d575f80fd5b615535614d09565b81516001600160401b0381111561554a575f80fd5b615556868285016151e3565b82525061556560208301615180565b6020820152615576604083016154ec565b6040820152615587606083016154ec565b6060820152615598608083016154ec565b608082015260a08201516001600160401b038111156155b5575f80fd5b6155c1868285016151e3565b60a083015250949350505050565b5f602082840312156155df575f80fd5b5051919050565b6001600160601b0383168152604060208201525f614cc56040830184615345565b5f8060408385031215615618575f80fd5b825161562381614e03565b6020840151909250614fd981614e03565b5f8085851115615642575f80fd5b8386111561564e575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561568c576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b80516001600160c01b03198116811461518b575f80fd5b805161ffff8116811461518b575f80fd5b5f6020828403121561570a575f80fd5b81516001600160401b0381111561571f575f80fd5b82016102008185031215615731575f80fd5b615739614d2b565b61574282615180565b815261575060208301615180565b6020820152615761604083016156d2565b6040820152615772606083016156d2565b606082015261578360808301615180565b608082015261579460a08301615180565b60a08201526157a560c08301615232565b60c082015260e08201516001600160401b038111156157c2575f80fd5b6157ce868285016151e3565b60e0830152506101008201516001600160401b038111156157ed575f80fd5b6157f9868285016151e3565b6101008301525061580d61012083016156e9565b61012082015261582061014083016156e9565b6101408201526158336101608301615180565b6101608201526158466101808301615180565b6101808201526158596101a08301615232565b6101a082015261586c6101c08301615232565b6101c082015261587f6101e08301615232565b6101e0820152949350505050565b5f6020828403121561589d575f80fd5b81516001600160401b038111156158b2575f80fd5b820160e081850312156158c3575f80fd5b6158cb614d4e565b6158d482615180565b81526158e260208301615180565b60208201526158f36040830161540b565b60408201526159046060830161531d565b6060820152615915608083016154ec565b608082015261592660a083016154ec565b60a082015260c08201516001600160401b03811115615943575f80fd5b61594f868285016151e3565b60c083015250949350505050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615984575f80fd5b61598d8361531d565b9150602083015163ffffffff81168114614fd9575f80fd5b601f8211156145dd57805f5260205f20601f840160051c810160208510156159ca5750805b601f840160051c820191505b81811015612ae6575f81556001016159d6565b81516001600160401b03811115615a0257615a02614ccd565b615a1681615a1084546151ab565b846159a5565b6020601f821160018114615a48575f8315615a315750848201515b5f19600385901b1c1916600184901b178455612ae6565b5f84815260208120601f198516915b82811015615a775787850151825560209485019460019092019101615a57565b5084821015615a9457868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122046c849d29f796dbdd49e7f4d97113d6ef00d4946f818a85ad3b7ec9246799ba864736f6c634300081a0033",
1014
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101c6575f3560e01c8063644c45e0116100fe578063aa9acb2c1161009e578063b68d18091161006e578063b68d180914610482578063bf7e214f14610491578063e283b4a914610499578063f3d0e5d2146104ac575f80fd5b8063aa9acb2c14610415578063ad328d9f14610448578063ada9652e1461045b578063b5346af51461046f575f80fd5b80637a9e5e4b116100d95780637a9e5e4b146103a0578063893d20e8146103b35780638fb36037146103bb578063a3f4df7e146103dc575f80fd5b8063644c45e0146103505780636c741e781461036d57806376429bc01461038d575f80fd5b806325fa796b1161016957806349bb9e4b1161014457806349bb9e4b146102f25780634adcf9091461030557806354e50779146103185780635ab1bd531461032b575f80fd5b806325fa796b146102b95780632d2cf222146102cc578063329d6e74146102df575f80fd5b80630fec111c116101a45780630fec111c1461023c578063138461e0146102515780631eff4b22146102715780631f8e8f36146102a6575f80fd5b806301ffc9a7146101ca57806306fa45651461020b5780630d8e6e2c14610220575b5f80fd5b6101f66101d8366004614bb5565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e610219366004614bf0565b6104d5565b005b6102286106b5565b60405162ffffff9091168152602001610202565b61024461073c565b6040516102029190614c39565b6102596108c8565b6040516001600160601b039091168152602001610202565b6102987f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610202565b61021e6102b4366004614dcf565b6108d2565b61021e6102c7366004614e17565b610b7e565b6102596102da366004614e17565b610fcf565b61021e6102ed366004614ed7565b6112f3565b61021e610300366004614f08565b611435565b61021e610313366004614f54565b611531565b610259610326366004614fad565b611953565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610202565b5f80516020615aa4833981519152546001600160601b0316610259565b61037561215a565b6040516001600160401b039091168152602001610202565b61021e61039b366004614fe4565b612250565b61021e6103ae366004615000565b612415565b61033861249b565b6103c36125cc565b6040516001600160e01b03199091168152602001610202565b6104086040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b604051610202919061501b565b610428610423366004614fe4565b612601565b604080516001600160601b03938416815292909116602083015201610202565b61021e610456366004614f54565b612a03565b6102985f80516020615aa483398151915281565b61021e61047d366004614bf0565b612aed565b604051601f8152602001610202565b610338612cc4565b6102596104a736600461503f565b612cdf565b6104bf6104ba366004615117565b613307565b60405164ffffffffff9091168152602001610202565b5f6104e0600f613800565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610520573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105449190615143565b6001600160a01b031663fe1f18d68360046040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b15801561059b575f80fd5b505af11580156105ad573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106129190615143565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa4565906024015f604051808303815f87803b15801561065c575f80fd5b505af115801561066e573d5f803e3d5ffd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610713573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610737919061515e565b905090565b610744614b78565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156107ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107de9190615190565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161082661249b565b6001600160a01b03168152602001826001018054610843906151ab565b80601f016020809104026020016040519081016040528092919081815260200182805461086f906151ab565b80156108ba5780601f10610891576101008083540402835291602001916108ba565b820191905f5260205f20905b81548152906001019060200180831161089d57829003601f168201915b505050505081525091505090565b5f6107373061389c565b5f806108de600f613800565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610920573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109449190615143565b604051634793b4ab60e01b81526001600160601b03871660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa158015610993573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109ba919081019061523d565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610a16573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3a919061532c565b15610a68576040516349e9f38360e01b81526001600160601b03871660048201526024015b60405180910390fd5b8051610a749085613a95565b15610ab057805160405163dab86e4560e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610a5f565b848160200181905250826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610af5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b199190615143565b6001600160a01b03166351dd844b878360ff6040518463ffffffff1660e01b8152600401610b49939291906153c9565b5f604051808303815f87803b158015610b60575f80fd5b505af1158015610b72573d5f803e3d5ffd5b50505050505050505050565b5f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bdf9190615143565b604051634793b4ab60e01b81526001600160601b03851660048201526001600160a01b039190911690634793b4ab906024015f60405180830381865afa158015610c2b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c52919081019061523d565b90505f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb59190615143565b604051637d8f1e8160e01b81526001600160601b03861660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa158015610d02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d269190615416565b9050610d3b8160045b60ff9081169116141590565b8015610d4d5750610d4d81606e610d2f565b80610dd55750610dd5826080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610da2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc69190615431565b64ffffffffff90811691161090565b80610e59575060a0820151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015610e35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e59919061532c565b15610e9e57608082015160405163bf5b8f0960e01b81526001600160601b038616600482015260ff8316602482015264ffffffffff9091166044820152606401610a5f565b6004805460408051631a99b41b60e31b815290516001600160a01b03928316936325e451d3938a169263d4cda0d892818301926020928290030181865afa158015610eeb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0f9190615143565b868673__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7c9190615190565b6040518563ffffffff1660e01b8152600401610f9b949392919061544c565b5f604051808303815f87803b158015610fb2575f80fd5b505af1158015610fc4573d5f803e3d5ffd5b505050505050505050565b5f80846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561100d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110319190615143565b6040516317bb785d60e21b81526001600160601b03861660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015611085573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a9919061547e565b91945092509050855f6110c5856110c08686613b21565b613ba6565b9050876001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611134573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111589190615190565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156111a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c5919061532c565b156111ce578091505b6111d88282613bf0565b156112085760405162f808ef60e61b81526001600160601b03808a16600483015282166024820152604401610a5f565b60045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f878b8573__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611275573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112999190615190565b6040518563ffffffff1660e01b81526004016112b8949392919061544c565b5f604051808303815f87803b1580156112cf575f80fd5b505af11580156112e1573d5f803e3d5ffd5b50939c9b505050505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6113156106b5565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611353573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137791906154d1565b5f80516020615ae48339815191528054600160401b900460ff16806113a9575080546001600160401b03808416911610155b156113c75760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113f183613c3a565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016106a8565b5f80516020615ae48339815191528054600160401b810460ff1615906001600160401b03165f811580156114665750825b90505f826001600160401b031660011480156114815750303b155b90508115801561148f575080155b156114ad5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114d757845460ff60401b1916600160401b1785555b6114e18787613c42565b831561152857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61153d335b5f36613db1565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561157a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061159e9190615143565b90505f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116019190615143565b604051637d8f1e8160e01b81526001600160601b03861660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa15801561164e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116729190615416565b604051634793b4ab60e01b81526001600160601b03861660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa1580156116c1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526116e8919081019061523d565b90506116f5826004610d2f565b8061174a575061174a816080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610da2573d5f803e3d5ffd5b1561178f57608081015160405163bf5b8f0960e01b81526001600160601b038716600482015260ff8416602482015264ffffffffff9091166044820152606401610a5f565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117f09190615143565b6040516317bb785d60e21b81526001600160601b03881660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015611844573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611868919061547e565b9250925092505f61187d846110c08585613b21565b9050611889818a613ea7565b156118c25760405163826a5ff960e01b81526001600160601b03808c16600483015280831660248301528a166044820152606401610a5f565b60405163248a77dd60e01b81526001600160601b03808c1660048301528a1660248201526001600160a01b0386169063248a77dd906044016020604051808303815f875af1158015611916573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061193a9190615190565b506119458c8c613ef1565b505050505050505050505050565b5f8080611960600f613800565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c69190615143565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa158015611a15573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a3c91908101906154f7565b6080810151604051634793b4ab60e01b81526001600160601b038a166004820152919250905f906001600160a01b03851690634793b4ab906024015f60405180830381865afa158015611a91573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611ab8919081019061523d565b9050879650866001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4e9190615190565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015611b97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bbb919061532c565b15611c3657604051630232ca4960e01b81526001600160601b038a1660048201526001600160a01b03851690630232ca4990602401602060405180830381865afa158015611c0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c2f9190615190565b9650611dd4565b604051630232ca4960e01b81526001600160601b038a8116600483015273__$3bac17678db7ae928afa209f2f44deec9c$__916398058c4c918a16906001600160a01b03881690630232ca4990602401602060405180830381865afa158015611ca1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cc59190615190565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015611d0e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d32919061532c565b15611dd457604051630232ca4960e01b81526001600160601b038a16600482015287906001600160a01b03861690630232ca4990602401602060405180830381865afa158015611d84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da89190615190565b60405163d98a83b760e01b81526001600160601b03928316600482015291166024820152604401610a5f565b5f856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e359190615143565b905060045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f828c73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611ea3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec79190615190565b8c6040518563ffffffff1660e01b8152600401611ee7949392919061544c565b5f604051808303815f87803b158015611efe575f80fd5b505af1158015611f10573d5f803e3d5ffd5b5050505060045f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a282898b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611f81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa59190615190565b6040518563ffffffff1660e01b8152600401611fc4949392919061544c565b5f604051808303815f87803b158015611fdb575f80fd5b505af1158015611fed573d5f803e3d5ffd5b50505050505f6120056001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038c1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612052573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120769190615143565b60408581015181516001600160601b038e811682526001600160a01b03858116602084015290921681840152908b16606082015290519192507fc3eff56dd5436528da6d208eff7a92ed71cafc177d49a9c55303bff3b1bcf8d2919081900360800190a1606084015160405163153c361360e21b81526001600160a01b03858116600483015283811660248301526001600160601b038b166044830152909116906354f0d84c906064015f604051808303815f87803b158015612137575f80fd5b505af1158015612149573d5f803e3d5ffd5b505050505050505050505092915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3601f604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156121c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121e99190615416565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af415801561222c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061073791906154d1565b61225933611536565b816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612295573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b99190615143565b6040516375d357df60e01b81526001600160601b03831660048201526001600160a01b0391909116906375d357df90602401602060405180830381865afa158015612306573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061232a919061532c565b612352576040516392bb4dff60e01b81526001600160601b0382166004820152602401610a5f565b816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561238e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123b29190615143565b604051631351fccf60e31b81526001600160601b03831660048201526001600160a01b039190911690639a8fe678906024015f604051808303815f87803b1580156123fb575f80fd5b505af115801561240d573d5f803e3d5ffd5b505050505050565b3361241e612cc4565b6001600160a01b0316816001600160a01b0316146124595760405162d1953b60e31b81526001600160a01b0382166004820152602401610a5f565b816001600160a01b03163b5f0361248e576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a5f565b61249782614163565b5050565b5f805f80516020615aa483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252b919061532c565b156125b6576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561258c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125b09190615143565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615ac483398151915280545f9190600160a01b900460ff166125f3575f6125b0565b638fb3603760e01b91505090565b5f8061260c33611536565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612649573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061266d9190615143565b90505f856001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126d09190615143565b6040516322cc1d4560e11b81526001600160601b03871660048201529091505f906001600160a01b038316906345983a8a90602401602060405180830381865afa158015612720573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061274491906155cf565b90508015612777576040516356a410b760e01b81526001600160601b038716600482015260248101829052604401610a5f565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127d89190615143565b90506001600160a01b03811663fe1f18d68860c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612832575f80fd5b505af1158015612844573d5f803e3d5ffd5b505060405163b5346af560e01b81526001600160601b038a1660048201526001600160a01b038616925063b5346af591506024015f604051808303815f87803b15801561288f575f80fd5b505af11580156128a1573d5f803e3d5ffd5b50506040516308a390bb60e21b81526001600160601b038a1660048201525f92506001600160a01b038716915063228e42ec90602401602060405180830381865afa1580156128f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129169190615190565b604051630232ca4960e01b81526001600160601b038a1660048201529091506001600160a01b03861690630232ca4990602401602060405180830381865afa158015612964573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129889190615190565b95506129948187613ba6565b6004805460405163e618053f60e01b81529299506001600160a01b03169163e618053f916129ca9186918d918d918d910161544c565b5f604051808303815f87803b1580156129e1575f80fd5b505af11580156129f3573d5f803e3d5ffd5b5050505050505050509250929050565b612a0c33611536565b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a6c9190615143565b6040516353ebe12960e01b81526001600160601b038085166004830152831660248201526001600160a01b0391909116906353ebe129906044016020604051808303815f875af1158015612ac2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ae69190615190565b5050505050565b5f612af8600f613800565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b5c9190615143565b6001600160a01b031663fe1f18d683606e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612bb3575f80fd5b505af1158015612bc5573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c2a9190615143565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af5906024015f604051808303815f87803b158015612c74575f80fd5b505af1158015612c86573d5f803e3d5ffd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f4925060200190506106a8565b5f80516020615ac4833981519152546001600160a01b031690565b5f612ce933611536565b60035f9054906101000a90046001600160a01b03166001600160a01b031663c2bf08c86040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612d5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d829190615190565b6001600160601b031681526020018b6001600160601b03168152602001612da7601f90565b60ff1681526020015f151581526020015f6001600160a01b031681526020018a6001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401612e039190614c39565b6020604051808303815f875af1158015612e1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e439190615190565b90505f896001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ea69190615143565b9050806001600160a01b031663a46eb8dc836040518060c001604052808d6001600160601b031681526020018b815260200188888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250505090825250604080516356db0c1960e11b8152905160209283019273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb6183292600480830193928290030181865af4158015612f60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f849190615431565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612fd7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ffb9190615431565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908b16602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015613058573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061307c9190615431565b64ffffffffff1681525f6020909101526040516001600160e01b031960e085901b1681526130ae9291906004016155e6565b5f604051808303815f87803b1580156130c5575f80fd5b505af11580156130d7573d5f803e3d5ffd5b50506040516330b8415f60e01b81526001600160601b038916600482015273__$3bac17678db7ae928afa209f2f44deec9c$__92506330b8415f9150602401602060405180830381865af4158015613131573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613155919061532c565b156132385760045f9054906101000a90046001600160a01b03166001600160a01b03166325e451d382848973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156131c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131eb9190615190565b6040518563ffffffff1660e01b815260040161320a949392919061544c565b5f604051808303815f87803b158015613221575f80fd5b505af1158015613233573d5f803e3d5ffd5b505050505b5f8a6001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015613275573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132999190615143565b6040516346f0e8a760e11b81526001600160601b03851660048201529091506001600160a01b03821690638de1d14e906024015f604051808303815f87803b1580156132e3575f80fd5b505af11580156132f5573d5f803e3d5ffd5b50505050505098975050505050505050565b5f8080613314600f613800565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613356573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061337a9190615143565b604051634793b4ab60e01b81526001600160601b03881660048201526001600160a01b039190911690634793b4ab906024015f60405180830381865afa1580156133c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526133ed919081019061523d565b90505f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561342c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134509190615143565b604051637d8f1e8160e01b81526001600160601b03891660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa15801561349d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c19190615416565b90506134d0825f015185613a95565b1561350c57815160405163dab86e4560e01b81526001600160601b03808a16600483015291821660248201529085166044820152606401610a5f565b613517816004610d2f565b8061356c575061356c826080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610da2573d5f803e3d5ffd5b156135b157608082015160405163bf5b8f0960e01b81526001600160601b038916600482015260ff8316602482015264ffffffffff9091166044820152606401610a5f565b60405163790a38ad60e01b815264ffffffffff8716600482015273__$71e292c09eace9601b3e21e68a1278917a$__9063790a38ad90602401602060405180830381865af4158015613605573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613629919061532c565b15613647576040516307f6a6ab60e31b815260040160405180910390fd5b60808201516040516352bcc5a760e11b815264ffffffffff9182166004820152908716602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af41580156136a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136cd9190615431565b64ffffffffff16608083015260408051631a99b41b60e31b815290516001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa15801561371c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137409190615143565b6001600160a01b03166351dd844b888460ff6040518463ffffffff1660e01b8152600401613770939291906153c9565b5f604051808303815f87803b158015613787575f80fd5b505af1158015613799573d5f803e3d5ffd5b505050506080820151604080516001600160601b038a16815264ffffffffff898116602083015290921682820152517f47dde095fac4cfe7361ede303a6499020b475037d805fa37784e682c423ddc929181900360600190a1506080015195945050505050565b5f613809614b78565b5f61381c6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015613860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138849190615190565b9250613892838560016141c3565b9395909450915050565b5f805f80516020615aa483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613908573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061392c919061532c565b156139585780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610a5f565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156139aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139ce919061532c565b6139f65760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610a5f565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613a48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a6c9190615190565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015613af6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b1a919061532c565b9392505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015613b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b1a9190615190565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613b67565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401613adb565b6101c6614465565b5f80516020615ae48339815191528054600160401b810460ff1615906001600160401b03165f81158015613c735750825b90505f826001600160401b03166001148015613c8e5750303b155b905081158015613c9c575080155b15613cba5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315613ce457845460ff60401b1916600160401b1785555b5f8087806020019051810190613cfa9190615607565b91509150613d0982828b61449d565b613d1360026145e2565b600380546001600160a01b0319166001600160a01b0392909216919091179055613d3d600b6145e2565b600480546001600160a01b0319166001600160a01b0392909216919091179055613d6d63da16599760e01b6146e9565b5050831561152857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161151f565b5f80516020615ac48339815191525f80613de9613dcc612cc4565b8730613ddb60045f8a8c615634565b613de49161565b565b614715565b915091508161240d5763ffffffff811615613e8457825460ff60a01b1916600160a01b178355613e17612cc4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401613e4693929190615693565b5f604051808303815f87803b158015613e5d575f80fd5b505af1158015613e6f573d5f803e3d5ffd5b5050845460ff60a01b191685555061240d9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a5f565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401613adb565b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f529190615143565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015613fa1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613fc891908101906156fa565b6101a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015614026573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061404a919061532c565b80156140a157506140a1816101a0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610da2573d5f803e3d5ffd5b156140ca576040516311db797560e31b81526001600160601b0384166004820152602401610a5f565b5f846001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015614107573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061412b9190615143565b604051630331f98560e21b81526001600160601b03861660048201529091506001600160a01b03821690630cc7e61490602401610f9b565b5f80516020615ac483398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6141cb614b78565b5f806141df6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa15801561422c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052614253919081019061588d565b925061426085600b610d2f565b156142b657604083015160ff8681169116146142b157604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610a5f565b614352565b6142d183604001516142c6600c90565b60ff90811691161490565b806142e757506142e783604001516142c6600f90565b806142fd57506142fd83604001516142c6600e90565b80614313575061431383604001516142c6600d90565b61435257604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610a5f565b61435f836020015161481d565b9150831561445c57816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143c79190615143565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa15801561440f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614433919061532c565b1561445c57604051637d71120960e11b81526001600160601b0387166004820152602401610a5f565b50935093915050565b5f80516020615ae483398151915254600160401b900460ff1661449b57604051631afcd79f60e31b815260040160405180910390fd5b565b6144a5614465565b6144ad6148ad565b6001600160a01b038216156144ca576144c5826148bd565b614541565b5f6144d560026145e2565b905061453f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614516573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061453a9190615143565b6148bd565b505b6145bd83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015614581573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145a59190615190565b60085f8560405180602001604052805f8152506148d1565b6145cd634a531f3360e01b6146e9565b6145dd63daf9067160e01b6146e9565b505050565b5f6145f56001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015614658573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061467c9190615416565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156146bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146e39190615143565b92915050565b6146f1614465565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251614783919061595d565b5f60405180830381855afa9150503d805f81146147bb576040519150601f19603f3d011682016040523d82523d5f602084013e6147c0565b606091505b509150915081156148125760408151106147f257808060200190518101906147e89190615973565b9094509250614812565b6020815110614812578080602001905181019061480f919061532c565b93505b505094509492505050565b5f6148306001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561487c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526148a3919081019061588d565b6080015192915050565b6148b5614465565b61449b614976565b6148c5614465565b6148ce816149a4565b50565b6148d9614465565b6148e382876149b5565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161496c83826159e9565b5050505050505050565b61497e614465565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6149ac614465565b6148ce81614163565b6149bd614465565b6149c681614a2b565b6149ce614b33565b6001600160a01b0382166149f55760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020615aa483398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b614a33614465565b806001600160a01b03163b5f03614a685760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a5f565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015614ae2575060408051601f3d908101601f19168201909252614adf9181019061532c565b60015b614b0a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a5f565b806124975760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610a5f565b614b3b614465565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f60208284031215614bc5575f80fd5b81356001600160e01b031981168114613b1a575f80fd5b6001600160601b03811681146148ce575f80fd5b5f60208284031215614c00575f80fd5b8135613b1a81614bdc565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614c81608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614cc5610100840182614c0b565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614d0357614d03614ccd565b60405290565b60405160c081016001600160401b0381118282101715614d0357614d03614ccd565b60405161020081016001600160401b0381118282101715614d0357614d03614ccd565b60405160e081016001600160401b0381118282101715614d0357614d03614ccd565b604051601f8201601f191681016001600160401b0381118282101715614d9857614d98614ccd565b604052919050565b5f60408284031215614db0575f80fd5b614db8614ce1565b823581526020928301359281019290925250919050565b5f8060608385031215614de0575f80fd5b8235614deb81614bdc565b9150614dfa8460208501614da0565b90509250929050565b6001600160a01b03811681146148ce575f80fd5b5f805f60608486031215614e29575f80fd5b8335614e3481614e03565b92506020840135614e4481614bdc565b91506040840135614e5481614bdc565b809150509250925092565b5f6001600160401b03821115614e7757614e77614ccd565b50601f01601f191660200190565b5f82601f830112614e94575f80fd5b8135614ea7614ea282614e5f565b614d70565b818152846020838601011115614ebb575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614ee7575f80fd5b81356001600160401b03811115614efc575f80fd5b614cc584828501614e85565b5f8060408385031215614f19575f80fd5b8235614f2481614e03565b915060208301356001600160401b03811115614f3e575f80fd5b614f4a85828601614e85565b9150509250929050565b5f805f8060808587031215614f67575f80fd5b8435614f7281614e03565b93506020850135614f8281614bdc565b92506040850135614f9281614bdc565b91506060850135614fa281614bdc565b939692955090935050565b5f8060408385031215614fbe575f80fd5b8235614fc981614bdc565b91506020830135614fd981614bdc565b809150509250929050565b5f8060408385031215614ff5575f80fd5b8235614fc981614e03565b5f60208284031215615010575f80fd5b8135613b1a81614e03565b602081525f613b1a6020830184614c0b565b64ffffffffff811681146148ce575f80fd5b5f805f805f805f80610100898b031215615057575f80fd5b883561506281614e03565b9750602089013561507281614bdc565b9650604089013561508281614e03565b95506150918a60608b01614da0565b945060a08901356150a181614bdc565b935060c08901356150b18161502d565b925060e08901356001600160401b038111156150cb575f80fd5b8901601f81018b136150db575f80fd5b80356001600160401b038111156150f0575f80fd5b8b6020828401011115615101575f80fd5b989b979a50959850939692959194602001935050565b5f8060408385031215615128575f80fd5b823561513381614bdc565b91506020830135614fd98161502d565b5f60208284031215615153575f80fd5b8151613b1a81614e03565b5f6020828403121561516e575f80fd5b815162ffffff81168114613b1a575f80fd5b805161518b81614bdc565b919050565b5f602082840312156151a0575f80fd5b8151613b1a81614bdc565b600181811c908216806151bf57607f821691505b6020821081036151dd57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f82601f8301126151f2575f80fd5b8151602083015f615205614ea284614e5f565b9050828152858383011115615218575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161518b8161502d565b5f6020828403121561524d575f80fd5b81516001600160401b03811115615262575f80fd5b820180840360e0811215615274575f80fd5b61527c614d09565b825161528781614bdc565b81526040601f198301121561529a575f80fd5b6152a2614ce1565b6020848101518252604085015181830152820152606083015191506001600160401b038211156152d0575f80fd5b6152dc868385016151e3565b60408201526152ed60808401615232565b60608201526152fe60a08401615232565b608082015261530f60c08401615232565b60a082015295945050505050565b8051801515811461518b575f80fd5b5f6020828403121561533c575f80fd5b613b1a8261531d565b6001600160601b0381511682525f6020820151805160208501526020810151604085015250604082015160e0606085015261538360e0850182614c0b565b905064ffffffffff606084015116608085015260808301516153ae60a086018264ffffffffff169052565b5060a083015164ffffffffff811660c0860152509392505050565b6001600160601b0384168152606060208201525f6153ea6060830185615345565b905060ff83166040830152949350505050565b60ff811681146148ce575f80fd5b805161518b816153fd565b5f60208284031215615426575f80fd5b8151613b1a816153fd565b5f60208284031215615441575f80fd5b8151613b1a8161502d565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f805f60608486031215615490575f80fd5b835161549b81614bdc565b60208501519093506154ac81614bdc565b6040850151909250614e5481614bdc565b6001600160401b03811681146148ce575f80fd5b5f602082840312156154e1575f80fd5b8151613b1a816154bd565b805161518b81614e03565b5f60208284031215615507575f80fd5b81516001600160401b0381111561551c575f80fd5b820160c0818503121561552d575f80fd5b615535614d09565b81516001600160401b0381111561554a575f80fd5b615556868285016151e3565b82525061556560208301615180565b6020820152615576604083016154ec565b6040820152615587606083016154ec565b6060820152615598608083016154ec565b608082015260a08201516001600160401b038111156155b5575f80fd5b6155c1868285016151e3565b60a083015250949350505050565b5f602082840312156155df575f80fd5b5051919050565b6001600160601b0383168152604060208201525f614cc56040830184615345565b5f8060408385031215615618575f80fd5b825161562381614e03565b6020840151909250614fd981614e03565b5f8085851115615642575f80fd5b8386111561564e575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561568c576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b80516001600160c01b03198116811461518b575f80fd5b805161ffff8116811461518b575f80fd5b5f6020828403121561570a575f80fd5b81516001600160401b0381111561571f575f80fd5b82016102008185031215615731575f80fd5b615739614d2b565b61574282615180565b815261575060208301615180565b6020820152615761604083016156d2565b6040820152615772606083016156d2565b606082015261578360808301615180565b608082015261579460a08301615180565b60a08201526157a560c08301615232565b60c082015260e08201516001600160401b038111156157c2575f80fd5b6157ce868285016151e3565b60e0830152506101008201516001600160401b038111156157ed575f80fd5b6157f9868285016151e3565b6101008301525061580d61012083016156e9565b61012082015261582061014083016156e9565b6101408201526158336101608301615180565b6101608201526158466101808301615180565b6101808201526158596101a08301615232565b6101a082015261586c6101c08301615232565b6101c082015261587f6101e08301615232565b6101e0820152949350505050565b5f6020828403121561589d575f80fd5b81516001600160401b038111156158b2575f80fd5b820160e081850312156158c3575f80fd5b6158cb614d4e565b6158d482615180565b81526158e260208301615180565b60208201526158f36040830161540b565b60408201526159046060830161531d565b6060820152615915608083016154ec565b608082015261592660a083016154ec565b60a082015260c08201516001600160401b03811115615943575f80fd5b61594f868285016151e3565b60c083015250949350505050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615984575f80fd5b61598d8361531d565b9150602083015163ffffffff81168114614fd9575f80fd5b601f8211156145dd57805f5260205f20601f840160051c810160208510156159ca5750805b601f840160051c820191505b81811015612ae6575f81556001016159d6565b81516001600160401b03811115615a0257615a02614ccd565b615a1681615a1084546151ab565b846159a5565b6020601f821160018114615a48575f8315615a315750848201515b5f19600385901b1c1916600184901b178455612ae6565b5f84815260208120601f198516915b82811015615a775787850151825560209485019460019092019101615a57565b5084821015615a9457868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122046c849d29f796dbdd49e7f4d97113d6ef00d4946f818a85ad3b7ec9246799ba864736f6c634300081a0033",
1015
+ "linkReferences": {
1016
+ "contracts/type/Amount.sol": {
1017
+ "AmountLib": [
1018
+ {
1019
+ "length": 20,
1020
+ "start": 4073
1021
+ },
1022
+ {
1023
+ "length": 20,
1024
+ "start": 4521
1025
+ },
1026
+ {
1027
+ "length": 20,
1028
+ "start": 4549
1029
+ },
1030
+ {
1031
+ "length": 20,
1032
+ "start": 4870
1033
+ },
1034
+ {
1035
+ "length": 20,
1036
+ "start": 7071
1037
+ },
1038
+ {
1039
+ "length": 20,
1040
+ "start": 7099
1041
+ },
1042
+ {
1043
+ "length": 20,
1044
+ "start": 7467
1045
+ },
1046
+ {
1047
+ "length": 20,
1048
+ "start": 7988
1049
+ },
1050
+ {
1051
+ "length": 20,
1052
+ "start": 8210
1053
+ },
1054
+ {
1055
+ "length": 20,
1056
+ "start": 12749
1057
+ },
1058
+ {
1059
+ "length": 20,
1060
+ "start": 12888
1061
+ },
1062
+ {
1063
+ "length": 20,
1064
+ "start": 15391
1065
+ },
1066
+ {
1067
+ "length": 20,
1068
+ "start": 15524
1069
+ },
1070
+ {
1071
+ "length": 20,
1072
+ "start": 15598
1073
+ },
1074
+ {
1075
+ "length": 20,
1076
+ "start": 16293
1077
+ }
1078
+ ]
1079
+ },
1080
+ "contracts/type/NftId.sol": {
1081
+ "NftIdLib": [
1082
+ {
1083
+ "length": 20,
1084
+ "start": 2123
1085
+ },
1086
+ {
1087
+ "length": 20,
1088
+ "start": 2740
1089
+ },
1090
+ {
1091
+ "length": 20,
1092
+ "start": 9637
1093
+ },
1094
+ {
1095
+ "length": 20,
1096
+ "start": 11759
1097
+ },
1098
+ {
1099
+ "length": 20,
1100
+ "start": 14758
1101
+ },
1102
+ {
1103
+ "length": 20,
1104
+ "start": 15251
1105
+ }
1106
+ ]
1107
+ },
1108
+ "contracts/type/RoleId.sol": {
1109
+ "RoleIdLib": [
1110
+ {
1111
+ "length": 20,
1112
+ "start": 8755
1113
+ }
1114
+ ]
1115
+ },
1116
+ "contracts/type/Seconds.sol": {
1117
+ "SecondsLib": [
1118
+ {
1119
+ "length": 20,
1120
+ "start": 13987
1121
+ }
1122
+ ]
1123
+ },
1124
+ "contracts/type/Timestamp.sol": {
1125
+ "TimestampLib": [
1126
+ {
1127
+ "length": 20,
1128
+ "start": 3635
1129
+ },
1130
+ {
1131
+ "length": 20,
1132
+ "start": 3795
1133
+ },
1134
+ {
1135
+ "length": 20,
1136
+ "start": 6107
1137
+ },
1138
+ {
1139
+ "length": 20,
1140
+ "start": 12286
1141
+ },
1142
+ {
1143
+ "length": 20,
1144
+ "start": 12392
1145
+ },
1146
+ {
1147
+ "length": 20,
1148
+ "start": 12534
1149
+ },
1150
+ {
1151
+ "length": 20,
1152
+ "start": 13821
1153
+ },
1154
+ {
1155
+ "length": 20,
1156
+ "start": 14151
1157
+ },
1158
+ {
1159
+ "length": 20,
1160
+ "start": 16580
1161
+ },
1162
+ {
1163
+ "length": 20,
1164
+ "start": 16690
1165
+ }
1166
+ ]
1167
+ },
1168
+ "contracts/type/Version.sol": {
1169
+ "VersionLib": [
1170
+ {
1171
+ "length": 20,
1172
+ "start": 1969
1173
+ },
1174
+ {
1175
+ "length": 20,
1176
+ "start": 5067
1177
+ }
1178
+ ],
1179
+ "VersionPartLib": [
1180
+ {
1181
+ "length": 20,
1182
+ "start": 8803
1183
+ },
1184
+ {
1185
+ "length": 20,
1186
+ "start": 18166
1187
+ }
1188
+ ]
1189
+ }
1190
+ },
1191
+ "deployedLinkReferences": {
1192
+ "contracts/type/Amount.sol": {
1193
+ "AmountLib": [
1194
+ {
1195
+ "length": 20,
1196
+ "start": 3859
1197
+ },
1198
+ {
1199
+ "length": 20,
1200
+ "start": 4307
1201
+ },
1202
+ {
1203
+ "length": 20,
1204
+ "start": 4335
1205
+ },
1206
+ {
1207
+ "length": 20,
1208
+ "start": 4656
1209
+ },
1210
+ {
1211
+ "length": 20,
1212
+ "start": 6857
1213
+ },
1214
+ {
1215
+ "length": 20,
1216
+ "start": 6885
1217
+ },
1218
+ {
1219
+ "length": 20,
1220
+ "start": 7253
1221
+ },
1222
+ {
1223
+ "length": 20,
1224
+ "start": 7774
1225
+ },
1226
+ {
1227
+ "length": 20,
1228
+ "start": 7996
1229
+ },
1230
+ {
1231
+ "length": 20,
1232
+ "start": 12535
1233
+ },
1234
+ {
1235
+ "length": 20,
1236
+ "start": 12674
1237
+ },
1238
+ {
1239
+ "length": 20,
1240
+ "start": 15177
1241
+ },
1242
+ {
1243
+ "length": 20,
1244
+ "start": 15310
1245
+ },
1246
+ {
1247
+ "length": 20,
1248
+ "start": 15384
1249
+ },
1250
+ {
1251
+ "length": 20,
1252
+ "start": 16079
1253
+ }
1254
+ ]
1255
+ },
1256
+ "contracts/type/NftId.sol": {
1257
+ "NftIdLib": [
1258
+ {
1259
+ "length": 20,
1260
+ "start": 1909
1261
+ },
1262
+ {
1263
+ "length": 20,
1264
+ "start": 2526
1265
+ },
1266
+ {
1267
+ "length": 20,
1268
+ "start": 9423
1269
+ },
1270
+ {
1271
+ "length": 20,
1272
+ "start": 11545
1273
+ },
1274
+ {
1275
+ "length": 20,
1276
+ "start": 14544
1277
+ },
1278
+ {
1279
+ "length": 20,
1280
+ "start": 15037
1281
+ }
1282
+ ]
1283
+ },
1284
+ "contracts/type/RoleId.sol": {
1285
+ "RoleIdLib": [
1286
+ {
1287
+ "length": 20,
1288
+ "start": 8541
1289
+ }
1290
+ ]
1291
+ },
1292
+ "contracts/type/Seconds.sol": {
1293
+ "SecondsLib": [
1294
+ {
1295
+ "length": 20,
1296
+ "start": 13773
1297
+ }
1298
+ ]
1299
+ },
1300
+ "contracts/type/Timestamp.sol": {
1301
+ "TimestampLib": [
1302
+ {
1303
+ "length": 20,
1304
+ "start": 3421
1305
+ },
1306
+ {
1307
+ "length": 20,
1308
+ "start": 3581
1309
+ },
1310
+ {
1311
+ "length": 20,
1312
+ "start": 5893
1313
+ },
1314
+ {
1315
+ "length": 20,
1316
+ "start": 12072
1317
+ },
1318
+ {
1319
+ "length": 20,
1320
+ "start": 12178
1321
+ },
1322
+ {
1323
+ "length": 20,
1324
+ "start": 12320
1325
+ },
1326
+ {
1327
+ "length": 20,
1328
+ "start": 13607
1329
+ },
1330
+ {
1331
+ "length": 20,
1332
+ "start": 13937
1333
+ },
1334
+ {
1335
+ "length": 20,
1336
+ "start": 16366
1337
+ },
1338
+ {
1339
+ "length": 20,
1340
+ "start": 16476
1341
+ }
1342
+ ]
1343
+ },
1344
+ "contracts/type/Version.sol": {
1345
+ "VersionLib": [
1346
+ {
1347
+ "length": 20,
1348
+ "start": 1755
1349
+ },
1350
+ {
1351
+ "length": 20,
1352
+ "start": 4853
1353
+ }
1354
+ ],
1355
+ "VersionPartLib": [
1356
+ {
1357
+ "length": 20,
1358
+ "start": 8589
1359
+ },
1360
+ {
1361
+ "length": 20,
1362
+ "start": 17952
1363
+ }
1364
+ ]
1365
+ }
1366
+ }
1367
+ }