@etherisc/gif-next 0.0.2-91f98cf-477 → 0.0.2-92c50c2-136

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (711) hide show
  1. package/README.md +237 -41
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1378 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +826 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +827 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +709 -0
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +266 -1608
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +769 -0
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +538 -1958
  20. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +228 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1701 -0
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1220 -0
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +758 -0
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3597 -0
  32. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  34. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  35. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  36. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  37. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  38. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  40. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  41. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
  42. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  43. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  44. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  45. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  46. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  47. package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
  48. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  49. package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
  50. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  51. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  52. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  53. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  54. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  55. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  56. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  57. package/artifacts/contracts/{instance/base/ModuleBase.sol/ModuleBase.json → oracle/IOracle.sol/IOracle.json} +2 -2
  58. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  59. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
  60. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  61. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
  62. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  63. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
  64. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  65. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
  66. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  67. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
  68. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  69. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1134 -0
  70. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  71. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +754 -0
  72. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  73. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → pool/IBundleService.sol/IBundleService.json} +380 -307
  74. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  75. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
  76. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  77. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
  78. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  79. package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
  80. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  81. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
  82. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  83. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
  84. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  85. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
  86. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  87. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
  88. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  89. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
  90. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  91. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
  92. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  93. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +512 -0
  94. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  95. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
  96. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  97. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
  98. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  99. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
  100. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  101. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
  102. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  103. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → product/IProductService.sol/IProductService.json} +195 -171
  104. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  105. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
  106. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  107. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
  108. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  109. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1012 -0
  110. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  112. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  113. package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
  114. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  115. package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
  116. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  117. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
  118. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  119. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  120. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  121. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +678 -77
  122. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  123. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1123 -0
  124. package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  125. package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  126. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  127. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  128. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  129. package/artifacts/contracts/registry/Registry.sol/Registry.json +865 -107
  130. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1901 -0
  132. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  133. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
  134. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  135. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
  136. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  137. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  138. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  139. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1177 -0
  140. package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  141. package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  142. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  143. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +206 -0
  144. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  145. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  146. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  147. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1559 -0
  148. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
  149. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
  150. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
  151. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
  152. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
  153. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
  154. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
  155. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
  156. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
  157. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
  158. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  159. package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
  160. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  161. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1511 -0
  162. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  163. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +796 -0
  164. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  165. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
  166. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  167. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  168. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  169. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1189 -0
  170. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
  171. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
  172. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
  173. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
  174. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  175. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
  176. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  177. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +880 -0
  178. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  179. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
  180. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  181. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
  182. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  183. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  184. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  185. package/artifacts/contracts/{instance/module/component/IComponent.sol/IComponentModule.json → shared/INftOwnable.sol/INftOwnable.json} +66 -52
  186. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  187. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  188. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  189. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
  190. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  191. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  192. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  193. package/artifacts/contracts/{instance/service/IDistributionService.sol/IDistributionService.json → shared/IService.sol/IService.json} +171 -150
  194. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  195. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
  196. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  197. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  198. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  199. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
  200. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  201. package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +102 -165
  202. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  203. package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
  204. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
  205. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
  206. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  207. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  208. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  209. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  210. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  211. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
  212. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  213. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
  214. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  215. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  216. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  217. package/artifacts/contracts/shared/Service.sol/Service.json +507 -0
  218. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  219. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  220. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  221. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  222. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  223. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
  224. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  225. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  226. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  227. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  228. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  229. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +460 -0
  230. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  231. package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
  232. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  234. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  235. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
  236. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  237. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  238. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  239. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
  240. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  241. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
  242. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  243. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2237 -0
  244. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  245. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
  246. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  247. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  248. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  249. package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
  250. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  251. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  252. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  253. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  254. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  256. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  258. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  260. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  262. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  263. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  264. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +186 -0
  266. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  268. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  270. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  272. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  274. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +266 -0
  276. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
  278. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  280. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  282. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  283. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  284. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  286. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  287. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
  288. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  289. package/artifacts/contracts/type/UFixed.sol/MathLib.json +10 -0
  290. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  291. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
  292. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  294. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
  296. package/contracts/distribution/Distribution.sol +261 -0
  297. package/contracts/distribution/DistributionService.sol +297 -0
  298. package/contracts/distribution/DistributionServiceManager.sol +42 -0
  299. package/contracts/distribution/IDistributionComponent.sol +66 -0
  300. package/contracts/distribution/IDistributionService.sol +81 -0
  301. package/contracts/instance/BundleManager.sol +126 -0
  302. package/contracts/instance/IInstance.sol +80 -46
  303. package/contracts/instance/IInstanceService.sol +97 -0
  304. package/contracts/instance/Instance.sol +248 -59
  305. package/contracts/instance/InstanceAdmin.sol +331 -0
  306. package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
  307. package/contracts/instance/InstanceReader.sol +392 -0
  308. package/contracts/instance/InstanceService.sol +439 -0
  309. package/contracts/instance/InstanceServiceManager.sol +44 -0
  310. package/contracts/instance/InstanceStore.sol +272 -0
  311. package/contracts/instance/base/BalanceStore.sol +123 -0
  312. package/contracts/instance/base/Cloneable.sol +28 -0
  313. package/contracts/instance/base/ObjectCounter.sol +21 -0
  314. package/contracts/instance/base/ObjectLifecycle.sol +106 -0
  315. package/contracts/instance/base/ObjectManager.sol +80 -0
  316. package/contracts/instance/module/IAccess.sol +46 -0
  317. package/contracts/instance/module/IBundle.sol +20 -0
  318. package/contracts/instance/module/IComponents.sol +52 -0
  319. package/contracts/instance/module/IDistribution.sol +42 -0
  320. package/contracts/instance/module/IPolicy.sol +84 -0
  321. package/contracts/instance/module/IRisk.sol +11 -0
  322. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  323. package/contracts/oracle/IOracle.sol +20 -0
  324. package/contracts/oracle/IOracleComponent.sol +32 -0
  325. package/contracts/oracle/IOracleService.sol +65 -0
  326. package/contracts/oracle/Oracle.sol +145 -0
  327. package/contracts/oracle/OracleService.sol +278 -0
  328. package/contracts/oracle/OracleServiceManager.sol +42 -0
  329. package/contracts/pool/BundleService.sol +296 -0
  330. package/contracts/pool/BundleServiceManager.sol +42 -0
  331. package/contracts/pool/IBundleService.sol +106 -0
  332. package/contracts/pool/IPoolComponent.sol +112 -0
  333. package/contracts/pool/IPoolService.sol +150 -0
  334. package/contracts/pool/Pool.sol +299 -0
  335. package/contracts/pool/PoolService.sol +452 -0
  336. package/contracts/pool/PoolServiceManager.sol +42 -0
  337. package/contracts/product/ApplicationService.sol +254 -0
  338. package/contracts/product/ApplicationServiceManager.sol +38 -0
  339. package/contracts/product/ClaimService.sol +442 -0
  340. package/contracts/product/ClaimServiceManager.sol +38 -0
  341. package/contracts/product/IApplicationService.sol +62 -0
  342. package/contracts/product/IClaimService.sol +99 -0
  343. package/contracts/product/IPolicyService.sol +78 -0
  344. package/contracts/product/IPricingService.sol +39 -0
  345. package/contracts/product/IProductComponent.sol +42 -0
  346. package/contracts/product/IProductService.sol +33 -0
  347. package/contracts/product/PolicyService.sol +475 -0
  348. package/contracts/product/PolicyServiceManager.sol +42 -0
  349. package/contracts/product/PricingService.sol +300 -0
  350. package/contracts/product/PricingServiceManager.sol +42 -0
  351. package/contracts/product/Product.sol +377 -0
  352. package/contracts/product/ProductService.sol +124 -0
  353. package/contracts/product/ProductServiceManager.sol +42 -0
  354. package/contracts/registry/ChainNft.sol +95 -37
  355. package/contracts/registry/IRegistry.sol +95 -28
  356. package/contracts/registry/IRegistryService.sol +69 -0
  357. package/contracts/registry/IServiceAuthorization.sol +38 -0
  358. package/contracts/registry/ITransferInterceptor.sol +7 -0
  359. package/contracts/registry/Registry.sol +482 -281
  360. package/contracts/registry/RegistryAdmin.sol +335 -0
  361. package/contracts/registry/RegistryService.sol +266 -0
  362. package/contracts/registry/RegistryServiceManager.sol +53 -0
  363. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  364. package/contracts/registry/ReleaseManager.sol +503 -0
  365. package/contracts/registry/ServiceAuthorization.sol +90 -0
  366. package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
  367. package/contracts/registry/TokenRegistry.sol +315 -0
  368. package/contracts/shared/AccessAdmin.sol +759 -0
  369. package/contracts/shared/AccessManagerCustom.sol +741 -0
  370. package/contracts/shared/AccessManagerExtended.sol +481 -0
  371. package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
  372. package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
  373. package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
  374. package/contracts/shared/Component.sol +281 -0
  375. package/contracts/shared/ComponentService.sol +620 -0
  376. package/contracts/shared/ComponentServiceManager.sol +35 -0
  377. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  378. package/contracts/shared/ERC165.sol +15 -9
  379. package/contracts/shared/IAccessAdmin.sol +168 -0
  380. package/contracts/shared/IAccessManagerExtended.sol +74 -0
  381. package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
  382. package/contracts/shared/IComponent.sol +70 -0
  383. package/contracts/shared/IComponentService.sol +102 -0
  384. package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
  385. package/contracts/shared/IKeyValueStore.sol +54 -0
  386. package/contracts/{instance/base → shared}/ILifecycle.sol +4 -5
  387. package/contracts/shared/INftOwnable.sol +23 -0
  388. package/contracts/shared/IPolicyHolder.sol +45 -0
  389. package/contracts/shared/IRegisterable.sol +10 -19
  390. package/contracts/shared/IRegistryLinked.sol +11 -0
  391. package/contracts/shared/IService.sol +25 -0
  392. package/contracts/shared/IVersionable.sol +38 -37
  393. package/contracts/shared/InitializableCustom.sol +177 -0
  394. package/contracts/shared/InstanceLinkedComponent.sol +144 -0
  395. package/contracts/shared/KeyValueStore.sol +131 -0
  396. package/contracts/shared/Lifecycle.sol +77 -0
  397. package/contracts/shared/NftIdSetManager.sol +65 -0
  398. package/contracts/shared/NftOwnable.sol +107 -0
  399. package/contracts/shared/PolicyHolder.sol +102 -0
  400. package/contracts/shared/ProxyManager.sol +199 -0
  401. package/contracts/shared/Registerable.sol +54 -65
  402. package/contracts/shared/RegistryLinked.sol +43 -0
  403. package/contracts/shared/Service.sol +83 -0
  404. package/contracts/shared/TokenHandler.sol +58 -0
  405. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  406. package/contracts/shared/Versionable.sol +38 -68
  407. package/contracts/staking/IStaking.sol +168 -0
  408. package/contracts/staking/IStakingService.sol +153 -0
  409. package/contracts/staking/StakeManagerLib.sol +231 -0
  410. package/contracts/staking/Staking.sol +513 -0
  411. package/contracts/staking/StakingLifecycle.sol +23 -0
  412. package/contracts/staking/StakingManager.sol +54 -0
  413. package/contracts/staking/StakingReader.sol +187 -0
  414. package/contracts/staking/StakingService.sol +411 -0
  415. package/contracts/staking/StakingServiceManager.sol +44 -0
  416. package/contracts/staking/StakingStore.sol +615 -0
  417. package/contracts/staking/TargetManagerLib.sol +207 -0
  418. package/contracts/{types → type}/AddressSet.sol +1 -1
  419. package/contracts/type/Amount.sol +128 -0
  420. package/contracts/{types → type}/Blocknumber.sol +21 -3
  421. package/contracts/type/ClaimId.sol +75 -0
  422. package/contracts/type/DistributorType.sol +55 -0
  423. package/contracts/type/Fee.sol +66 -0
  424. package/contracts/{types → type}/Key32.sol +8 -3
  425. package/contracts/{types → type}/NftId.sol +21 -15
  426. package/contracts/type/NftIdSet.sol +62 -0
  427. package/contracts/type/ObjectType.sol +241 -0
  428. package/contracts/type/PayoutId.sol +82 -0
  429. package/contracts/type/Referral.sol +89 -0
  430. package/contracts/type/RequestId.sol +75 -0
  431. package/contracts/{types → type}/RiskId.sol +1 -1
  432. package/contracts/type/RoleId.sol +201 -0
  433. package/contracts/type/Seconds.sol +81 -0
  434. package/contracts/type/Selector.sol +102 -0
  435. package/contracts/{types → type}/StateId.sol +39 -5
  436. package/contracts/type/String.sol +53 -0
  437. package/contracts/{types → type}/Timestamp.sol +27 -14
  438. package/contracts/{types → type}/UFixed.sol +129 -12
  439. package/contracts/{types → type}/Version.sol +15 -2
  440. package/package.json +11 -7
  441. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  442. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  443. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  444. package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -405
  445. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  446. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -174
  447. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  448. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -340
  449. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  450. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -487
  451. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  452. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -370
  453. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  454. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -578
  455. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  456. package/artifacts/contracts/components/Product.sol/Product.json +0 -444
  457. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  458. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  459. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  460. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  461. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  462. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  463. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  464. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  465. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  466. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  467. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  468. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  469. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  470. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  471. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  472. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  473. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  474. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  475. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  476. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  477. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  478. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  479. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  480. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  481. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  482. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  483. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  484. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  485. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  486. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  487. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  488. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  489. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  490. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  491. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  492. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  493. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  494. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  495. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
  496. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  497. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  498. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  499. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  500. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  501. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  502. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -710
  503. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  504. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  505. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  506. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  507. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  508. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  509. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  510. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  511. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  512. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  513. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  514. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
  515. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  516. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  517. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
  518. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  519. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
  520. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  521. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  522. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  523. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
  524. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
  525. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
  526. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
  527. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
  528. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  529. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  530. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -284
  531. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  532. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -284
  533. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  534. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  535. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  536. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
  537. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  538. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
  539. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  540. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  541. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
  542. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  543. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
  544. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  545. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  546. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  547. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -511
  548. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  549. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  550. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  551. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -511
  552. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  553. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -531
  554. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  555. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -420
  556. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  557. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +0 -364
  558. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  559. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  560. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -440
  561. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  562. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  563. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -543
  564. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  565. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -858
  566. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  567. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  568. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  569. package/artifacts/contracts/registry/RegistryUpgradeable.sol/Registry.dbg.json +0 -4
  570. package/artifacts/contracts/registry/RegistryUpgradeable.sol/Registry.json +0 -495
  571. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  572. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  573. package/artifacts/contracts/shared/Proxy.sol/Proxy.dbg.json +0 -4
  574. package/artifacts/contracts/shared/Proxy.sol/Proxy.json +0 -178
  575. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +0 -4
  576. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +0 -129
  577. package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.dbg.json +0 -4
  578. package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.json +0 -187
  579. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
  580. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -405
  581. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  582. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  583. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  584. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -578
  585. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  586. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -575
  587. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  588. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  589. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  590. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  591. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  592. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  593. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  594. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  595. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  596. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  597. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  598. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  599. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  600. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  601. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  602. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  603. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  604. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  605. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  606. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  607. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  608. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  609. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  610. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  611. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  613. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  614. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  615. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  617. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
  619. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  621. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  622. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  623. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  624. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  625. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  626. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  627. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  628. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  629. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  630. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  631. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  632. package/contracts/components/BaseComponent.sol +0 -94
  633. package/contracts/components/Distribution.sol +0 -132
  634. package/contracts/components/IBaseComponent.sol +0 -19
  635. package/contracts/components/IDistributionComponent.sol +0 -47
  636. package/contracts/components/IPoolComponent.sol +0 -71
  637. package/contracts/components/IProductComponent.sol +0 -38
  638. package/contracts/components/Pool.sol +0 -235
  639. package/contracts/components/Product.sol +0 -227
  640. package/contracts/experiment/errors/Require.sol +0 -38
  641. package/contracts/experiment/errors/Revert.sol +0 -44
  642. package/contracts/experiment/inheritance/A.sol +0 -53
  643. package/contracts/experiment/inheritance/B.sol +0 -28
  644. package/contracts/experiment/inheritance/C.sol +0 -34
  645. package/contracts/experiment/inheritance/IA.sol +0 -13
  646. package/contracts/experiment/inheritance/IB.sol +0 -10
  647. package/contracts/experiment/inheritance/IC.sol +0 -12
  648. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  649. package/contracts/experiment/statemachine/ISM.sol +0 -25
  650. package/contracts/experiment/statemachine/README.md +0 -112
  651. package/contracts/experiment/statemachine/SM.sol +0 -57
  652. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  653. package/contracts/experiment/types/TypeA.sol +0 -47
  654. package/contracts/experiment/types/TypeB.sol +0 -29
  655. package/contracts/instance/IInstanceLinked.sol +0 -8
  656. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  657. package/contracts/instance/base/IInstanceBase.sol +0 -22
  658. package/contracts/instance/base/IKeyValueStore.sol +0 -50
  659. package/contracts/instance/base/IService.sol +0 -15
  660. package/contracts/instance/base/InstanceBase.sol +0 -91
  661. package/contracts/instance/base/KeyValueStore.sol +0 -161
  662. package/contracts/instance/base/Lifecycle.sol +0 -100
  663. package/contracts/instance/base/ModuleBase.sol +0 -57
  664. package/contracts/instance/base/ServiceBase.sol +0 -37
  665. package/contracts/instance/module/access/Access.sol +0 -149
  666. package/contracts/instance/module/access/IAccess.sol +0 -53
  667. package/contracts/instance/module/bundle/BundleModule.sol +0 -134
  668. package/contracts/instance/module/bundle/IBundle.sol +0 -53
  669. package/contracts/instance/module/component/ComponentModule.sol +0 -70
  670. package/contracts/instance/module/component/IComponent.sol +0 -28
  671. package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
  672. package/contracts/instance/module/distribution/IDistribution.sol +0 -10
  673. package/contracts/instance/module/policy/IPolicy.sol +0 -63
  674. package/contracts/instance/module/policy/PolicyModule.sol +0 -91
  675. package/contracts/instance/module/pool/IPoolModule.sol +0 -40
  676. package/contracts/instance/module/pool/PoolModule.sol +0 -90
  677. package/contracts/instance/module/risk/IRisk.sol +0 -26
  678. package/contracts/instance/module/risk/RiskModule.sol +0 -62
  679. package/contracts/instance/module/treasury/ITreasury.sol +0 -82
  680. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  681. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -138
  682. package/contracts/instance/service/ComponentOwnerService.sol +0 -157
  683. package/contracts/instance/service/DistributionService.sol +0 -59
  684. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  685. package/contracts/instance/service/IDistributionService.sol +0 -12
  686. package/contracts/instance/service/IPoolService.sol +0 -37
  687. package/contracts/instance/service/IProductService.sol +0 -107
  688. package/contracts/instance/service/PoolService.sol +0 -149
  689. package/contracts/instance/service/ProductService.sol +0 -509
  690. package/contracts/registry/IChainNft.sol +0 -21
  691. package/contracts/registry/IRegistryLinked.sol +0 -8
  692. package/contracts/registry/RegistryUpgradeable.sol +0 -415
  693. package/contracts/shared/IOwnable.sol +0 -6
  694. package/contracts/shared/Proxy.sol +0 -83
  695. package/contracts/shared/VersionableUpgradeable.sol +0 -108
  696. package/contracts/test/TestDistribution.sol +0 -21
  697. package/contracts/test/TestFee.sol +0 -25
  698. package/contracts/test/TestPool.sol +0 -25
  699. package/contracts/test/TestProduct.sol +0 -72
  700. package/contracts/test/TestRegisterable.sol +0 -19
  701. package/contracts/test/TestRoleId.sol +0 -14
  702. package/contracts/test/TestService.sol +0 -32
  703. package/contracts/test/TestToken.sol +0 -26
  704. package/contracts/test/TestVersion.sol +0 -44
  705. package/contracts/test/TestVersionable.sol +0 -17
  706. package/contracts/types/ChainId.sol +0 -38
  707. package/contracts/types/Fee.sol +0 -56
  708. package/contracts/types/NftIdSet.sol +0 -60
  709. package/contracts/types/ObjectType.sol +0 -131
  710. package/contracts/types/ReferralId.sol +0 -48
  711. package/contracts/types/RoleId.sol +0 -38
@@ -0,0 +1,1511 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ComponentService",
4
+ "sourceName": "contracts/shared/ComponentService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "component",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentServiceAlreadyRegistered",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "component",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorComponentServiceComponentLocked",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "component",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "ObjectType",
75
+ "name": "expectedType",
76
+ "type": "uint8"
77
+ },
78
+ {
79
+ "internalType": "ObjectType",
80
+ "name": "foundType",
81
+ "type": "uint8"
82
+ }
83
+ ],
84
+ "name": "ErrorComponentServiceComponentTypeInvalid",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "NftId",
91
+ "name": "instanceNftId",
92
+ "type": "uint96"
93
+ },
94
+ {
95
+ "internalType": "RoleId",
96
+ "name": "requiredRole",
97
+ "type": "uint64"
98
+ },
99
+ {
100
+ "internalType": "address",
101
+ "name": "sender",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "ErrorComponentServiceExpectedRoleMissing",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "internalType": "ObjectType",
117
+ "name": "requiredType",
118
+ "type": "uint8"
119
+ },
120
+ {
121
+ "internalType": "ObjectType",
122
+ "name": "componentType",
123
+ "type": "uint8"
124
+ }
125
+ ],
126
+ "name": "ErrorComponentServiceInvalidType",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [],
131
+ "name": "ErrorComponentServiceNewWalletAddressZero",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "address",
138
+ "name": "component",
139
+ "type": "address"
140
+ }
141
+ ],
142
+ "name": "ErrorComponentServiceNotComponent",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "component",
150
+ "type": "address"
151
+ },
152
+ {
153
+ "internalType": "address",
154
+ "name": "initialOwner",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "internalType": "address",
159
+ "name": "sender",
160
+ "type": "address"
161
+ }
162
+ ],
163
+ "name": "ErrorComponentServiceSenderNotOwner",
164
+ "type": "error"
165
+ },
166
+ {
167
+ "inputs": [
168
+ {
169
+ "internalType": "address",
170
+ "name": "sender",
171
+ "type": "address"
172
+ }
173
+ ],
174
+ "name": "ErrorComponentServiceSenderNotService",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [],
179
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
180
+ "type": "error"
181
+ },
182
+ {
183
+ "inputs": [],
184
+ "name": "ErrorComponentServiceWalletAddressZero",
185
+ "type": "error"
186
+ },
187
+ {
188
+ "inputs": [
189
+ {
190
+ "internalType": "NftId",
191
+ "name": "componentNftId",
192
+ "type": "uint96"
193
+ }
194
+ ],
195
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
196
+ "type": "error"
197
+ },
198
+ {
199
+ "inputs": [
200
+ {
201
+ "internalType": "NftId",
202
+ "name": "componentNftId",
203
+ "type": "uint96"
204
+ },
205
+ {
206
+ "internalType": "ObjectType",
207
+ "name": "expectedType",
208
+ "type": "uint8"
209
+ },
210
+ {
211
+ "internalType": "ObjectType",
212
+ "name": "actualType",
213
+ "type": "uint8"
214
+ }
215
+ ],
216
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [
221
+ {
222
+ "internalType": "NftId",
223
+ "name": "nftId",
224
+ "type": "uint96"
225
+ }
226
+ ],
227
+ "name": "ErrorNftOwnableAlreadyLinked",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [
232
+ {
233
+ "internalType": "address",
234
+ "name": "contractAddress",
235
+ "type": "address"
236
+ }
237
+ ],
238
+ "name": "ErrorNftOwnableContractNotRegistered",
239
+ "type": "error"
240
+ },
241
+ {
242
+ "inputs": [],
243
+ "name": "ErrorNftOwnableInitialOwnerZero",
244
+ "type": "error"
245
+ },
246
+ {
247
+ "inputs": [
248
+ {
249
+ "internalType": "address",
250
+ "name": "account",
251
+ "type": "address"
252
+ }
253
+ ],
254
+ "name": "ErrorNftOwnableNotOwner",
255
+ "type": "error"
256
+ },
257
+ {
258
+ "inputs": [
259
+ {
260
+ "internalType": "address",
261
+ "name": "registryAddress",
262
+ "type": "address"
263
+ }
264
+ ],
265
+ "name": "ErrorNotRegistry",
266
+ "type": "error"
267
+ },
268
+ {
269
+ "inputs": [],
270
+ "name": "ErrorServiceNotImplemented",
271
+ "type": "error"
272
+ },
273
+ {
274
+ "inputs": [],
275
+ "name": "InvalidInitialization",
276
+ "type": "error"
277
+ },
278
+ {
279
+ "inputs": [],
280
+ "name": "NotInitializing",
281
+ "type": "error"
282
+ },
283
+ {
284
+ "anonymous": false,
285
+ "inputs": [
286
+ {
287
+ "indexed": false,
288
+ "internalType": "address",
289
+ "name": "authority",
290
+ "type": "address"
291
+ }
292
+ ],
293
+ "name": "AuthorityUpdated",
294
+ "type": "event"
295
+ },
296
+ {
297
+ "anonymous": false,
298
+ "inputs": [
299
+ {
300
+ "indexed": false,
301
+ "internalType": "uint64",
302
+ "name": "version",
303
+ "type": "uint64"
304
+ }
305
+ ],
306
+ "name": "Initialized",
307
+ "type": "event"
308
+ },
309
+ {
310
+ "anonymous": false,
311
+ "inputs": [
312
+ {
313
+ "indexed": false,
314
+ "internalType": "NftId",
315
+ "name": "distributionNftId",
316
+ "type": "uint96"
317
+ }
318
+ ],
319
+ "name": "LogComponentServiceDistributionFeesUpdated",
320
+ "type": "event"
321
+ },
322
+ {
323
+ "anonymous": false,
324
+ "inputs": [
325
+ {
326
+ "indexed": false,
327
+ "internalType": "NftId",
328
+ "name": "poolNftId",
329
+ "type": "uint96"
330
+ }
331
+ ],
332
+ "name": "LogComponentServicePoolFeesUpdated",
333
+ "type": "event"
334
+ },
335
+ {
336
+ "anonymous": false,
337
+ "inputs": [
338
+ {
339
+ "indexed": false,
340
+ "internalType": "NftId",
341
+ "name": "productNftId",
342
+ "type": "uint96"
343
+ }
344
+ ],
345
+ "name": "LogComponentServiceProductFeesUpdated",
346
+ "type": "event"
347
+ },
348
+ {
349
+ "anonymous": false,
350
+ "inputs": [
351
+ {
352
+ "indexed": false,
353
+ "internalType": "NftId",
354
+ "name": "nftId",
355
+ "type": "uint96"
356
+ },
357
+ {
358
+ "indexed": false,
359
+ "internalType": "string",
360
+ "name": "feeName",
361
+ "type": "string"
362
+ },
363
+ {
364
+ "indexed": false,
365
+ "internalType": "UFixed",
366
+ "name": "previousFractionalFee",
367
+ "type": "uint256"
368
+ },
369
+ {
370
+ "indexed": false,
371
+ "internalType": "uint256",
372
+ "name": "previousFixedFee",
373
+ "type": "uint256"
374
+ },
375
+ {
376
+ "indexed": false,
377
+ "internalType": "UFixed",
378
+ "name": "newFractionalFee",
379
+ "type": "uint256"
380
+ },
381
+ {
382
+ "indexed": false,
383
+ "internalType": "uint256",
384
+ "name": "newFixedFee",
385
+ "type": "uint256"
386
+ }
387
+ ],
388
+ "name": "LogComponentServiceUpdateFee",
389
+ "type": "event"
390
+ },
391
+ {
392
+ "anonymous": false,
393
+ "inputs": [
394
+ {
395
+ "indexed": false,
396
+ "internalType": "NftId",
397
+ "name": "componentNftId",
398
+ "type": "uint96"
399
+ },
400
+ {
401
+ "indexed": false,
402
+ "internalType": "address",
403
+ "name": "currentWallet",
404
+ "type": "address"
405
+ },
406
+ {
407
+ "indexed": false,
408
+ "internalType": "address",
409
+ "name": "newWallet",
410
+ "type": "address"
411
+ }
412
+ ],
413
+ "name": "LogComponentServiceWalletAddressChanged",
414
+ "type": "event"
415
+ },
416
+ {
417
+ "inputs": [],
418
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
419
+ "outputs": [
420
+ {
421
+ "internalType": "bytes32",
422
+ "name": "",
423
+ "type": "bytes32"
424
+ }
425
+ ],
426
+ "stateMutability": "view",
427
+ "type": "function"
428
+ },
429
+ {
430
+ "inputs": [],
431
+ "name": "REGISTERABLE_LOCATION_V1",
432
+ "outputs": [
433
+ {
434
+ "internalType": "bytes32",
435
+ "name": "",
436
+ "type": "bytes32"
437
+ }
438
+ ],
439
+ "stateMutability": "view",
440
+ "type": "function"
441
+ },
442
+ {
443
+ "inputs": [],
444
+ "name": "authority",
445
+ "outputs": [
446
+ {
447
+ "internalType": "address",
448
+ "name": "",
449
+ "type": "address"
450
+ }
451
+ ],
452
+ "stateMutability": "view",
453
+ "type": "function"
454
+ },
455
+ {
456
+ "inputs": [
457
+ {
458
+ "internalType": "contract InstanceStore",
459
+ "name": "instanceStore",
460
+ "type": "address"
461
+ },
462
+ {
463
+ "internalType": "NftId",
464
+ "name": "bundleNftId",
465
+ "type": "uint96"
466
+ },
467
+ {
468
+ "internalType": "Amount",
469
+ "name": "amount",
470
+ "type": "uint96"
471
+ },
472
+ {
473
+ "internalType": "Amount",
474
+ "name": "feeAmount",
475
+ "type": "uint96"
476
+ }
477
+ ],
478
+ "name": "decreaseBundleBalance",
479
+ "outputs": [],
480
+ "stateMutability": "nonpayable",
481
+ "type": "function"
482
+ },
483
+ {
484
+ "inputs": [
485
+ {
486
+ "internalType": "contract InstanceStore",
487
+ "name": "instanceStore",
488
+ "type": "address"
489
+ },
490
+ {
491
+ "internalType": "NftId",
492
+ "name": "distributionNftId",
493
+ "type": "uint96"
494
+ },
495
+ {
496
+ "internalType": "Amount",
497
+ "name": "amount",
498
+ "type": "uint96"
499
+ },
500
+ {
501
+ "internalType": "Amount",
502
+ "name": "feeAmount",
503
+ "type": "uint96"
504
+ }
505
+ ],
506
+ "name": "decreaseDistributionBalance",
507
+ "outputs": [],
508
+ "stateMutability": "nonpayable",
509
+ "type": "function"
510
+ },
511
+ {
512
+ "inputs": [
513
+ {
514
+ "internalType": "contract InstanceStore",
515
+ "name": "instanceStore",
516
+ "type": "address"
517
+ },
518
+ {
519
+ "internalType": "NftId",
520
+ "name": "poolNftId",
521
+ "type": "uint96"
522
+ },
523
+ {
524
+ "internalType": "Amount",
525
+ "name": "amount",
526
+ "type": "uint96"
527
+ },
528
+ {
529
+ "internalType": "Amount",
530
+ "name": "feeAmount",
531
+ "type": "uint96"
532
+ }
533
+ ],
534
+ "name": "decreasePoolBalance",
535
+ "outputs": [],
536
+ "stateMutability": "nonpayable",
537
+ "type": "function"
538
+ },
539
+ {
540
+ "inputs": [
541
+ {
542
+ "internalType": "contract InstanceStore",
543
+ "name": "instanceStore",
544
+ "type": "address"
545
+ },
546
+ {
547
+ "internalType": "NftId",
548
+ "name": "productNftId",
549
+ "type": "uint96"
550
+ },
551
+ {
552
+ "internalType": "Amount",
553
+ "name": "feeAmount",
554
+ "type": "uint96"
555
+ }
556
+ ],
557
+ "name": "decreaseProductFees",
558
+ "outputs": [],
559
+ "stateMutability": "nonpayable",
560
+ "type": "function"
561
+ },
562
+ {
563
+ "inputs": [],
564
+ "name": "getDomain",
565
+ "outputs": [
566
+ {
567
+ "internalType": "ObjectType",
568
+ "name": "serviceDomain",
569
+ "type": "uint8"
570
+ }
571
+ ],
572
+ "stateMutability": "pure",
573
+ "type": "function"
574
+ },
575
+ {
576
+ "inputs": [],
577
+ "name": "getInitialInfo",
578
+ "outputs": [
579
+ {
580
+ "components": [
581
+ {
582
+ "internalType": "NftId",
583
+ "name": "nftId",
584
+ "type": "uint96"
585
+ },
586
+ {
587
+ "internalType": "NftId",
588
+ "name": "parentNftId",
589
+ "type": "uint96"
590
+ },
591
+ {
592
+ "internalType": "ObjectType",
593
+ "name": "objectType",
594
+ "type": "uint8"
595
+ },
596
+ {
597
+ "internalType": "bool",
598
+ "name": "isInterceptor",
599
+ "type": "bool"
600
+ },
601
+ {
602
+ "internalType": "address",
603
+ "name": "objectAddress",
604
+ "type": "address"
605
+ },
606
+ {
607
+ "internalType": "address",
608
+ "name": "initialOwner",
609
+ "type": "address"
610
+ },
611
+ {
612
+ "internalType": "bytes",
613
+ "name": "data",
614
+ "type": "bytes"
615
+ }
616
+ ],
617
+ "internalType": "struct IRegistry.ObjectInfo",
618
+ "name": "info",
619
+ "type": "tuple"
620
+ }
621
+ ],
622
+ "stateMutability": "view",
623
+ "type": "function"
624
+ },
625
+ {
626
+ "inputs": [],
627
+ "name": "getNftId",
628
+ "outputs": [
629
+ {
630
+ "internalType": "NftId",
631
+ "name": "",
632
+ "type": "uint96"
633
+ }
634
+ ],
635
+ "stateMutability": "view",
636
+ "type": "function"
637
+ },
638
+ {
639
+ "inputs": [],
640
+ "name": "getOwner",
641
+ "outputs": [
642
+ {
643
+ "internalType": "address",
644
+ "name": "",
645
+ "type": "address"
646
+ }
647
+ ],
648
+ "stateMutability": "view",
649
+ "type": "function"
650
+ },
651
+ {
652
+ "inputs": [],
653
+ "name": "getRegistry",
654
+ "outputs": [
655
+ {
656
+ "internalType": "contract IRegistry",
657
+ "name": "",
658
+ "type": "address"
659
+ }
660
+ ],
661
+ "stateMutability": "view",
662
+ "type": "function"
663
+ },
664
+ {
665
+ "inputs": [],
666
+ "name": "getRoleId",
667
+ "outputs": [
668
+ {
669
+ "internalType": "RoleId",
670
+ "name": "serviceRoleId",
671
+ "type": "uint64"
672
+ }
673
+ ],
674
+ "stateMutability": "pure",
675
+ "type": "function"
676
+ },
677
+ {
678
+ "inputs": [],
679
+ "name": "getVersion",
680
+ "outputs": [
681
+ {
682
+ "internalType": "Version",
683
+ "name": "",
684
+ "type": "uint24"
685
+ }
686
+ ],
687
+ "stateMutability": "pure",
688
+ "type": "function"
689
+ },
690
+ {
691
+ "inputs": [
692
+ {
693
+ "internalType": "contract InstanceStore",
694
+ "name": "instanceStore",
695
+ "type": "address"
696
+ },
697
+ {
698
+ "internalType": "NftId",
699
+ "name": "bundleNftId",
700
+ "type": "uint96"
701
+ },
702
+ {
703
+ "internalType": "Amount",
704
+ "name": "amount",
705
+ "type": "uint96"
706
+ },
707
+ {
708
+ "internalType": "Amount",
709
+ "name": "feeAmount",
710
+ "type": "uint96"
711
+ }
712
+ ],
713
+ "name": "increaseBundleBalance",
714
+ "outputs": [],
715
+ "stateMutability": "nonpayable",
716
+ "type": "function"
717
+ },
718
+ {
719
+ "inputs": [
720
+ {
721
+ "internalType": "contract InstanceStore",
722
+ "name": "instanceStore",
723
+ "type": "address"
724
+ },
725
+ {
726
+ "internalType": "NftId",
727
+ "name": "distributionNftId",
728
+ "type": "uint96"
729
+ },
730
+ {
731
+ "internalType": "Amount",
732
+ "name": "amount",
733
+ "type": "uint96"
734
+ },
735
+ {
736
+ "internalType": "Amount",
737
+ "name": "feeAmount",
738
+ "type": "uint96"
739
+ }
740
+ ],
741
+ "name": "increaseDistributionBalance",
742
+ "outputs": [],
743
+ "stateMutability": "nonpayable",
744
+ "type": "function"
745
+ },
746
+ {
747
+ "inputs": [
748
+ {
749
+ "internalType": "contract InstanceStore",
750
+ "name": "instanceStore",
751
+ "type": "address"
752
+ },
753
+ {
754
+ "internalType": "NftId",
755
+ "name": "poolNftId",
756
+ "type": "uint96"
757
+ },
758
+ {
759
+ "internalType": "Amount",
760
+ "name": "amount",
761
+ "type": "uint96"
762
+ },
763
+ {
764
+ "internalType": "Amount",
765
+ "name": "feeAmount",
766
+ "type": "uint96"
767
+ }
768
+ ],
769
+ "name": "increasePoolBalance",
770
+ "outputs": [],
771
+ "stateMutability": "nonpayable",
772
+ "type": "function"
773
+ },
774
+ {
775
+ "inputs": [
776
+ {
777
+ "internalType": "contract InstanceStore",
778
+ "name": "instanceStore",
779
+ "type": "address"
780
+ },
781
+ {
782
+ "internalType": "NftId",
783
+ "name": "productNftId",
784
+ "type": "uint96"
785
+ },
786
+ {
787
+ "internalType": "Amount",
788
+ "name": "feeAmount",
789
+ "type": "uint96"
790
+ }
791
+ ],
792
+ "name": "increaseProductFees",
793
+ "outputs": [],
794
+ "stateMutability": "nonpayable",
795
+ "type": "function"
796
+ },
797
+ {
798
+ "inputs": [],
799
+ "name": "initializeERC165",
800
+ "outputs": [],
801
+ "stateMutability": "nonpayable",
802
+ "type": "function"
803
+ },
804
+ {
805
+ "inputs": [
806
+ {
807
+ "internalType": "address",
808
+ "name": "initialOwner",
809
+ "type": "address"
810
+ },
811
+ {
812
+ "internalType": "address",
813
+ "name": "registryAddress",
814
+ "type": "address"
815
+ }
816
+ ],
817
+ "name": "initializeNftOwnable",
818
+ "outputs": [],
819
+ "stateMutability": "nonpayable",
820
+ "type": "function"
821
+ },
822
+ {
823
+ "inputs": [
824
+ {
825
+ "internalType": "address",
826
+ "name": "registryAddress",
827
+ "type": "address"
828
+ },
829
+ {
830
+ "internalType": "NftId",
831
+ "name": "parentNftId",
832
+ "type": "uint96"
833
+ },
834
+ {
835
+ "internalType": "ObjectType",
836
+ "name": "objectType",
837
+ "type": "uint8"
838
+ },
839
+ {
840
+ "internalType": "bool",
841
+ "name": "isInterceptor",
842
+ "type": "bool"
843
+ },
844
+ {
845
+ "internalType": "address",
846
+ "name": "initialOwner",
847
+ "type": "address"
848
+ },
849
+ {
850
+ "internalType": "bytes",
851
+ "name": "registryData",
852
+ "type": "bytes"
853
+ }
854
+ ],
855
+ "name": "initializeRegisterable",
856
+ "outputs": [],
857
+ "stateMutability": "nonpayable",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "internalType": "address",
864
+ "name": "registryAddress",
865
+ "type": "address"
866
+ }
867
+ ],
868
+ "name": "initializeRegistryLinked",
869
+ "outputs": [],
870
+ "stateMutability": "nonpayable",
871
+ "type": "function"
872
+ },
873
+ {
874
+ "inputs": [
875
+ {
876
+ "internalType": "address",
877
+ "name": "registry",
878
+ "type": "address"
879
+ },
880
+ {
881
+ "internalType": "address",
882
+ "name": "authority",
883
+ "type": "address"
884
+ },
885
+ {
886
+ "internalType": "address",
887
+ "name": "initialOwner",
888
+ "type": "address"
889
+ }
890
+ ],
891
+ "name": "initializeService",
892
+ "outputs": [],
893
+ "stateMutability": "nonpayable",
894
+ "type": "function"
895
+ },
896
+ {
897
+ "inputs": [
898
+ {
899
+ "internalType": "address",
900
+ "name": "activatedBy",
901
+ "type": "address"
902
+ },
903
+ {
904
+ "internalType": "bytes",
905
+ "name": "data",
906
+ "type": "bytes"
907
+ }
908
+ ],
909
+ "name": "initializeVersionable",
910
+ "outputs": [],
911
+ "stateMutability": "nonpayable",
912
+ "type": "function"
913
+ },
914
+ {
915
+ "inputs": [],
916
+ "name": "isConsumingScheduledOp",
917
+ "outputs": [
918
+ {
919
+ "internalType": "bytes4",
920
+ "name": "",
921
+ "type": "bytes4"
922
+ }
923
+ ],
924
+ "stateMutability": "view",
925
+ "type": "function"
926
+ },
927
+ {
928
+ "inputs": [],
929
+ "name": "linkToRegisteredNftId",
930
+ "outputs": [
931
+ {
932
+ "internalType": "NftId",
933
+ "name": "nftId",
934
+ "type": "uint96"
935
+ }
936
+ ],
937
+ "stateMutability": "nonpayable",
938
+ "type": "function"
939
+ },
940
+ {
941
+ "inputs": [],
942
+ "name": "lock",
943
+ "outputs": [],
944
+ "stateMutability": "nonpayable",
945
+ "type": "function"
946
+ },
947
+ {
948
+ "inputs": [],
949
+ "name": "registerDistribution",
950
+ "outputs": [],
951
+ "stateMutability": "nonpayable",
952
+ "type": "function"
953
+ },
954
+ {
955
+ "inputs": [
956
+ {
957
+ "internalType": "bytes4",
958
+ "name": "interfaceId",
959
+ "type": "bytes4"
960
+ }
961
+ ],
962
+ "name": "registerInterface",
963
+ "outputs": [],
964
+ "stateMutability": "nonpayable",
965
+ "type": "function"
966
+ },
967
+ {
968
+ "inputs": [],
969
+ "name": "registerOracle",
970
+ "outputs": [],
971
+ "stateMutability": "nonpayable",
972
+ "type": "function"
973
+ },
974
+ {
975
+ "inputs": [],
976
+ "name": "registerPool",
977
+ "outputs": [],
978
+ "stateMutability": "nonpayable",
979
+ "type": "function"
980
+ },
981
+ {
982
+ "inputs": [],
983
+ "name": "registerProduct",
984
+ "outputs": [],
985
+ "stateMutability": "nonpayable",
986
+ "type": "function"
987
+ },
988
+ {
989
+ "inputs": [
990
+ {
991
+ "internalType": "address",
992
+ "name": "newAuthority",
993
+ "type": "address"
994
+ }
995
+ ],
996
+ "name": "setAuthority",
997
+ "outputs": [],
998
+ "stateMutability": "nonpayable",
999
+ "type": "function"
1000
+ },
1001
+ {
1002
+ "inputs": [
1003
+ {
1004
+ "components": [
1005
+ {
1006
+ "internalType": "UFixed",
1007
+ "name": "fractionalFee",
1008
+ "type": "uint256"
1009
+ },
1010
+ {
1011
+ "internalType": "uint256",
1012
+ "name": "fixedFee",
1013
+ "type": "uint256"
1014
+ }
1015
+ ],
1016
+ "internalType": "struct Fee",
1017
+ "name": "distributionFee",
1018
+ "type": "tuple"
1019
+ },
1020
+ {
1021
+ "components": [
1022
+ {
1023
+ "internalType": "UFixed",
1024
+ "name": "fractionalFee",
1025
+ "type": "uint256"
1026
+ },
1027
+ {
1028
+ "internalType": "uint256",
1029
+ "name": "fixedFee",
1030
+ "type": "uint256"
1031
+ }
1032
+ ],
1033
+ "internalType": "struct Fee",
1034
+ "name": "minDistributionOwnerFee",
1035
+ "type": "tuple"
1036
+ }
1037
+ ],
1038
+ "name": "setDistributionFees",
1039
+ "outputs": [],
1040
+ "stateMutability": "nonpayable",
1041
+ "type": "function"
1042
+ },
1043
+ {
1044
+ "inputs": [
1045
+ {
1046
+ "components": [
1047
+ {
1048
+ "internalType": "UFixed",
1049
+ "name": "fractionalFee",
1050
+ "type": "uint256"
1051
+ },
1052
+ {
1053
+ "internalType": "uint256",
1054
+ "name": "fixedFee",
1055
+ "type": "uint256"
1056
+ }
1057
+ ],
1058
+ "internalType": "struct Fee",
1059
+ "name": "poolFee",
1060
+ "type": "tuple"
1061
+ },
1062
+ {
1063
+ "components": [
1064
+ {
1065
+ "internalType": "UFixed",
1066
+ "name": "fractionalFee",
1067
+ "type": "uint256"
1068
+ },
1069
+ {
1070
+ "internalType": "uint256",
1071
+ "name": "fixedFee",
1072
+ "type": "uint256"
1073
+ }
1074
+ ],
1075
+ "internalType": "struct Fee",
1076
+ "name": "stakingFee",
1077
+ "type": "tuple"
1078
+ },
1079
+ {
1080
+ "components": [
1081
+ {
1082
+ "internalType": "UFixed",
1083
+ "name": "fractionalFee",
1084
+ "type": "uint256"
1085
+ },
1086
+ {
1087
+ "internalType": "uint256",
1088
+ "name": "fixedFee",
1089
+ "type": "uint256"
1090
+ }
1091
+ ],
1092
+ "internalType": "struct Fee",
1093
+ "name": "performanceFee",
1094
+ "type": "tuple"
1095
+ }
1096
+ ],
1097
+ "name": "setPoolFees",
1098
+ "outputs": [],
1099
+ "stateMutability": "nonpayable",
1100
+ "type": "function"
1101
+ },
1102
+ {
1103
+ "inputs": [
1104
+ {
1105
+ "components": [
1106
+ {
1107
+ "internalType": "UFixed",
1108
+ "name": "fractionalFee",
1109
+ "type": "uint256"
1110
+ },
1111
+ {
1112
+ "internalType": "uint256",
1113
+ "name": "fixedFee",
1114
+ "type": "uint256"
1115
+ }
1116
+ ],
1117
+ "internalType": "struct Fee",
1118
+ "name": "productFee",
1119
+ "type": "tuple"
1120
+ },
1121
+ {
1122
+ "components": [
1123
+ {
1124
+ "internalType": "UFixed",
1125
+ "name": "fractionalFee",
1126
+ "type": "uint256"
1127
+ },
1128
+ {
1129
+ "internalType": "uint256",
1130
+ "name": "fixedFee",
1131
+ "type": "uint256"
1132
+ }
1133
+ ],
1134
+ "internalType": "struct Fee",
1135
+ "name": "processingFee",
1136
+ "type": "tuple"
1137
+ }
1138
+ ],
1139
+ "name": "setProductFees",
1140
+ "outputs": [],
1141
+ "stateMutability": "nonpayable",
1142
+ "type": "function"
1143
+ },
1144
+ {
1145
+ "inputs": [
1146
+ {
1147
+ "internalType": "address",
1148
+ "name": "newWallet",
1149
+ "type": "address"
1150
+ }
1151
+ ],
1152
+ "name": "setWallet",
1153
+ "outputs": [],
1154
+ "stateMutability": "nonpayable",
1155
+ "type": "function"
1156
+ },
1157
+ {
1158
+ "inputs": [
1159
+ {
1160
+ "internalType": "bytes4",
1161
+ "name": "interfaceId",
1162
+ "type": "bytes4"
1163
+ }
1164
+ ],
1165
+ "name": "supportsInterface",
1166
+ "outputs": [
1167
+ {
1168
+ "internalType": "bool",
1169
+ "name": "",
1170
+ "type": "bool"
1171
+ }
1172
+ ],
1173
+ "stateMutability": "view",
1174
+ "type": "function"
1175
+ },
1176
+ {
1177
+ "inputs": [],
1178
+ "name": "unlock",
1179
+ "outputs": [],
1180
+ "stateMutability": "nonpayable",
1181
+ "type": "function"
1182
+ },
1183
+ {
1184
+ "inputs": [
1185
+ {
1186
+ "internalType": "bytes",
1187
+ "name": "data",
1188
+ "type": "bytes"
1189
+ }
1190
+ ],
1191
+ "name": "upgradeVersionable",
1192
+ "outputs": [],
1193
+ "stateMutability": "nonpayable",
1194
+ "type": "function"
1195
+ }
1196
+ ],
1197
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6154ad806100d65f395ff3fe608060405234801561000f575f80fd5b506004361061023f575f3560e01c80636e17280711610135578063be495be5116100b4578063deaa59df11610079578063deaa59df14610501578063dfd92f8a14610514578063e618053f146102b5578063f7c34ee01461051c578063f83d08ba146102c8575f80fd5b8063be495be5146104c1578063bf7e214f146104c9578063c142a303146104e6578063d56cd3d514610332578063d7740ee1146104f9575f80fd5b80638e32e979116100fa5780638e32e9791461046a5780638fb360371461047d578063a69df4b5146102c8578063ada9652e1461049e578063b68d1809146104b2575f80fd5b80636e1728071461043c57806374933c2f146103325780637a9e5e4b1461044f578063893d20e81461046257806389fad8a2146102b5575f80fd5b8063339d2590116101c1578063644c45e011610186578063644c45e0146103c657806367438c50146103e3578063675393bf146103f657806367ba1c10146104095780636c741e781461041c575f80fd5b8063339d25901461036b57806336fc697e1461037357806337a897ee1461037b57806349bb9e4b1461038e5780635ab1bd53146103a1575f80fd5b80631eff4b22116102075780631eff4b22146102ea578063214cdb801461031f57806325e451d31461033257806327bb7a3314610345578063329d6e7414610358575f80fd5b806301ffc9a7146102435780630d8e6e2c146102845780630fec111c146102a057806311a14677146102b5578063138461e0146102ca575b5f80fd5b61026f610251366004613e86565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61028c61052f565b60405162ffffff909116815260200161027b565b6102a86105b6565b60405161027b9190613edb565b6102c86102c3366004613f97565b610742565b005b6102d2610755565b6040516001600160601b03909116815260200161027b565b6103117f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161027b565b6102c861032d366004613e86565b61075f565b6102c8610340366004613f97565b61078b565b6102c8610353366004614179565b610799565b6102c861036636600461420c565b61083e565b6102c8610988565b6102c86109d4565b6102c861038936600461426c565b610a19565b6102c861039c366004614296565b610d36565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161027b565b5f80516020615418833981519152546001600160601b03166102d2565b6102c86103f13660046142e2565b610e24565b6102c861040436600461432a565b610ea1565b6102c861041736600461426c565b610fb3565b61042461131f565b6040516001600160401b03909116815260200161027b565b6102c861044a3660046142e2565b611416565b6102c861045d36600461432a565b611463565b6103ae6114fb565b6102c8610478366004614345565b61162c565b610485611764565b6040516001600160e01b0319909116815260200161027b565b6103115f8051602061541883398151915281565b604051600b815260200161027b565b6102c861179b565b5f80516020615438833981519152546001600160a01b03166103ae565b6102c86104f4366004614382565b6118c9565b6102c8611c63565b6102c861050f36600461432a565b611e53565b6102c86120f5565b6102c861052a3660046143c5565b6122a9565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561058d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b191906143fc565b905090565b6105be613d32565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610634573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610658919061442e565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106a06114fb565b6001600160a01b031681526020018260010180546106bd90614449565b80601f01602080910402602001604051908101604052809291908181526020018280546106e990614449565b80156107345780601f1061070b57610100808354040283529160200191610734565b820191905f5260205f20905b81548152906001019060200180831161071757829003601f168201915b505050505081525091505090565b61074f5f8585858561231f565b50505050565b5f6105b130612719565b610767612912565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b61074f60018585858561231f565b6107a1612912565b6107ab82876122a9565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161083483826144cc565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61086061052f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561089e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c291906145a5565b5f805160206154588339815191528054600160401b900460ff16806108f4575080546001600160401b03808416911610155b156109125760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561093c83612948565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b604080515f808252602082018181528284019093523392816109ba565b60608152602001906001900390816109a55790505b5090505f8061083485600d6109cd612950565b878761298a565b6109dc612912565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f80610a25600e612dab565b92505091505f80610a95836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8f91906145c0565b85612e47565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b8152600401610ad79291906145db565b602060405180830381865af4158015610af2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b16919061460c565b610b5c57610b51836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a612f41565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091610b9891908a906004016145db565b602060405180830381865af4158015610bb3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bd7919061460c565b610c2b57610c20836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189612f41565b5060a0810185905260015b8015610d2d57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c9191906145c0565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b8152600401610cc1939291906146ff565b5f604051808303815f87803b158015610cd8575f80fd5b505af1158015610cea573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b5f805160206154588339815191528054600160401b810460ff1615906001600160401b03165f81158015610d675750825b90505f826001600160401b03166001148015610d825750303b155b905081158015610d90575080155b15610dae5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dd857845460ff60401b1916600160401b1785555b610de28787612f94565b8315610d2d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610d24565b610e9c6001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e96919061442e565b8561231f565b505050565b610ea9612912565b806001600160a01b03163b5f03610ee35760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610f5d575060408051601f3d908101601f19168201909252610f5a9181019061460c565b60015b610f855760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610eda565b80610fae5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610eda565b505b50565b5f80610fbf600c612dab565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611001573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102591906145c0565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa158015611073573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611097919061475e565b90505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b81526004016110d79291906145db565b602060405180830381865af41580156110f2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611116919061460c565b6111575761114c846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189612f41565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611193919089906004016145db565b602060405180830381865af41580156111ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d2919061460c565b6112165761120b846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188612f41565b506060810184905260015b801561131757826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611258573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127c91906145c0565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b81526004016112ac939291906146ff565b5f604051808303815f87803b1580156112c3575f80fd5b505af11580156112d5573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561138a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ae919061482a565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af41580156113f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b191906145a5565b610e9c5f848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e72573d5f803e3d5ffd5b336114825f80516020615438833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146114bd5760405162d1953b60e31b81526001600160a01b0382166004820152602401610eda565b816001600160a01b03163b5f036114f2576040516361798f2f60e11b81526001600160a01b0383166004820152602401610eda565b610fae82613104565b5f805f8051602061541883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611567573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061158b919061460c565b15611616576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156115ec573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061161091906145c0565b91505090565b54600160601b90046001600160a01b0316919050565b611634612912565b6116b083846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611674573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611698919061442e565b60095f8560405180602001604052805f815250610799565b6001600160a01b038216156116cd576116c882613164565b611744565b5f6116d86002613175565b9050611742816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611719573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061173d91906145c0565b613164565b505b611754634a531f3360e01b61075f565b610e9c63daf9067160e01b61075f565b5f8051602061543883398151915280545f9190600160a01b900460ff1661178b575f611610565b638fb3603760e01b91505090565b565b60408051600280825260608201835233925f9291906020830190803683375050604080516002808252606082019092529293505f929150602082015b60608152602001906001900390816117d75790505090506117f661327c565b825f8151811061180857611808614850565b6001600160401b0390921660209283029190910190910152611830635b5a095d60e11b6132b6565b815f8151811061184257611842614850565b6020026020010181905250611855613309565b8260018151811061186857611868614850565b6001600160401b0390921660209283029190910190910152611890637c07103960e11b6132b6565b816001815181106118a3576118a3614850565b6020026020010181905250611317836118ba600e90565b6118c261327c565b858561298a565b5f806118d5600f612dab565b92505091505f8061191b836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a6b573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b815260040161195d9291906145db565b602060405180830381865af4158015611978573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061199c919061460c565b6119da576119cf8360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b612f41565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a1691908b906004016145db565b602060405180830381865af4158015611a31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a55919061460c565b611a9657611a8b836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a612f41565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611ad391908a906004016145db565b602060405180830381865af4158015611aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b12919061460c565b611b5957611b4d836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189612f41565b50610100810185905260015b801561083457836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bbf91906145c0565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b8152600401611bef939291906146ff565b5f604051808303815f87803b158015611c06575f80fd5b505af1158015611c18573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b60408051600280825260608201835233925f9291906020830190803683375050604080516002808252606082019092529293505f929150602082015b6060815260200190600190039081611c9f579050509050611cbe613344565b825f81518110611cd057611cd0614850565b6001600160401b0390921660209283029190910190910152611cf8634133c3b360e11b6132b6565b815f81518110611d0a57611d0a614850565b6020026020010181905250611d1d61337e565b82600181518110611d3057611d30614850565b6001600160401b0390921660209283029190910190910152611d58639e2177a760e01b6132b6565b81600181518110611d6b57611d6b614850565b60200260200101819052505f80611d8c85611d84600f90565b6109cd613344565b9250925050816001600160a01b0316637892982382876001600160a01b03166385ba83446040518163ffffffff1660e01b81526004016101c060405180830381865afa158015611dde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e029190614864565b6040518363ffffffff1660e01b8152600401611e1f929190614936565b5f604051808303815f87803b158015611e36575f80fd5b505af1158015611e48573d5f803e3d5ffd5b505050505050505050565b5f80611e5f600b612dab565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ea1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec591906145c0565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015611f11573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611f389190810190614a60565b60808101519091506001600160a01b038516611f675760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b038116611f8e5760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b031603611fc05760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561201a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203e91906145c0565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b815260040161206e93929190614bb7565b5f604051808303815f87803b158015612085575f80fd5b505af1158015612097573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b60408051600180825281830190925233915f91906020808301908036833750506040805160018082528183019092529293505f929150602082015b606081526020019060019003908161213057905050905061214f6133b9565b825f8151811061216157612161614850565b6001600160401b0390921660209283029190910190910152612189635b5a095d60e11b6132b6565b815f8151811061219b5761219b614850565b60200260200101819052505f805f6121c4866121b5600c90565b6121bd6133b9565b888861298a565b9250925092505f866001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa158015612208573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061222c919061475e565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f9061225d9085908590600401614beb565b5f604051808303815f87803b158015612274575f80fd5b505af1158015612286573d5f803e3d5ffd5b505050506122998484835f0151856133f3565b610d2d84848360200151856133f3565b6122b1612912565b6122ba81610ea1565b6122c26109d4565b6001600160a01b0382166122e95760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061541883398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f61232a8383613526565b90508515612529576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612388573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123ac919061460c565b1561242b57604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303815f875af1158015612405573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612429919061442e565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612481573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124a5919061460c565b156125245760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303815f875af11580156124fe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612522919061442e565b505b611317565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801561257f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125a3919061460c565b156126225760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303815f875af11580156125fc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612620919061442e565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612678573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061269c919061460c565b15611317576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303815f875af11580156126f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2d919061442e565b5f805f8051602061541883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612785573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127a9919061460c565b156127d55780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610eda565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612827573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061284b919061460c565b6128735760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610eda565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156128c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128e9919061442e565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f8051602061545883398151915254600160401b900460ff1661179957604051631afcd79f60e31b815260040160405180910390fd5b61023f612912565b6040516368aebf7b60e01b8152600c60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b5f805f805f8061299b8b8b8b6135b1565b60025460405163d943342d60e01b815293965091945092506001600160a01b03169063d943342d906129f69085908e9086906004016001600160a01b03938416815260ff929092166020830152909116604082015260600190565b5f604051808303815f875af1158015612a11573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a389190810190614c09565b5f01519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612a7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9e919061442e565b50826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612adb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aff91906145c0565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6191906145c0565b94505f826001600160a01b03166390edbd356040518163ffffffff1660e01b81526004015f60405180830381865afa158015612b9f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612bc69190810190614a60565b90508060400151604051612bd990613d6f565b6001600160a01b039091168152602001604051809103905ff080158015612c02573d5f803e3d5ffd5b506001600160a01b039081166060830152604051632423001d60e11b815290871690634846003a90612c3a9088908590600401614cd9565b5f604051808303815f87803b158015612c51575f80fd5b505af1158015612c63573d5f803e3d5ffd5b5050505060035f9054906101000a90046001600160a01b03166001600160a01b031663dd38b49e856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cc6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cea919061442e565b8e866001600160a01b03166317d7de7c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612d26573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d4d9190810190614cfa565b8c8e6040518663ffffffff1660e01b8152600401612d6f959493929190614d6e565b5f604051808303815f87803b158015612d86575f80fd5b505af1158015612d98573d5f803e3d5ffd5b5050505050505050955095509592505050565b5f612db4613d32565b5f612dc76001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612e0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e2f919061442e565b9250612e3d838560016139f3565b9395909450915050565b5f612e50613d7c565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c3906024015f60405180830381865afa158015612e9a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ec19190810190614a60565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015612f14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f38919061475e565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94612f86948a948a949293909290614e4a565b60405180910390a150505050565b5f805160206154588339815191528054600160401b810460ff1615906001600160401b03165f81158015612fc55750825b90505f826001600160401b03166001148015612fe05750303b155b905081158015612fee575080155b1561300c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561303657845460ff60401b1916600160401b1785555b5f808780602001905181019061304c9190614e90565b909250905061305c825f8b61162c565b6130666002613175565b600280546001600160a01b0319166001600160a01b0392909216919091179055613090600a613175565b600380546001600160a01b0319166001600160a01b03929092169190911790556130c063672f53a760e01b61075f565b50508315610d2d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610d24565b5f8051602061543883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61316c612912565b610fb081613c91565b5f6131886001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156131eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061320f919061482a565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613252573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327691906145c0565b92915050565b6040516368aebf7b60e01b8152600d60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b6040805160018082528183019092526060916020808301908036833701905050905081815f815181106132eb576132eb614850565b6001600160e01b031990921660209283029190910190910152919050565b6040516368aebf7b60e01b81526108fc60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b6040516368aebf7b60e01b8152600e60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b6040516368aebf7b60e01b815261096a60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b6040516368aebf7b60e01b8152600b60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613449573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061346d919061460c565b61074f5760405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156134bd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134e49190810190614a60565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac90611e1f908690859060ff90600401614bb7565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613586573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135aa919061442e565b9392505050565b6040516301ffc9a760e01b8152639a29895960e01b60048201525f90849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015613600573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613624919061460c565b61364c576040516359bff0e360e11b81526001600160a01b0387166004820152602401610eda565b5f826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613688573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526136af9190810190614c09565b90506136c681604001518760ff9081169116141590565b15613706576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff80891660248301529091166044820152606401610eda565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038981166004830152919091169063d272ac1e90602401602060405180830381865afa158015613758573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061377c919061442e565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156137d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f7919061460c565b15613820576040516322e6526160e11b81526001600160a01b0388166004820152602401610eda565b61382d8160200151613ca2565b93508060a0015191505f846001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015613873573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061389791906145c0565b604051631517388760e21b81526001600160401b03881660048201526001600160a01b03919091169063d1f856ee9073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015613900573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061392491906145a5565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016040805180830381865afa158015613974573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139989190614ebd565b509050806139e8576020820151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03871660248201526001600160a01b0384166044820152606401610eda565b505093509350939050565b6139fb613d32565b5f80613a0f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613a5c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a839190810190614c09565b925060ff8516600b14613ae157604083015160ff868116911614613adc57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610eda565b613b7d565b613afc8360400151613af1600c90565b60ff90811691161490565b80613b125750613b128360400151613af1600f90565b80613b285750613b288360400151613af1600e90565b80613b3e5750613b3e8360400151613af1600d90565b613b7d57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610eda565b613b8a8360200151613ca2565b91508315613c8857816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bf291906145c0565b608084015160405163a166aa8960e01b81526001600160a01b03918216600482015291169063a166aa8990602401602060405180830381865afa158015613c3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c5f919061460c565b15613c8857604051637d71120960e11b81526001600160601b0387166004820152602401610eda565b50935093915050565b613c99612912565b610fb081613104565b5f613cb56001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015613d01573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d289190810190614c09565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b61052580614ef383390190565b6040518061012001604052805f6001600160601b031681526020015f6001600160601b03168152602001613dc160405180604001604052805f81526020015f81525090565b8152602001613de160405180604001604052805f81526020015f81525090565b8152602001613e0160405180604001604052805f81526020015f81525090565b8152602001613e2160405180604001604052805f81526020015f81525090565b8152602001613e4160405180604001604052805f81526020015f81525090565b8152602001613e6160405180604001604052805f81526020015f81525090565b8152602001613e8160405180604001604052805f81526020015f81525090565b905290565b5f60208284031215613e96575f80fd5b81356001600160e01b0319811681146135aa575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151613f23608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613f67610100840182613ead565b949350505050565b6001600160a01b0381168114610fb0575f80fd5b6001600160601b0381168114610fb0575f80fd5b5f805f8060808587031215613faa575f80fd5b8435613fb581613f6f565b93506020850135613fc581613f83565b92506040850135613fd581613f83565b91506060850135613fe581613f83565b939692955090935050565b60ff81168114610fb0575f80fd5b8015158114610fb0575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156140415761404161400b565b60405290565b60405161012081016001600160401b03811182821017156140415761404161400b565b60405161016081016001600160401b03811182821017156140415761404161400b565b60405160c081016001600160401b03811182821017156140415761404161400b565b60405160e081016001600160401b03811182821017156140415761404161400b565b604051601f8201601f191681016001600160401b03811182821017156140f9576140f961400b565b604052919050565b5f6001600160401b038211156141195761411961400b565b50601f01601f191660200190565b5f82601f830112614136575f80fd5b813561414961414482614101565b6140d1565b81815284602083860101111561415d575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c0878903121561418e575f80fd5b863561419981613f6f565b955060208701356141a981613f83565b945060408701356141b981613ff0565b935060608701356141c981613ffe565b925060808701356141d981613f6f565b915060a08701356001600160401b038111156141f3575f80fd5b6141ff89828a01614127565b9150509295509295509295565b5f6020828403121561421c575f80fd5b81356001600160401b03811115614231575f80fd5b613f6784828501614127565b5f6040828403121561424d575f80fd5b61425561401f565b823581526020928301359281019290925250919050565b5f806080838503121561427d575f80fd5b614287848461423d565b9150612f38846040850161423d565b5f80604083850312156142a7575f80fd5b82356142b281613f6f565b915060208301356001600160401b038111156142cc575f80fd5b6142d885828601614127565b9150509250929050565b5f805f606084860312156142f4575f80fd5b83356142ff81613f6f565b9250602084013561430f81613f83565b9150604084013561431f81613f83565b809150509250925092565b5f6020828403121561433a575f80fd5b81356135aa81613f6f565b5f805f60608486031215614357575f80fd5b833561436281613f6f565b9250602084013561437281613f6f565b9150604084013561431f81613f6f565b5f805f60c08486031215614394575f80fd5b61439e858561423d565b92506143ad856040860161423d565b91506143bc856080860161423d565b90509250925092565b5f80604083850312156143d6575f80fd5b82356143e181613f6f565b915060208301356143f181613f6f565b809150509250929050565b5f6020828403121561440c575f80fd5b815162ffffff811681146135aa575f80fd5b805161442981613f83565b919050565b5f6020828403121561443e575f80fd5b81516135aa81613f83565b600181811c9082168061445d57607f821691505b60208210810361447b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610e9c57805f5260205f20601f840160051c810160208510156144a65750805b601f840160051c820191505b818110156144c5575f81556001016144b2565b5050505050565b81516001600160401b038111156144e5576144e561400b565b6144f9816144f38454614449565b84614481565b6020601f82116001811461452b575f83156145145750848201515b5f19600385901b1c1916600184901b1784556144c5565b5f84815260208120601f198516915b8281101561455a578785015182556020948501946001909201910161453a565b508482101561457757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114610fb0575f80fd5b805161442981614586565b5f602082840312156145b5575f80fd5b81516135aa81614586565b5f602082840312156145d0575f80fd5b81516135aa81613f6f565b8251815260208084015181830152825160408301528201516060820152608081016135aa565b805161442981613ffe565b5f6020828403121561461c575f80fd5b81516135aa81613ffe565b6001600160601b038151168252602081015161464e60208401826001600160601b03169052565b50604081015161466b604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a0810151805161010084015260208101516101208401525060c0810151805161014084015260208101516101608401525060e0810151805161018084015260208101516101a084015250610100015180516101c0830152602001516101e090910152565b6001600160601b0384168152610240810161471d6020830185614627565b60ff8316610220830152949350505050565b5f6040828403121561473f575f80fd5b61474761401f565b825181526020928301519281019290925250919050565b5f610200828403128015614770575f80fd5b50614779614047565b6147828361441e565b81526147906020840161441e565b60208201526147a2846040850161472f565b60408201526147b4846080850161472f565b60608201526147c68460c0850161472f565b60808201526147d984610100850161472f565b60a08201526147ec84610140850161472f565b60c08201526147ff84610180850161472f565b60e0820152614812846101c0850161472f565b6101008201529392505050565b805161442981613ff0565b5f6020828403121561483a575f80fd5b81516135aa81613ff0565b805161442981613f6f565b634e487b7160e01b5f52603260045260245ffd5b5f6101c0828403128015614876575f80fd5b5061487f61406a565b6148888361441e565b81526148966020840161459a565b60208201526148a76040840161441e565b60408201526148b860608401614601565b60608201526148c960808401614601565b60808201526148da60a08401614601565b60a082015260c0838101519082015260e0808401519082015261490184610100850161472f565b61010082015261491584610140850161472f565b61012082015261492984610180850161472f565b6101408201529392505050565b6001600160601b03838116825282511660208201526101e0810160208301516001600160401b03811660408401525060408301516001600160601b0381166060840152506060830151801515608084015250608083015180151560a08401525060a083015180151560c08401525060c083015160e083015260e08301516101008301526101008301516149d761012084018280518252602090810151910152565b5061012083015180516101608401526020908101516101808401526101409093015180516101a0840152909201516101c090910152919050565b5f82601f830112614a20575f80fd5b8151602083015f614a3361414484614101565b9050828152858383011115614a46575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215614a70575f80fd5b81516001600160401b03811115614a85575f80fd5b820160c08185031215614a96575f80fd5b614a9e61408d565b81516001600160401b03811115614ab3575f80fd5b614abf86828501614a11565b825250614ace6020830161441e565b6020820152614adf60408301614845565b6040820152614af060608301614845565b6060820152614b0160808301614845565b608082015260a08201516001600160401b03811115614b1e575f80fd5b614b2a86828501614a11565b60a083015250949350505050565b5f815160c08452614b4c60c0850182613ead565b90506001600160601b03602084015116602085015260018060a01b03604084015116604085015260018060a01b03606084015116606085015260018060a01b03608084015116608085015260a083015184820360a0860152614bae8282613ead565b95945050505050565b6001600160601b0384168152606060208201525f614bd86060830185614b38565b905060ff83166040830152949350505050565b6001600160601b038316815261022081016135aa6020830184614627565b5f60208284031215614c19575f80fd5b81516001600160401b03811115614c2e575f80fd5b820160e08185031215614c3f575f80fd5b614c476140af565b614c508261441e565b8152614c5e6020830161441e565b6020820152614c6f6040830161481f565b6040820152614c8060608301614601565b6060820152614c9160808301614845565b6080820152614ca260a08301614845565b60a082015260c08201516001600160401b03811115614cbf575f80fd5b614ccb86828501614a11565b60c083015250949350505050565b6001600160601b0383168152604060208201525f613f676040830184614b38565b5f60208284031215614d0a575f80fd5b81516001600160401b03811115614d1f575f80fd5b613f6784828501614a11565b5f8151808452602084019350602083015f5b82811015614d645781516001600160401b0316865260209586019590910190600101614d3d565b5093949350505050565b6001600160601b03861681526001600160a01b038516602082015260a0604082018190525f90614da090830186613ead565b828103606084015280855180835260208301915060208160051b840101602088015f5b83811015614e2757858303601f19018552815180518085526020918201918501905f5b81811015614e0e5783516001600160e01b031916835260209384019390920191600101614de6565b5050602096870196909450929092019150600101614dc3565b50508581036080870152614e3b8188614d2b565b9b9a5050505050505050505050565b6001600160601b038716815260c060208201525f614e6b60c0830188613ead565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f8060408385031215614ea1575f80fd5b8251614eac81613f6f565b60208401519092506143f181613f6f565b5f8060408385031215614ece575f80fd5b8251614ed981613ffe565b602084015190925063ffffffff811681146143f1575f80fdfe6080604052348015600e575f80fd5b50604051610525380380610525833981016040819052602b91604e565b5f80546001600160a01b0319166001600160a01b03929092169190911790556079565b5f60208284031215605d575f80fd5b81516001600160a01b03811681146072575f80fd5b9392505050565b61049f806100865f395ff3fe608060405234801561000f575f80fd5b506004361061003f575f3560e01c806321df0da7146100435780638d7271c314610061578063c661667d14610076575b5f80fd5b5f54604080516001600160a01b039092168252519081900360200190f35b61007461006f36600461038c565b610089565b005b6100746100843660046103dd565b610119565b60405163046e44af60e11b81526001600160601b03821660048201526101139085908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af41580156100ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061010e919061041d565b610172565b50505050565b5f5460405163046e44af60e11b81526001600160601b038316600482015261016d916001600160a01b0316908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024016100cf565b505050565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610113918691905f906101d790841683610229565b905080515f141580156101fb5750808060200190518101906101f99190610434565b155b1561016d57604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061023683835f61023d565b9392505050565b6060814710156102625760405163cd78605960e01b8152306004820152602401610220565b5f80856001600160a01b0316848660405161027d9190610453565b5f6040518083038185875af1925050503d805f81146102b7576040519150601f19603f3d011682016040523d82523d5f602084013e6102bc565b606091505b50915091506102cc8683836102d6565b9695505050505050565b6060826102eb576102e682610332565b610236565b815115801561030257506001600160a01b0384163b155b1561032b57604051639996b31560e01b81526001600160a01b0385166004820152602401610220565b5080610236565b8051156103425780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b0381168114610371575f80fd5b919050565b80356001600160601b0381168114610371575f80fd5b5f805f806080858703121561039f575f80fd5b6103a88561035b565b93506103b66020860161035b565b92506103c46040860161035b565b91506103d260608601610376565b905092959194509250565b5f805f606084860312156103ef575f80fd5b6103f88461035b565b92506104066020850161035b565b915061041460408501610376565b90509250925092565b5f6020828403121561042d575f80fd5b5051919050565b5f60208284031215610444575f80fd5b81518015158114610236575f80fd5b5f82518060208501845e5f92019182525091905056fea2646970667358221220b0a3193374b29ddb3467b8f576749fcd89351ee1752d2b9a483cda3fd562936664736f6c634300081a003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212208252353c8419b79c7e4983e9f77f7f0de51620eef83df3338c15c56e68c1c5b064736f6c634300081a0033",
1198
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061023f575f3560e01c80636e17280711610135578063be495be5116100b4578063deaa59df11610079578063deaa59df14610501578063dfd92f8a14610514578063e618053f146102b5578063f7c34ee01461051c578063f83d08ba146102c8575f80fd5b8063be495be5146104c1578063bf7e214f146104c9578063c142a303146104e6578063d56cd3d514610332578063d7740ee1146104f9575f80fd5b80638e32e979116100fa5780638e32e9791461046a5780638fb360371461047d578063a69df4b5146102c8578063ada9652e1461049e578063b68d1809146104b2575f80fd5b80636e1728071461043c57806374933c2f146103325780637a9e5e4b1461044f578063893d20e81461046257806389fad8a2146102b5575f80fd5b8063339d2590116101c1578063644c45e011610186578063644c45e0146103c657806367438c50146103e3578063675393bf146103f657806367ba1c10146104095780636c741e781461041c575f80fd5b8063339d25901461036b57806336fc697e1461037357806337a897ee1461037b57806349bb9e4b1461038e5780635ab1bd53146103a1575f80fd5b80631eff4b22116102075780631eff4b22146102ea578063214cdb801461031f57806325e451d31461033257806327bb7a3314610345578063329d6e7414610358575f80fd5b806301ffc9a7146102435780630d8e6e2c146102845780630fec111c146102a057806311a14677146102b5578063138461e0146102ca575b5f80fd5b61026f610251366004613e86565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61028c61052f565b60405162ffffff909116815260200161027b565b6102a86105b6565b60405161027b9190613edb565b6102c86102c3366004613f97565b610742565b005b6102d2610755565b6040516001600160601b03909116815260200161027b565b6103117f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161027b565b6102c861032d366004613e86565b61075f565b6102c8610340366004613f97565b61078b565b6102c8610353366004614179565b610799565b6102c861036636600461420c565b61083e565b6102c8610988565b6102c86109d4565b6102c861038936600461426c565b610a19565b6102c861039c366004614296565b610d36565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161027b565b5f80516020615418833981519152546001600160601b03166102d2565b6102c86103f13660046142e2565b610e24565b6102c861040436600461432a565b610ea1565b6102c861041736600461426c565b610fb3565b61042461131f565b6040516001600160401b03909116815260200161027b565b6102c861044a3660046142e2565b611416565b6102c861045d36600461432a565b611463565b6103ae6114fb565b6102c8610478366004614345565b61162c565b610485611764565b6040516001600160e01b0319909116815260200161027b565b6103115f8051602061541883398151915281565b604051600b815260200161027b565b6102c861179b565b5f80516020615438833981519152546001600160a01b03166103ae565b6102c86104f4366004614382565b6118c9565b6102c8611c63565b6102c861050f36600461432a565b611e53565b6102c86120f5565b6102c861052a3660046143c5565b6122a9565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561058d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b191906143fc565b905090565b6105be613d32565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610634573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610658919061442e565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106a06114fb565b6001600160a01b031681526020018260010180546106bd90614449565b80601f01602080910402602001604051908101604052809291908181526020018280546106e990614449565b80156107345780601f1061070b57610100808354040283529160200191610734565b820191905f5260205f20905b81548152906001019060200180831161071757829003601f168201915b505050505081525091505090565b61074f5f8585858561231f565b50505050565b5f6105b130612719565b610767612912565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b61074f60018585858561231f565b6107a1612912565b6107ab82876122a9565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161083483826144cc565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61086061052f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561089e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c291906145a5565b5f805160206154588339815191528054600160401b900460ff16806108f4575080546001600160401b03808416911610155b156109125760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561093c83612948565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b604080515f808252602082018181528284019093523392816109ba565b60608152602001906001900390816109a55790505b5090505f8061083485600d6109cd612950565b878761298a565b6109dc612912565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f80610a25600e612dab565b92505091505f80610a95836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8f91906145c0565b85612e47565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b8152600401610ad79291906145db565b602060405180830381865af4158015610af2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b16919061460c565b610b5c57610b51836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a612f41565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091610b9891908a906004016145db565b602060405180830381865af4158015610bb3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bd7919061460c565b610c2b57610c20836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189612f41565b5060a0810185905260015b8015610d2d57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c9191906145c0565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b8152600401610cc1939291906146ff565b5f604051808303815f87803b158015610cd8575f80fd5b505af1158015610cea573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b5f805160206154588339815191528054600160401b810460ff1615906001600160401b03165f81158015610d675750825b90505f826001600160401b03166001148015610d825750303b155b905081158015610d90575080155b15610dae5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dd857845460ff60401b1916600160401b1785555b610de28787612f94565b8315610d2d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610d24565b610e9c6001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e96919061442e565b8561231f565b505050565b610ea9612912565b806001600160a01b03163b5f03610ee35760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610f5d575060408051601f3d908101601f19168201909252610f5a9181019061460c565b60015b610f855760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610eda565b80610fae5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610eda565b505b50565b5f80610fbf600c612dab565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611001573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102591906145c0565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa158015611073573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611097919061475e565b90505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b81526004016110d79291906145db565b602060405180830381865af41580156110f2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611116919061460c565b6111575761114c846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189612f41565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611193919089906004016145db565b602060405180830381865af41580156111ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d2919061460c565b6112165761120b846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188612f41565b506060810184905260015b801561131757826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611258573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127c91906145c0565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b81526004016112ac939291906146ff565b5f604051808303815f87803b1580156112c3575f80fd5b505af11580156112d5573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561138a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ae919061482a565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af41580156113f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b191906145a5565b610e9c5f848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e72573d5f803e3d5ffd5b336114825f80516020615438833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146114bd5760405162d1953b60e31b81526001600160a01b0382166004820152602401610eda565b816001600160a01b03163b5f036114f2576040516361798f2f60e11b81526001600160a01b0383166004820152602401610eda565b610fae82613104565b5f805f8051602061541883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611567573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061158b919061460c565b15611616576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156115ec573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061161091906145c0565b91505090565b54600160601b90046001600160a01b0316919050565b611634612912565b6116b083846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611674573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611698919061442e565b60095f8560405180602001604052805f815250610799565b6001600160a01b038216156116cd576116c882613164565b611744565b5f6116d86002613175565b9050611742816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611719573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061173d91906145c0565b613164565b505b611754634a531f3360e01b61075f565b610e9c63daf9067160e01b61075f565b5f8051602061543883398151915280545f9190600160a01b900460ff1661178b575f611610565b638fb3603760e01b91505090565b565b60408051600280825260608201835233925f9291906020830190803683375050604080516002808252606082019092529293505f929150602082015b60608152602001906001900390816117d75790505090506117f661327c565b825f8151811061180857611808614850565b6001600160401b0390921660209283029190910190910152611830635b5a095d60e11b6132b6565b815f8151811061184257611842614850565b6020026020010181905250611855613309565b8260018151811061186857611868614850565b6001600160401b0390921660209283029190910190910152611890637c07103960e11b6132b6565b816001815181106118a3576118a3614850565b6020026020010181905250611317836118ba600e90565b6118c261327c565b858561298a565b5f806118d5600f612dab565b92505091505f8061191b836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a6b573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b815260040161195d9291906145db565b602060405180830381865af4158015611978573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061199c919061460c565b6119da576119cf8360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b612f41565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a1691908b906004016145db565b602060405180830381865af4158015611a31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a55919061460c565b611a9657611a8b836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a612f41565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611ad391908a906004016145db565b602060405180830381865af4158015611aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b12919061460c565b611b5957611b4d836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189612f41565b50610100810185905260015b801561083457836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bbf91906145c0565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b8152600401611bef939291906146ff565b5f604051808303815f87803b158015611c06575f80fd5b505af1158015611c18573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b60408051600280825260608201835233925f9291906020830190803683375050604080516002808252606082019092529293505f929150602082015b6060815260200190600190039081611c9f579050509050611cbe613344565b825f81518110611cd057611cd0614850565b6001600160401b0390921660209283029190910190910152611cf8634133c3b360e11b6132b6565b815f81518110611d0a57611d0a614850565b6020026020010181905250611d1d61337e565b82600181518110611d3057611d30614850565b6001600160401b0390921660209283029190910190910152611d58639e2177a760e01b6132b6565b81600181518110611d6b57611d6b614850565b60200260200101819052505f80611d8c85611d84600f90565b6109cd613344565b9250925050816001600160a01b0316637892982382876001600160a01b03166385ba83446040518163ffffffff1660e01b81526004016101c060405180830381865afa158015611dde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e029190614864565b6040518363ffffffff1660e01b8152600401611e1f929190614936565b5f604051808303815f87803b158015611e36575f80fd5b505af1158015611e48573d5f803e3d5ffd5b505050505050505050565b5f80611e5f600b612dab565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ea1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec591906145c0565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015611f11573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611f389190810190614a60565b60808101519091506001600160a01b038516611f675760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b038116611f8e5760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b031603611fc05760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561201a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203e91906145c0565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b815260040161206e93929190614bb7565b5f604051808303815f87803b158015612085575f80fd5b505af1158015612097573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b60408051600180825281830190925233915f91906020808301908036833750506040805160018082528183019092529293505f929150602082015b606081526020019060019003908161213057905050905061214f6133b9565b825f8151811061216157612161614850565b6001600160401b0390921660209283029190910190910152612189635b5a095d60e11b6132b6565b815f8151811061219b5761219b614850565b60200260200101819052505f805f6121c4866121b5600c90565b6121bd6133b9565b888861298a565b9250925092505f866001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa158015612208573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061222c919061475e565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f9061225d9085908590600401614beb565b5f604051808303815f87803b158015612274575f80fd5b505af1158015612286573d5f803e3d5ffd5b505050506122998484835f0151856133f3565b610d2d84848360200151856133f3565b6122b1612912565b6122ba81610ea1565b6122c26109d4565b6001600160a01b0382166122e95760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061541883398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f61232a8383613526565b90508515612529576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612388573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123ac919061460c565b1561242b57604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303815f875af1158015612405573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612429919061442e565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612481573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124a5919061460c565b156125245760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303815f875af11580156124fe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612522919061442e565b505b611317565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801561257f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125a3919061460c565b156126225760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303815f875af11580156125fc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612620919061442e565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612678573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061269c919061460c565b15611317576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303815f875af11580156126f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2d919061442e565b5f805f8051602061541883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612785573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127a9919061460c565b156127d55780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610eda565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612827573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061284b919061460c565b6128735760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610eda565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156128c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128e9919061442e565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f8051602061545883398151915254600160401b900460ff1661179957604051631afcd79f60e31b815260040160405180910390fd5b61023f612912565b6040516368aebf7b60e01b8152600c60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b5f805f805f8061299b8b8b8b6135b1565b60025460405163d943342d60e01b815293965091945092506001600160a01b03169063d943342d906129f69085908e9086906004016001600160a01b03938416815260ff929092166020830152909116604082015260600190565b5f604051808303815f875af1158015612a11573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a389190810190614c09565b5f01519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612a7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9e919061442e565b50826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612adb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aff91906145c0565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6191906145c0565b94505f826001600160a01b03166390edbd356040518163ffffffff1660e01b81526004015f60405180830381865afa158015612b9f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612bc69190810190614a60565b90508060400151604051612bd990613d6f565b6001600160a01b039091168152602001604051809103905ff080158015612c02573d5f803e3d5ffd5b506001600160a01b039081166060830152604051632423001d60e11b815290871690634846003a90612c3a9088908590600401614cd9565b5f604051808303815f87803b158015612c51575f80fd5b505af1158015612c63573d5f803e3d5ffd5b5050505060035f9054906101000a90046001600160a01b03166001600160a01b031663dd38b49e856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cc6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cea919061442e565b8e866001600160a01b03166317d7de7c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612d26573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d4d9190810190614cfa565b8c8e6040518663ffffffff1660e01b8152600401612d6f959493929190614d6e565b5f604051808303815f87803b158015612d86575f80fd5b505af1158015612d98573d5f803e3d5ffd5b5050505050505050955095509592505050565b5f612db4613d32565b5f612dc76001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612e0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e2f919061442e565b9250612e3d838560016139f3565b9395909450915050565b5f612e50613d7c565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c3906024015f60405180830381865afa158015612e9a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ec19190810190614a60565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015612f14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f38919061475e565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94612f86948a948a949293909290614e4a565b60405180910390a150505050565b5f805160206154588339815191528054600160401b810460ff1615906001600160401b03165f81158015612fc55750825b90505f826001600160401b03166001148015612fe05750303b155b905081158015612fee575080155b1561300c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561303657845460ff60401b1916600160401b1785555b5f808780602001905181019061304c9190614e90565b909250905061305c825f8b61162c565b6130666002613175565b600280546001600160a01b0319166001600160a01b0392909216919091179055613090600a613175565b600380546001600160a01b0319166001600160a01b03929092169190911790556130c063672f53a760e01b61075f565b50508315610d2d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610d24565b5f8051602061543883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61316c612912565b610fb081613c91565b5f6131886001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156131eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061320f919061482a565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613252573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327691906145c0565b92915050565b6040516368aebf7b60e01b8152600d60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b6040805160018082528183019092526060916020808301908036833701905050905081815f815181106132eb576132eb614850565b6001600160e01b031990921660209283029190910190910152919050565b6040516368aebf7b60e01b81526108fc60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b6040516368aebf7b60e01b8152600e60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b6040516368aebf7b60e01b815261096a60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b6040516368aebf7b60e01b8152600b60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016113d7565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613449573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061346d919061460c565b61074f5760405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156134bd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134e49190810190614a60565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac90611e1f908690859060ff90600401614bb7565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613586573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135aa919061442e565b9392505050565b6040516301ffc9a760e01b8152639a29895960e01b60048201525f90849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015613600573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613624919061460c565b61364c576040516359bff0e360e11b81526001600160a01b0387166004820152602401610eda565b5f826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613688573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526136af9190810190614c09565b90506136c681604001518760ff9081169116141590565b15613706576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff80891660248301529091166044820152606401610eda565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038981166004830152919091169063d272ac1e90602401602060405180830381865afa158015613758573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061377c919061442e565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156137d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f7919061460c565b15613820576040516322e6526160e11b81526001600160a01b0388166004820152602401610eda565b61382d8160200151613ca2565b93508060a0015191505f846001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015613873573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061389791906145c0565b604051631517388760e21b81526001600160401b03881660048201526001600160a01b03919091169063d1f856ee9073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015613900573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061392491906145a5565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016040805180830381865afa158015613974573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139989190614ebd565b509050806139e8576020820151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03871660248201526001600160a01b0384166044820152606401610eda565b505093509350939050565b6139fb613d32565b5f80613a0f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613a5c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a839190810190614c09565b925060ff8516600b14613ae157604083015160ff868116911614613adc57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610eda565b613b7d565b613afc8360400151613af1600c90565b60ff90811691161490565b80613b125750613b128360400151613af1600f90565b80613b285750613b288360400151613af1600e90565b80613b3e5750613b3e8360400151613af1600d90565b613b7d57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610eda565b613b8a8360200151613ca2565b91508315613c8857816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bf291906145c0565b608084015160405163a166aa8960e01b81526001600160a01b03918216600482015291169063a166aa8990602401602060405180830381865afa158015613c3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c5f919061460c565b15613c8857604051637d71120960e11b81526001600160601b0387166004820152602401610eda565b50935093915050565b613c99612912565b610fb081613104565b5f613cb56001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015613d01573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d289190810190614c09565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b61052580614ef383390190565b6040518061012001604052805f6001600160601b031681526020015f6001600160601b03168152602001613dc160405180604001604052805f81526020015f81525090565b8152602001613de160405180604001604052805f81526020015f81525090565b8152602001613e0160405180604001604052805f81526020015f81525090565b8152602001613e2160405180604001604052805f81526020015f81525090565b8152602001613e4160405180604001604052805f81526020015f81525090565b8152602001613e6160405180604001604052805f81526020015f81525090565b8152602001613e8160405180604001604052805f81526020015f81525090565b905290565b5f60208284031215613e96575f80fd5b81356001600160e01b0319811681146135aa575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151613f23608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613f67610100840182613ead565b949350505050565b6001600160a01b0381168114610fb0575f80fd5b6001600160601b0381168114610fb0575f80fd5b5f805f8060808587031215613faa575f80fd5b8435613fb581613f6f565b93506020850135613fc581613f83565b92506040850135613fd581613f83565b91506060850135613fe581613f83565b939692955090935050565b60ff81168114610fb0575f80fd5b8015158114610fb0575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156140415761404161400b565b60405290565b60405161012081016001600160401b03811182821017156140415761404161400b565b60405161016081016001600160401b03811182821017156140415761404161400b565b60405160c081016001600160401b03811182821017156140415761404161400b565b60405160e081016001600160401b03811182821017156140415761404161400b565b604051601f8201601f191681016001600160401b03811182821017156140f9576140f961400b565b604052919050565b5f6001600160401b038211156141195761411961400b565b50601f01601f191660200190565b5f82601f830112614136575f80fd5b813561414961414482614101565b6140d1565b81815284602083860101111561415d575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c0878903121561418e575f80fd5b863561419981613f6f565b955060208701356141a981613f83565b945060408701356141b981613ff0565b935060608701356141c981613ffe565b925060808701356141d981613f6f565b915060a08701356001600160401b038111156141f3575f80fd5b6141ff89828a01614127565b9150509295509295509295565b5f6020828403121561421c575f80fd5b81356001600160401b03811115614231575f80fd5b613f6784828501614127565b5f6040828403121561424d575f80fd5b61425561401f565b823581526020928301359281019290925250919050565b5f806080838503121561427d575f80fd5b614287848461423d565b9150612f38846040850161423d565b5f80604083850312156142a7575f80fd5b82356142b281613f6f565b915060208301356001600160401b038111156142cc575f80fd5b6142d885828601614127565b9150509250929050565b5f805f606084860312156142f4575f80fd5b83356142ff81613f6f565b9250602084013561430f81613f83565b9150604084013561431f81613f83565b809150509250925092565b5f6020828403121561433a575f80fd5b81356135aa81613f6f565b5f805f60608486031215614357575f80fd5b833561436281613f6f565b9250602084013561437281613f6f565b9150604084013561431f81613f6f565b5f805f60c08486031215614394575f80fd5b61439e858561423d565b92506143ad856040860161423d565b91506143bc856080860161423d565b90509250925092565b5f80604083850312156143d6575f80fd5b82356143e181613f6f565b915060208301356143f181613f6f565b809150509250929050565b5f6020828403121561440c575f80fd5b815162ffffff811681146135aa575f80fd5b805161442981613f83565b919050565b5f6020828403121561443e575f80fd5b81516135aa81613f83565b600181811c9082168061445d57607f821691505b60208210810361447b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610e9c57805f5260205f20601f840160051c810160208510156144a65750805b601f840160051c820191505b818110156144c5575f81556001016144b2565b5050505050565b81516001600160401b038111156144e5576144e561400b565b6144f9816144f38454614449565b84614481565b6020601f82116001811461452b575f83156145145750848201515b5f19600385901b1c1916600184901b1784556144c5565b5f84815260208120601f198516915b8281101561455a578785015182556020948501946001909201910161453a565b508482101561457757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114610fb0575f80fd5b805161442981614586565b5f602082840312156145b5575f80fd5b81516135aa81614586565b5f602082840312156145d0575f80fd5b81516135aa81613f6f565b8251815260208084015181830152825160408301528201516060820152608081016135aa565b805161442981613ffe565b5f6020828403121561461c575f80fd5b81516135aa81613ffe565b6001600160601b038151168252602081015161464e60208401826001600160601b03169052565b50604081015161466b604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a0810151805161010084015260208101516101208401525060c0810151805161014084015260208101516101608401525060e0810151805161018084015260208101516101a084015250610100015180516101c0830152602001516101e090910152565b6001600160601b0384168152610240810161471d6020830185614627565b60ff8316610220830152949350505050565b5f6040828403121561473f575f80fd5b61474761401f565b825181526020928301519281019290925250919050565b5f610200828403128015614770575f80fd5b50614779614047565b6147828361441e565b81526147906020840161441e565b60208201526147a2846040850161472f565b60408201526147b4846080850161472f565b60608201526147c68460c0850161472f565b60808201526147d984610100850161472f565b60a08201526147ec84610140850161472f565b60c08201526147ff84610180850161472f565b60e0820152614812846101c0850161472f565b6101008201529392505050565b805161442981613ff0565b5f6020828403121561483a575f80fd5b81516135aa81613ff0565b805161442981613f6f565b634e487b7160e01b5f52603260045260245ffd5b5f6101c0828403128015614876575f80fd5b5061487f61406a565b6148888361441e565b81526148966020840161459a565b60208201526148a76040840161441e565b60408201526148b860608401614601565b60608201526148c960808401614601565b60808201526148da60a08401614601565b60a082015260c0838101519082015260e0808401519082015261490184610100850161472f565b61010082015261491584610140850161472f565b61012082015261492984610180850161472f565b6101408201529392505050565b6001600160601b03838116825282511660208201526101e0810160208301516001600160401b03811660408401525060408301516001600160601b0381166060840152506060830151801515608084015250608083015180151560a08401525060a083015180151560c08401525060c083015160e083015260e08301516101008301526101008301516149d761012084018280518252602090810151910152565b5061012083015180516101608401526020908101516101808401526101409093015180516101a0840152909201516101c090910152919050565b5f82601f830112614a20575f80fd5b8151602083015f614a3361414484614101565b9050828152858383011115614a46575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215614a70575f80fd5b81516001600160401b03811115614a85575f80fd5b820160c08185031215614a96575f80fd5b614a9e61408d565b81516001600160401b03811115614ab3575f80fd5b614abf86828501614a11565b825250614ace6020830161441e565b6020820152614adf60408301614845565b6040820152614af060608301614845565b6060820152614b0160808301614845565b608082015260a08201516001600160401b03811115614b1e575f80fd5b614b2a86828501614a11565b60a083015250949350505050565b5f815160c08452614b4c60c0850182613ead565b90506001600160601b03602084015116602085015260018060a01b03604084015116604085015260018060a01b03606084015116606085015260018060a01b03608084015116608085015260a083015184820360a0860152614bae8282613ead565b95945050505050565b6001600160601b0384168152606060208201525f614bd86060830185614b38565b905060ff83166040830152949350505050565b6001600160601b038316815261022081016135aa6020830184614627565b5f60208284031215614c19575f80fd5b81516001600160401b03811115614c2e575f80fd5b820160e08185031215614c3f575f80fd5b614c476140af565b614c508261441e565b8152614c5e6020830161441e565b6020820152614c6f6040830161481f565b6040820152614c8060608301614601565b6060820152614c9160808301614845565b6080820152614ca260a08301614845565b60a082015260c08201516001600160401b03811115614cbf575f80fd5b614ccb86828501614a11565b60c083015250949350505050565b6001600160601b0383168152604060208201525f613f676040830184614b38565b5f60208284031215614d0a575f80fd5b81516001600160401b03811115614d1f575f80fd5b613f6784828501614a11565b5f8151808452602084019350602083015f5b82811015614d645781516001600160401b0316865260209586019590910190600101614d3d565b5093949350505050565b6001600160601b03861681526001600160a01b038516602082015260a0604082018190525f90614da090830186613ead565b828103606084015280855180835260208301915060208160051b840101602088015f5b83811015614e2757858303601f19018552815180518085526020918201918501905f5b81811015614e0e5783516001600160e01b031916835260209384019390920191600101614de6565b5050602096870196909450929092019150600101614dc3565b50508581036080870152614e3b8188614d2b565b9b9a5050505050505050505050565b6001600160601b038716815260c060208201525f614e6b60c0830188613ead565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f8060408385031215614ea1575f80fd5b8251614eac81613f6f565b60208401519092506143f181613f6f565b5f8060408385031215614ece575f80fd5b8251614ed981613ffe565b602084015190925063ffffffff811681146143f1575f80fdfe6080604052348015600e575f80fd5b50604051610525380380610525833981016040819052602b91604e565b5f80546001600160a01b0319166001600160a01b03929092169190911790556079565b5f60208284031215605d575f80fd5b81516001600160a01b03811681146072575f80fd5b9392505050565b61049f806100865f395ff3fe608060405234801561000f575f80fd5b506004361061003f575f3560e01c806321df0da7146100435780638d7271c314610061578063c661667d14610076575b5f80fd5b5f54604080516001600160a01b039092168252519081900360200190f35b61007461006f36600461038c565b610089565b005b6100746100843660046103dd565b610119565b60405163046e44af60e11b81526001600160601b03821660048201526101139085908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af41580156100ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061010e919061041d565b610172565b50505050565b5f5460405163046e44af60e11b81526001600160601b038316600482015261016d916001600160a01b0316908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024016100cf565b505050565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610113918691905f906101d790841683610229565b905080515f141580156101fb5750808060200190518101906101f99190610434565b155b1561016d57604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061023683835f61023d565b9392505050565b6060814710156102625760405163cd78605960e01b8152306004820152602401610220565b5f80856001600160a01b0316848660405161027d9190610453565b5f6040518083038185875af1925050503d805f81146102b7576040519150601f19603f3d011682016040523d82523d5f602084013e6102bc565b606091505b50915091506102cc8683836102d6565b9695505050505050565b6060826102eb576102e682610332565b610236565b815115801561030257506001600160a01b0384163b155b1561032b57604051639996b31560e01b81526001600160a01b0385166004820152602401610220565b5080610236565b8051156103425780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b0381168114610371575f80fd5b919050565b80356001600160601b0381168114610371575f80fd5b5f805f806080858703121561039f575f80fd5b6103a88561035b565b93506103b66020860161035b565b92506103c46040860161035b565b91506103d260608601610376565b905092959194509250565b5f805f606084860312156103ef575f80fd5b6103f88461035b565b92506104066020850161035b565b915061041460408501610376565b90509250925092565b5f6020828403121561042d575f80fd5b5051919050565b5f60208284031215610444575f80fd5b81518015158114610236575f80fd5b5f82518060208501845e5f92019182525091905056fea2646970667358221220b0a3193374b29ddb3467b8f576749fcd89351ee1752d2b9a483cda3fd562936664736f6c634300081a003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212208252353c8419b79c7e4983e9f77f7f0de51620eef83df3338c15c56e68c1c5b064736f6c634300081a0033",
1199
+ "linkReferences": {
1200
+ "contracts/type/Amount.sol": {
1201
+ "AmountLib": [
1202
+ {
1203
+ "length": 20,
1204
+ "start": 3843
1205
+ },
1206
+ {
1207
+ "length": 20,
1208
+ "start": 5364
1209
+ },
1210
+ {
1211
+ "length": 20,
1212
+ "start": 9254
1213
+ },
1214
+ {
1215
+ "length": 20,
1216
+ "start": 9503
1217
+ },
1218
+ {
1219
+ "length": 20,
1220
+ "start": 9757
1221
+ },
1222
+ {
1223
+ "length": 20,
1224
+ "start": 10006
1225
+ },
1226
+ {
1227
+ "length": 20,
1228
+ "start": 13860
1229
+ },
1230
+ {
1231
+ "length": 20,
1232
+ "start": 20736
1233
+ },
1234
+ {
1235
+ "length": 20,
1236
+ "start": 20890
1237
+ }
1238
+ ]
1239
+ },
1240
+ "contracts/type/Fee.sol": {
1241
+ "FeeLib": [
1242
+ {
1243
+ "length": 20,
1244
+ "start": 2930
1245
+ },
1246
+ {
1247
+ "length": 20,
1248
+ "start": 3141
1249
+ },
1250
+ {
1251
+ "length": 20,
1252
+ "start": 4466
1253
+ },
1254
+ {
1255
+ "length": 20,
1256
+ "start": 4672
1257
+ },
1258
+ {
1259
+ "length": 20,
1260
+ "start": 6648
1261
+ },
1262
+ {
1263
+ "length": 20,
1264
+ "start": 6851
1265
+ },
1266
+ {
1267
+ "length": 20,
1268
+ "start": 7040
1269
+ }
1270
+ ]
1271
+ },
1272
+ "contracts/type/NftId.sol": {
1273
+ "NftIdLib": [
1274
+ {
1275
+ "length": 20,
1276
+ "start": 1733
1277
+ },
1278
+ {
1279
+ "length": 20,
1280
+ "start": 5637
1281
+ },
1282
+ {
1283
+ "length": 20,
1284
+ "start": 10275
1285
+ },
1286
+ {
1287
+ "length": 20,
1288
+ "start": 13543
1289
+ },
1290
+ {
1291
+ "length": 20,
1292
+ "start": 14449
1293
+ }
1294
+ ]
1295
+ },
1296
+ "contracts/type/RoleId.sol": {
1297
+ "RoleIdLib": [
1298
+ {
1299
+ "length": 20,
1300
+ "start": 5112
1301
+ },
1302
+ {
1303
+ "length": 20,
1304
+ "start": 10814
1305
+ },
1306
+ {
1307
+ "length": 20,
1308
+ "start": 13162
1309
+ },
1310
+ {
1311
+ "length": 20,
1312
+ "start": 13304
1313
+ },
1314
+ {
1315
+ "length": 20,
1316
+ "start": 13362
1317
+ },
1318
+ {
1319
+ "length": 20,
1320
+ "start": 13421
1321
+ },
1322
+ {
1323
+ "length": 20,
1324
+ "start": 13479
1325
+ },
1326
+ {
1327
+ "length": 20,
1328
+ "start": 14750
1329
+ }
1330
+ ]
1331
+ },
1332
+ "contracts/type/Version.sol": {
1333
+ "VersionLib": [
1334
+ {
1335
+ "length": 20,
1336
+ "start": 1579
1337
+ },
1338
+ {
1339
+ "length": 20,
1340
+ "start": 2326
1341
+ }
1342
+ ],
1343
+ "VersionPartLib": [
1344
+ {
1345
+ "length": 20,
1346
+ "start": 5160
1347
+ },
1348
+ {
1349
+ "length": 20,
1350
+ "start": 12937
1351
+ }
1352
+ ]
1353
+ }
1354
+ },
1355
+ "deployedLinkReferences": {
1356
+ "contracts/type/Amount.sol": {
1357
+ "AmountLib": [
1358
+ {
1359
+ "length": 20,
1360
+ "start": 3629
1361
+ },
1362
+ {
1363
+ "length": 20,
1364
+ "start": 5150
1365
+ },
1366
+ {
1367
+ "length": 20,
1368
+ "start": 9040
1369
+ },
1370
+ {
1371
+ "length": 20,
1372
+ "start": 9289
1373
+ },
1374
+ {
1375
+ "length": 20,
1376
+ "start": 9543
1377
+ },
1378
+ {
1379
+ "length": 20,
1380
+ "start": 9792
1381
+ },
1382
+ {
1383
+ "length": 20,
1384
+ "start": 13646
1385
+ },
1386
+ {
1387
+ "length": 20,
1388
+ "start": 20522
1389
+ },
1390
+ {
1391
+ "length": 20,
1392
+ "start": 20676
1393
+ }
1394
+ ]
1395
+ },
1396
+ "contracts/type/Fee.sol": {
1397
+ "FeeLib": [
1398
+ {
1399
+ "length": 20,
1400
+ "start": 2716
1401
+ },
1402
+ {
1403
+ "length": 20,
1404
+ "start": 2927
1405
+ },
1406
+ {
1407
+ "length": 20,
1408
+ "start": 4252
1409
+ },
1410
+ {
1411
+ "length": 20,
1412
+ "start": 4458
1413
+ },
1414
+ {
1415
+ "length": 20,
1416
+ "start": 6434
1417
+ },
1418
+ {
1419
+ "length": 20,
1420
+ "start": 6637
1421
+ },
1422
+ {
1423
+ "length": 20,
1424
+ "start": 6826
1425
+ }
1426
+ ]
1427
+ },
1428
+ "contracts/type/NftId.sol": {
1429
+ "NftIdLib": [
1430
+ {
1431
+ "length": 20,
1432
+ "start": 1519
1433
+ },
1434
+ {
1435
+ "length": 20,
1436
+ "start": 5423
1437
+ },
1438
+ {
1439
+ "length": 20,
1440
+ "start": 10061
1441
+ },
1442
+ {
1443
+ "length": 20,
1444
+ "start": 13329
1445
+ },
1446
+ {
1447
+ "length": 20,
1448
+ "start": 14235
1449
+ }
1450
+ ]
1451
+ },
1452
+ "contracts/type/RoleId.sol": {
1453
+ "RoleIdLib": [
1454
+ {
1455
+ "length": 20,
1456
+ "start": 4898
1457
+ },
1458
+ {
1459
+ "length": 20,
1460
+ "start": 10600
1461
+ },
1462
+ {
1463
+ "length": 20,
1464
+ "start": 12948
1465
+ },
1466
+ {
1467
+ "length": 20,
1468
+ "start": 13090
1469
+ },
1470
+ {
1471
+ "length": 20,
1472
+ "start": 13148
1473
+ },
1474
+ {
1475
+ "length": 20,
1476
+ "start": 13207
1477
+ },
1478
+ {
1479
+ "length": 20,
1480
+ "start": 13265
1481
+ },
1482
+ {
1483
+ "length": 20,
1484
+ "start": 14536
1485
+ }
1486
+ ]
1487
+ },
1488
+ "contracts/type/Version.sol": {
1489
+ "VersionLib": [
1490
+ {
1491
+ "length": 20,
1492
+ "start": 1365
1493
+ },
1494
+ {
1495
+ "length": 20,
1496
+ "start": 2112
1497
+ }
1498
+ ],
1499
+ "VersionPartLib": [
1500
+ {
1501
+ "length": 20,
1502
+ "start": 4946
1503
+ },
1504
+ {
1505
+ "length": 20,
1506
+ "start": 12723
1507
+ }
1508
+ ]
1509
+ }
1510
+ }
1511
+ }