@etherisc/gif-next 0.0.2-f824182-503 → 0.0.2-f831797-539
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +411 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +644 -35
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1301 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +271 -236
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +851 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +936 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +712 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1143 -133
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +950 -157
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +783 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1599 -798
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +509 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2341 -875
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +984 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1284 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1046 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +693 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +552 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +968 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1093 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1724 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +801 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +556 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +630 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +409 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1013 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +540 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +428 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +384 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1021 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +689 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +816 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +653 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +777 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +649 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +578 -29
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +890 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +651 -68
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1177 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -66
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +269 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +425 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +521 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +78 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +97 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/Component.sol +215 -51
- package/contracts/components/Distribution.sol +280 -0
- package/contracts/components/IComponent.sol +74 -0
- package/contracts/components/IDistributionComponent.sol +71 -0
- package/contracts/components/IPoolComponent.sol +113 -0
- package/contracts/components/IProductComponent.sol +40 -0
- package/contracts/components/Pool.sol +277 -30
- package/contracts/components/Product.sol +252 -48
- package/contracts/instance/BundleManager.sol +127 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +92 -24
- package/contracts/instance/IInstanceService.sol +60 -0
- package/contracts/instance/Instance.sol +274 -51
- package/contracts/instance/InstanceAccessManager.sol +297 -0
- package/contracts/instance/InstanceReader.sol +294 -0
- package/contracts/instance/InstanceService.sol +489 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +175 -0
- package/contracts/instance/base/Lifecycle.sol +109 -0
- package/contracts/instance/module/IAccess.sol +47 -0
- package/contracts/instance/module/IBundle.sol +21 -0
- package/contracts/instance/module/IComponents.sol +35 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +72 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +33 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +336 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +450 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +62 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +98 -0
- package/contracts/instance/service/IPolicyService.sol +72 -0
- package/contracts/instance/service/IPoolService.sol +35 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +403 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +163 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +233 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +129 -62
- package/contracts/registry/IRegistry.sol +73 -41
- package/contracts/registry/IRegistryService.sol +67 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +408 -126
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +283 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +322 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/NftOwnable.sol +120 -0
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +169 -0
- package/contracts/shared/Registerable.sol +74 -0
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +58 -0
- package/contracts/shared/TokenHandler.sol +33 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +25 -0
- package/contracts/test/TestToken.sol +26 -0
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/test/Usdc.sol +26 -0
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +45 -20
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +30 -1
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +65 -15
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +89 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +95 -0
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +19 -4
- package/contracts/types/Timestamp.sol +31 -6
- package/contracts/types/UFixed.sol +151 -31
- package/contracts/types/Version.sol +108 -0
- package/package.json +14 -5
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -299
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/registry/IChainNft.sol +0 -21
@@ -0,0 +1,1177 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "RegistryService",
|
4
|
+
"sourceName": "contracts/registry/RegistryService.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": "caller",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorIServiceCallerUnknown",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "NftId",
|
59
|
+
"name": "nftId",
|
60
|
+
"type": "uint96"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
68
|
+
{
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "contractAddress",
|
71
|
+
"type": "address"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [],
|
79
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "account",
|
87
|
+
"type": "address"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"name": "ErrorNftOwnableNotOwner",
|
91
|
+
"type": "error"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"inputs": [
|
95
|
+
{
|
96
|
+
"internalType": "address",
|
97
|
+
"name": "registryAddress",
|
98
|
+
"type": "address"
|
99
|
+
}
|
100
|
+
],
|
101
|
+
"name": "ErrorNotRegistry",
|
102
|
+
"type": "error"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"inputs": [
|
106
|
+
{
|
107
|
+
"internalType": "address",
|
108
|
+
"name": "registerableAddress",
|
109
|
+
"type": "address"
|
110
|
+
}
|
111
|
+
],
|
112
|
+
"name": "InvalidAddress",
|
113
|
+
"type": "error"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [
|
117
|
+
{
|
118
|
+
"internalType": "address",
|
119
|
+
"name": "initialOwner",
|
120
|
+
"type": "address"
|
121
|
+
}
|
122
|
+
],
|
123
|
+
"name": "InvalidInitialOwner",
|
124
|
+
"type": "error"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"inputs": [],
|
128
|
+
"name": "InvalidInitialization",
|
129
|
+
"type": "error"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"inputs": [],
|
133
|
+
"name": "NotDistribution",
|
134
|
+
"type": "error"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"inputs": [],
|
138
|
+
"name": "NotInitializing",
|
139
|
+
"type": "error"
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"inputs": [],
|
143
|
+
"name": "NotInstance",
|
144
|
+
"type": "error"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"inputs": [],
|
148
|
+
"name": "NotPool",
|
149
|
+
"type": "error"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"inputs": [],
|
153
|
+
"name": "NotProduct",
|
154
|
+
"type": "error"
|
155
|
+
},
|
156
|
+
{
|
157
|
+
"inputs": [
|
158
|
+
{
|
159
|
+
"internalType": "address",
|
160
|
+
"name": "expectedOwner",
|
161
|
+
"type": "address"
|
162
|
+
}
|
163
|
+
],
|
164
|
+
"name": "NotRegisterableOwner",
|
165
|
+
"type": "error"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"inputs": [],
|
169
|
+
"name": "NotRegistryOwner",
|
170
|
+
"type": "error"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"inputs": [],
|
174
|
+
"name": "NotService",
|
175
|
+
"type": "error"
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"inputs": [],
|
179
|
+
"name": "RegisterableOwnerIsRegistered",
|
180
|
+
"type": "error"
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"inputs": [],
|
184
|
+
"name": "RegisterableOwnerIsZero",
|
185
|
+
"type": "error"
|
186
|
+
},
|
187
|
+
{
|
188
|
+
"inputs": [],
|
189
|
+
"name": "SelfRegistration",
|
190
|
+
"type": "error"
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"inputs": [
|
194
|
+
{
|
195
|
+
"internalType": "ObjectType",
|
196
|
+
"name": "expected",
|
197
|
+
"type": "uint8"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"internalType": "ObjectType",
|
201
|
+
"name": "found",
|
202
|
+
"type": "uint8"
|
203
|
+
}
|
204
|
+
],
|
205
|
+
"name": "UnexpectedRegisterableType",
|
206
|
+
"type": "error"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"anonymous": false,
|
210
|
+
"inputs": [
|
211
|
+
{
|
212
|
+
"indexed": false,
|
213
|
+
"internalType": "address",
|
214
|
+
"name": "authority",
|
215
|
+
"type": "address"
|
216
|
+
}
|
217
|
+
],
|
218
|
+
"name": "AuthorityUpdated",
|
219
|
+
"type": "event"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"anonymous": false,
|
223
|
+
"inputs": [
|
224
|
+
{
|
225
|
+
"indexed": false,
|
226
|
+
"internalType": "uint64",
|
227
|
+
"name": "version",
|
228
|
+
"type": "uint64"
|
229
|
+
}
|
230
|
+
],
|
231
|
+
"name": "Initialized",
|
232
|
+
"type": "event"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"inputs": [],
|
236
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
237
|
+
"outputs": [
|
238
|
+
{
|
239
|
+
"internalType": "bytes32",
|
240
|
+
"name": "",
|
241
|
+
"type": "bytes32"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
"stateMutability": "view",
|
245
|
+
"type": "function"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"inputs": [],
|
249
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
250
|
+
"outputs": [
|
251
|
+
{
|
252
|
+
"internalType": "bytes32",
|
253
|
+
"name": "",
|
254
|
+
"type": "bytes32"
|
255
|
+
}
|
256
|
+
],
|
257
|
+
"stateMutability": "view",
|
258
|
+
"type": "function"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"inputs": [],
|
262
|
+
"name": "REGISTRY_CREATION_CODE_HASH",
|
263
|
+
"outputs": [
|
264
|
+
{
|
265
|
+
"internalType": "bytes32",
|
266
|
+
"name": "",
|
267
|
+
"type": "bytes32"
|
268
|
+
}
|
269
|
+
],
|
270
|
+
"stateMutability": "view",
|
271
|
+
"type": "function"
|
272
|
+
},
|
273
|
+
{
|
274
|
+
"inputs": [],
|
275
|
+
"name": "authority",
|
276
|
+
"outputs": [
|
277
|
+
{
|
278
|
+
"internalType": "address",
|
279
|
+
"name": "",
|
280
|
+
"type": "address"
|
281
|
+
}
|
282
|
+
],
|
283
|
+
"stateMutability": "view",
|
284
|
+
"type": "function"
|
285
|
+
},
|
286
|
+
{
|
287
|
+
"inputs": [],
|
288
|
+
"name": "getDomain",
|
289
|
+
"outputs": [
|
290
|
+
{
|
291
|
+
"internalType": "ObjectType",
|
292
|
+
"name": "serviceDomain",
|
293
|
+
"type": "uint8"
|
294
|
+
}
|
295
|
+
],
|
296
|
+
"stateMutability": "pure",
|
297
|
+
"type": "function"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"inputs": [],
|
301
|
+
"name": "getFunctionConfigs",
|
302
|
+
"outputs": [
|
303
|
+
{
|
304
|
+
"components": [
|
305
|
+
{
|
306
|
+
"internalType": "ObjectType",
|
307
|
+
"name": "serviceDomain",
|
308
|
+
"type": "uint8"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"internalType": "bytes4[]",
|
312
|
+
"name": "selectors",
|
313
|
+
"type": "bytes4[]"
|
314
|
+
}
|
315
|
+
],
|
316
|
+
"internalType": "struct IRegistryService.FunctionConfig[]",
|
317
|
+
"name": "config",
|
318
|
+
"type": "tuple[]"
|
319
|
+
}
|
320
|
+
],
|
321
|
+
"stateMutability": "pure",
|
322
|
+
"type": "function"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"inputs": [],
|
326
|
+
"name": "getInitialInfo",
|
327
|
+
"outputs": [
|
328
|
+
{
|
329
|
+
"components": [
|
330
|
+
{
|
331
|
+
"internalType": "NftId",
|
332
|
+
"name": "nftId",
|
333
|
+
"type": "uint96"
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"internalType": "NftId",
|
337
|
+
"name": "parentNftId",
|
338
|
+
"type": "uint96"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"internalType": "ObjectType",
|
342
|
+
"name": "objectType",
|
343
|
+
"type": "uint8"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"internalType": "bool",
|
347
|
+
"name": "isInterceptor",
|
348
|
+
"type": "bool"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"internalType": "address",
|
352
|
+
"name": "objectAddress",
|
353
|
+
"type": "address"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"internalType": "address",
|
357
|
+
"name": "initialOwner",
|
358
|
+
"type": "address"
|
359
|
+
},
|
360
|
+
{
|
361
|
+
"internalType": "bytes",
|
362
|
+
"name": "data",
|
363
|
+
"type": "bytes"
|
364
|
+
}
|
365
|
+
],
|
366
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
367
|
+
"name": "info",
|
368
|
+
"type": "tuple"
|
369
|
+
}
|
370
|
+
],
|
371
|
+
"stateMutability": "view",
|
372
|
+
"type": "function"
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"inputs": [],
|
376
|
+
"name": "getMajorVersion",
|
377
|
+
"outputs": [
|
378
|
+
{
|
379
|
+
"internalType": "VersionPart",
|
380
|
+
"name": "majorVersion",
|
381
|
+
"type": "uint8"
|
382
|
+
}
|
383
|
+
],
|
384
|
+
"stateMutability": "view",
|
385
|
+
"type": "function"
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"inputs": [],
|
389
|
+
"name": "getNftId",
|
390
|
+
"outputs": [
|
391
|
+
{
|
392
|
+
"internalType": "NftId",
|
393
|
+
"name": "",
|
394
|
+
"type": "uint96"
|
395
|
+
}
|
396
|
+
],
|
397
|
+
"stateMutability": "view",
|
398
|
+
"type": "function"
|
399
|
+
},
|
400
|
+
{
|
401
|
+
"inputs": [],
|
402
|
+
"name": "getOwner",
|
403
|
+
"outputs": [
|
404
|
+
{
|
405
|
+
"internalType": "address",
|
406
|
+
"name": "",
|
407
|
+
"type": "address"
|
408
|
+
}
|
409
|
+
],
|
410
|
+
"stateMutability": "view",
|
411
|
+
"type": "function"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"inputs": [],
|
415
|
+
"name": "getRegistry",
|
416
|
+
"outputs": [
|
417
|
+
{
|
418
|
+
"internalType": "contract IRegistry",
|
419
|
+
"name": "",
|
420
|
+
"type": "address"
|
421
|
+
}
|
422
|
+
],
|
423
|
+
"stateMutability": "view",
|
424
|
+
"type": "function"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"inputs": [],
|
428
|
+
"name": "getRegistryAddress",
|
429
|
+
"outputs": [
|
430
|
+
{
|
431
|
+
"internalType": "address",
|
432
|
+
"name": "",
|
433
|
+
"type": "address"
|
434
|
+
}
|
435
|
+
],
|
436
|
+
"stateMutability": "view",
|
437
|
+
"type": "function"
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"inputs": [],
|
441
|
+
"name": "getVersion",
|
442
|
+
"outputs": [
|
443
|
+
{
|
444
|
+
"internalType": "Version",
|
445
|
+
"name": "",
|
446
|
+
"type": "uint24"
|
447
|
+
}
|
448
|
+
],
|
449
|
+
"stateMutability": "pure",
|
450
|
+
"type": "function"
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"inputs": [],
|
454
|
+
"name": "initializeERC165",
|
455
|
+
"outputs": [],
|
456
|
+
"stateMutability": "nonpayable",
|
457
|
+
"type": "function"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"inputs": [
|
461
|
+
{
|
462
|
+
"internalType": "address",
|
463
|
+
"name": "initialOwner",
|
464
|
+
"type": "address"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"internalType": "address",
|
468
|
+
"name": "registryAddress",
|
469
|
+
"type": "address"
|
470
|
+
}
|
471
|
+
],
|
472
|
+
"name": "initializeNftOwnable",
|
473
|
+
"outputs": [],
|
474
|
+
"stateMutability": "nonpayable",
|
475
|
+
"type": "function"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"inputs": [
|
479
|
+
{
|
480
|
+
"internalType": "address",
|
481
|
+
"name": "registryAddress",
|
482
|
+
"type": "address"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"internalType": "NftId",
|
486
|
+
"name": "parentNftId",
|
487
|
+
"type": "uint96"
|
488
|
+
},
|
489
|
+
{
|
490
|
+
"internalType": "ObjectType",
|
491
|
+
"name": "objectType",
|
492
|
+
"type": "uint8"
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"internalType": "bool",
|
496
|
+
"name": "isInterceptor",
|
497
|
+
"type": "bool"
|
498
|
+
},
|
499
|
+
{
|
500
|
+
"internalType": "address",
|
501
|
+
"name": "initialOwner",
|
502
|
+
"type": "address"
|
503
|
+
},
|
504
|
+
{
|
505
|
+
"internalType": "bytes",
|
506
|
+
"name": "registryData",
|
507
|
+
"type": "bytes"
|
508
|
+
}
|
509
|
+
],
|
510
|
+
"name": "initializeRegisterable",
|
511
|
+
"outputs": [],
|
512
|
+
"stateMutability": "nonpayable",
|
513
|
+
"type": "function"
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"inputs": [
|
517
|
+
{
|
518
|
+
"internalType": "address",
|
519
|
+
"name": "registryAddress",
|
520
|
+
"type": "address"
|
521
|
+
}
|
522
|
+
],
|
523
|
+
"name": "initializeRegistryLinked",
|
524
|
+
"outputs": [],
|
525
|
+
"stateMutability": "nonpayable",
|
526
|
+
"type": "function"
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"inputs": [
|
530
|
+
{
|
531
|
+
"internalType": "address",
|
532
|
+
"name": "registry",
|
533
|
+
"type": "address"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"internalType": "address",
|
537
|
+
"name": "initialOwner",
|
538
|
+
"type": "address"
|
539
|
+
}
|
540
|
+
],
|
541
|
+
"name": "initializeService",
|
542
|
+
"outputs": [],
|
543
|
+
"stateMutability": "nonpayable",
|
544
|
+
"type": "function"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"inputs": [
|
548
|
+
{
|
549
|
+
"internalType": "address",
|
550
|
+
"name": "activatedBy",
|
551
|
+
"type": "address"
|
552
|
+
},
|
553
|
+
{
|
554
|
+
"internalType": "bytes",
|
555
|
+
"name": "data",
|
556
|
+
"type": "bytes"
|
557
|
+
}
|
558
|
+
],
|
559
|
+
"name": "initializeVersionable",
|
560
|
+
"outputs": [],
|
561
|
+
"stateMutability": "nonpayable",
|
562
|
+
"type": "function"
|
563
|
+
},
|
564
|
+
{
|
565
|
+
"inputs": [],
|
566
|
+
"name": "isConsumingScheduledOp",
|
567
|
+
"outputs": [
|
568
|
+
{
|
569
|
+
"internalType": "bytes4",
|
570
|
+
"name": "",
|
571
|
+
"type": "bytes4"
|
572
|
+
}
|
573
|
+
],
|
574
|
+
"stateMutability": "view",
|
575
|
+
"type": "function"
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"inputs": [],
|
579
|
+
"name": "linkToRegisteredNftId",
|
580
|
+
"outputs": [],
|
581
|
+
"stateMutability": "nonpayable",
|
582
|
+
"type": "function"
|
583
|
+
},
|
584
|
+
{
|
585
|
+
"inputs": [
|
586
|
+
{
|
587
|
+
"components": [
|
588
|
+
{
|
589
|
+
"internalType": "NftId",
|
590
|
+
"name": "nftId",
|
591
|
+
"type": "uint96"
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"internalType": "NftId",
|
595
|
+
"name": "parentNftId",
|
596
|
+
"type": "uint96"
|
597
|
+
},
|
598
|
+
{
|
599
|
+
"internalType": "ObjectType",
|
600
|
+
"name": "objectType",
|
601
|
+
"type": "uint8"
|
602
|
+
},
|
603
|
+
{
|
604
|
+
"internalType": "bool",
|
605
|
+
"name": "isInterceptor",
|
606
|
+
"type": "bool"
|
607
|
+
},
|
608
|
+
{
|
609
|
+
"internalType": "address",
|
610
|
+
"name": "objectAddress",
|
611
|
+
"type": "address"
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"internalType": "address",
|
615
|
+
"name": "initialOwner",
|
616
|
+
"type": "address"
|
617
|
+
},
|
618
|
+
{
|
619
|
+
"internalType": "bytes",
|
620
|
+
"name": "data",
|
621
|
+
"type": "bytes"
|
622
|
+
}
|
623
|
+
],
|
624
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
625
|
+
"name": "info",
|
626
|
+
"type": "tuple"
|
627
|
+
}
|
628
|
+
],
|
629
|
+
"name": "registerBundle",
|
630
|
+
"outputs": [
|
631
|
+
{
|
632
|
+
"internalType": "NftId",
|
633
|
+
"name": "nftId",
|
634
|
+
"type": "uint96"
|
635
|
+
}
|
636
|
+
],
|
637
|
+
"stateMutability": "nonpayable",
|
638
|
+
"type": "function"
|
639
|
+
},
|
640
|
+
{
|
641
|
+
"inputs": [
|
642
|
+
{
|
643
|
+
"internalType": "contract IComponent",
|
644
|
+
"name": "distribution",
|
645
|
+
"type": "address"
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"internalType": "address",
|
649
|
+
"name": "owner",
|
650
|
+
"type": "address"
|
651
|
+
}
|
652
|
+
],
|
653
|
+
"name": "registerDistribution",
|
654
|
+
"outputs": [
|
655
|
+
{
|
656
|
+
"components": [
|
657
|
+
{
|
658
|
+
"internalType": "NftId",
|
659
|
+
"name": "nftId",
|
660
|
+
"type": "uint96"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"internalType": "NftId",
|
664
|
+
"name": "parentNftId",
|
665
|
+
"type": "uint96"
|
666
|
+
},
|
667
|
+
{
|
668
|
+
"internalType": "ObjectType",
|
669
|
+
"name": "objectType",
|
670
|
+
"type": "uint8"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"internalType": "bool",
|
674
|
+
"name": "isInterceptor",
|
675
|
+
"type": "bool"
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"internalType": "address",
|
679
|
+
"name": "objectAddress",
|
680
|
+
"type": "address"
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"internalType": "address",
|
684
|
+
"name": "initialOwner",
|
685
|
+
"type": "address"
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"internalType": "bytes",
|
689
|
+
"name": "data",
|
690
|
+
"type": "bytes"
|
691
|
+
}
|
692
|
+
],
|
693
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
694
|
+
"name": "info",
|
695
|
+
"type": "tuple"
|
696
|
+
}
|
697
|
+
],
|
698
|
+
"stateMutability": "nonpayable",
|
699
|
+
"type": "function"
|
700
|
+
},
|
701
|
+
{
|
702
|
+
"inputs": [
|
703
|
+
{
|
704
|
+
"components": [
|
705
|
+
{
|
706
|
+
"internalType": "NftId",
|
707
|
+
"name": "nftId",
|
708
|
+
"type": "uint96"
|
709
|
+
},
|
710
|
+
{
|
711
|
+
"internalType": "NftId",
|
712
|
+
"name": "parentNftId",
|
713
|
+
"type": "uint96"
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"internalType": "ObjectType",
|
717
|
+
"name": "objectType",
|
718
|
+
"type": "uint8"
|
719
|
+
},
|
720
|
+
{
|
721
|
+
"internalType": "bool",
|
722
|
+
"name": "isInterceptor",
|
723
|
+
"type": "bool"
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"internalType": "address",
|
727
|
+
"name": "objectAddress",
|
728
|
+
"type": "address"
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"internalType": "address",
|
732
|
+
"name": "initialOwner",
|
733
|
+
"type": "address"
|
734
|
+
},
|
735
|
+
{
|
736
|
+
"internalType": "bytes",
|
737
|
+
"name": "data",
|
738
|
+
"type": "bytes"
|
739
|
+
}
|
740
|
+
],
|
741
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
742
|
+
"name": "info",
|
743
|
+
"type": "tuple"
|
744
|
+
}
|
745
|
+
],
|
746
|
+
"name": "registerDistributor",
|
747
|
+
"outputs": [
|
748
|
+
{
|
749
|
+
"internalType": "NftId",
|
750
|
+
"name": "nftId",
|
751
|
+
"type": "uint96"
|
752
|
+
}
|
753
|
+
],
|
754
|
+
"stateMutability": "nonpayable",
|
755
|
+
"type": "function"
|
756
|
+
},
|
757
|
+
{
|
758
|
+
"inputs": [
|
759
|
+
{
|
760
|
+
"internalType": "contract IRegisterable",
|
761
|
+
"name": "instance",
|
762
|
+
"type": "address"
|
763
|
+
},
|
764
|
+
{
|
765
|
+
"internalType": "address",
|
766
|
+
"name": "owner",
|
767
|
+
"type": "address"
|
768
|
+
}
|
769
|
+
],
|
770
|
+
"name": "registerInstance",
|
771
|
+
"outputs": [
|
772
|
+
{
|
773
|
+
"components": [
|
774
|
+
{
|
775
|
+
"internalType": "NftId",
|
776
|
+
"name": "nftId",
|
777
|
+
"type": "uint96"
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"internalType": "NftId",
|
781
|
+
"name": "parentNftId",
|
782
|
+
"type": "uint96"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"internalType": "ObjectType",
|
786
|
+
"name": "objectType",
|
787
|
+
"type": "uint8"
|
788
|
+
},
|
789
|
+
{
|
790
|
+
"internalType": "bool",
|
791
|
+
"name": "isInterceptor",
|
792
|
+
"type": "bool"
|
793
|
+
},
|
794
|
+
{
|
795
|
+
"internalType": "address",
|
796
|
+
"name": "objectAddress",
|
797
|
+
"type": "address"
|
798
|
+
},
|
799
|
+
{
|
800
|
+
"internalType": "address",
|
801
|
+
"name": "initialOwner",
|
802
|
+
"type": "address"
|
803
|
+
},
|
804
|
+
{
|
805
|
+
"internalType": "bytes",
|
806
|
+
"name": "data",
|
807
|
+
"type": "bytes"
|
808
|
+
}
|
809
|
+
],
|
810
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
811
|
+
"name": "info",
|
812
|
+
"type": "tuple"
|
813
|
+
}
|
814
|
+
],
|
815
|
+
"stateMutability": "nonpayable",
|
816
|
+
"type": "function"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"inputs": [
|
820
|
+
{
|
821
|
+
"internalType": "bytes4",
|
822
|
+
"name": "interfaceId",
|
823
|
+
"type": "bytes4"
|
824
|
+
}
|
825
|
+
],
|
826
|
+
"name": "registerInterface",
|
827
|
+
"outputs": [],
|
828
|
+
"stateMutability": "nonpayable",
|
829
|
+
"type": "function"
|
830
|
+
},
|
831
|
+
{
|
832
|
+
"inputs": [
|
833
|
+
{
|
834
|
+
"components": [
|
835
|
+
{
|
836
|
+
"internalType": "NftId",
|
837
|
+
"name": "nftId",
|
838
|
+
"type": "uint96"
|
839
|
+
},
|
840
|
+
{
|
841
|
+
"internalType": "NftId",
|
842
|
+
"name": "parentNftId",
|
843
|
+
"type": "uint96"
|
844
|
+
},
|
845
|
+
{
|
846
|
+
"internalType": "ObjectType",
|
847
|
+
"name": "objectType",
|
848
|
+
"type": "uint8"
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"internalType": "bool",
|
852
|
+
"name": "isInterceptor",
|
853
|
+
"type": "bool"
|
854
|
+
},
|
855
|
+
{
|
856
|
+
"internalType": "address",
|
857
|
+
"name": "objectAddress",
|
858
|
+
"type": "address"
|
859
|
+
},
|
860
|
+
{
|
861
|
+
"internalType": "address",
|
862
|
+
"name": "initialOwner",
|
863
|
+
"type": "address"
|
864
|
+
},
|
865
|
+
{
|
866
|
+
"internalType": "bytes",
|
867
|
+
"name": "data",
|
868
|
+
"type": "bytes"
|
869
|
+
}
|
870
|
+
],
|
871
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
872
|
+
"name": "info",
|
873
|
+
"type": "tuple"
|
874
|
+
}
|
875
|
+
],
|
876
|
+
"name": "registerPolicy",
|
877
|
+
"outputs": [
|
878
|
+
{
|
879
|
+
"internalType": "NftId",
|
880
|
+
"name": "nftId",
|
881
|
+
"type": "uint96"
|
882
|
+
}
|
883
|
+
],
|
884
|
+
"stateMutability": "nonpayable",
|
885
|
+
"type": "function"
|
886
|
+
},
|
887
|
+
{
|
888
|
+
"inputs": [
|
889
|
+
{
|
890
|
+
"internalType": "contract IComponent",
|
891
|
+
"name": "pool",
|
892
|
+
"type": "address"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"internalType": "address",
|
896
|
+
"name": "owner",
|
897
|
+
"type": "address"
|
898
|
+
}
|
899
|
+
],
|
900
|
+
"name": "registerPool",
|
901
|
+
"outputs": [
|
902
|
+
{
|
903
|
+
"components": [
|
904
|
+
{
|
905
|
+
"internalType": "NftId",
|
906
|
+
"name": "nftId",
|
907
|
+
"type": "uint96"
|
908
|
+
},
|
909
|
+
{
|
910
|
+
"internalType": "NftId",
|
911
|
+
"name": "parentNftId",
|
912
|
+
"type": "uint96"
|
913
|
+
},
|
914
|
+
{
|
915
|
+
"internalType": "ObjectType",
|
916
|
+
"name": "objectType",
|
917
|
+
"type": "uint8"
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"internalType": "bool",
|
921
|
+
"name": "isInterceptor",
|
922
|
+
"type": "bool"
|
923
|
+
},
|
924
|
+
{
|
925
|
+
"internalType": "address",
|
926
|
+
"name": "objectAddress",
|
927
|
+
"type": "address"
|
928
|
+
},
|
929
|
+
{
|
930
|
+
"internalType": "address",
|
931
|
+
"name": "initialOwner",
|
932
|
+
"type": "address"
|
933
|
+
},
|
934
|
+
{
|
935
|
+
"internalType": "bytes",
|
936
|
+
"name": "data",
|
937
|
+
"type": "bytes"
|
938
|
+
}
|
939
|
+
],
|
940
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
941
|
+
"name": "info",
|
942
|
+
"type": "tuple"
|
943
|
+
}
|
944
|
+
],
|
945
|
+
"stateMutability": "nonpayable",
|
946
|
+
"type": "function"
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"inputs": [
|
950
|
+
{
|
951
|
+
"internalType": "contract IComponent",
|
952
|
+
"name": "product",
|
953
|
+
"type": "address"
|
954
|
+
},
|
955
|
+
{
|
956
|
+
"internalType": "address",
|
957
|
+
"name": "owner",
|
958
|
+
"type": "address"
|
959
|
+
}
|
960
|
+
],
|
961
|
+
"name": "registerProduct",
|
962
|
+
"outputs": [
|
963
|
+
{
|
964
|
+
"components": [
|
965
|
+
{
|
966
|
+
"internalType": "NftId",
|
967
|
+
"name": "nftId",
|
968
|
+
"type": "uint96"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"internalType": "NftId",
|
972
|
+
"name": "parentNftId",
|
973
|
+
"type": "uint96"
|
974
|
+
},
|
975
|
+
{
|
976
|
+
"internalType": "ObjectType",
|
977
|
+
"name": "objectType",
|
978
|
+
"type": "uint8"
|
979
|
+
},
|
980
|
+
{
|
981
|
+
"internalType": "bool",
|
982
|
+
"name": "isInterceptor",
|
983
|
+
"type": "bool"
|
984
|
+
},
|
985
|
+
{
|
986
|
+
"internalType": "address",
|
987
|
+
"name": "objectAddress",
|
988
|
+
"type": "address"
|
989
|
+
},
|
990
|
+
{
|
991
|
+
"internalType": "address",
|
992
|
+
"name": "initialOwner",
|
993
|
+
"type": "address"
|
994
|
+
},
|
995
|
+
{
|
996
|
+
"internalType": "bytes",
|
997
|
+
"name": "data",
|
998
|
+
"type": "bytes"
|
999
|
+
}
|
1000
|
+
],
|
1001
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1002
|
+
"name": "info",
|
1003
|
+
"type": "tuple"
|
1004
|
+
}
|
1005
|
+
],
|
1006
|
+
"stateMutability": "nonpayable",
|
1007
|
+
"type": "function"
|
1008
|
+
},
|
1009
|
+
{
|
1010
|
+
"inputs": [
|
1011
|
+
{
|
1012
|
+
"components": [
|
1013
|
+
{
|
1014
|
+
"internalType": "NftId",
|
1015
|
+
"name": "nftId",
|
1016
|
+
"type": "uint96"
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"internalType": "NftId",
|
1020
|
+
"name": "parentNftId",
|
1021
|
+
"type": "uint96"
|
1022
|
+
},
|
1023
|
+
{
|
1024
|
+
"internalType": "ObjectType",
|
1025
|
+
"name": "objectType",
|
1026
|
+
"type": "uint8"
|
1027
|
+
},
|
1028
|
+
{
|
1029
|
+
"internalType": "bool",
|
1030
|
+
"name": "isInterceptor",
|
1031
|
+
"type": "bool"
|
1032
|
+
},
|
1033
|
+
{
|
1034
|
+
"internalType": "address",
|
1035
|
+
"name": "objectAddress",
|
1036
|
+
"type": "address"
|
1037
|
+
},
|
1038
|
+
{
|
1039
|
+
"internalType": "address",
|
1040
|
+
"name": "initialOwner",
|
1041
|
+
"type": "address"
|
1042
|
+
},
|
1043
|
+
{
|
1044
|
+
"internalType": "bytes",
|
1045
|
+
"name": "data",
|
1046
|
+
"type": "bytes"
|
1047
|
+
}
|
1048
|
+
],
|
1049
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1050
|
+
"name": "info",
|
1051
|
+
"type": "tuple"
|
1052
|
+
}
|
1053
|
+
],
|
1054
|
+
"name": "registerStake",
|
1055
|
+
"outputs": [
|
1056
|
+
{
|
1057
|
+
"internalType": "NftId",
|
1058
|
+
"name": "nftId",
|
1059
|
+
"type": "uint96"
|
1060
|
+
}
|
1061
|
+
],
|
1062
|
+
"stateMutability": "nonpayable",
|
1063
|
+
"type": "function"
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
"inputs": [
|
1067
|
+
{
|
1068
|
+
"internalType": "address",
|
1069
|
+
"name": "newAuthority",
|
1070
|
+
"type": "address"
|
1071
|
+
}
|
1072
|
+
],
|
1073
|
+
"name": "setAuthority",
|
1074
|
+
"outputs": [],
|
1075
|
+
"stateMutability": "nonpayable",
|
1076
|
+
"type": "function"
|
1077
|
+
},
|
1078
|
+
{
|
1079
|
+
"inputs": [
|
1080
|
+
{
|
1081
|
+
"internalType": "bytes4",
|
1082
|
+
"name": "interfaceId",
|
1083
|
+
"type": "bytes4"
|
1084
|
+
}
|
1085
|
+
],
|
1086
|
+
"name": "supportsInterface",
|
1087
|
+
"outputs": [
|
1088
|
+
{
|
1089
|
+
"internalType": "bool",
|
1090
|
+
"name": "",
|
1091
|
+
"type": "bool"
|
1092
|
+
}
|
1093
|
+
],
|
1094
|
+
"stateMutability": "view",
|
1095
|
+
"type": "function"
|
1096
|
+
},
|
1097
|
+
{
|
1098
|
+
"inputs": [
|
1099
|
+
{
|
1100
|
+
"internalType": "bytes",
|
1101
|
+
"name": "data",
|
1102
|
+
"type": "bytes"
|
1103
|
+
}
|
1104
|
+
],
|
1105
|
+
"name": "upgradeVersionable",
|
1106
|
+
"outputs": [],
|
1107
|
+
"stateMutability": "nonpayable",
|
1108
|
+
"type": "function"
|
1109
|
+
}
|
1110
|
+
],
|
1111
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612d7080620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063675393bf1161011a578063b68d1809116100ad578063cde749f41161007c578063cde749f414610483578063ea8665721461048b578063ed841d0c1461049e578063f21de1e814610344578063f7c34ee0146104a657600080fd5b8063b68d18091461043e578063bf7e214f14610453578063c13de9971461045b578063c2bf08c81461047057600080fd5b8063893d20e8116100e9578063893d20e8146103f95780638fb36037146104015780638fbc2d8114610416578063ada9652e1461042957600080fd5b8063675393bf146103ad5780637286e5e5146103c05780637a9e5e4b146103d35780638105cc7f146103e657600080fd5b8063329d6e74116101925780635ab1bd53116101615780635ab1bd53146103445780635c992fed146103695780635d9662891461037c578063644c45e01461038f57600080fd5b8063329d6e74146102eb57806336fc697e146102fe57806349bb9e4b1461030657806357a8fba71461031957600080fd5b8063138461e0116101ce578063138461e0146102865780631eff4b2214610290578063214cdb80146102c557806327bb7a33146102d857600080fd5b806301ffc9a714610200578063026bc43b146102425780630d8e6e2c146102625780630fec111c1461027e575b600080fd5b61022d61020e3660046122fe565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610255610250366004612354565b6104b9565b60405161023991906123dd565b61026a610657565b60405162ffffff9091168152602001610239565b6102556106e1565b61028e61087d565b005b6102b77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610239565b61028e6102d33660046122fe565b610a84565b61028e6102e63660046125a6565b610ab1565b61028e6102f936600461263e565b610b3d565b61028e610c8a565b61028e610314366004612672565b610cd0565b61032c6103273660046126c1565b610dcf565b6040516001600160601b039091168152602001610239565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610239565b61032c6103773660046126c1565b610e5e565b61025561038a366004612354565b610e74565b600080516020612cdb833981519152546001600160601b031661032c565b61028e6103bb366004612793565b610fb4565b6102556103ce366004612354565b6110c7565b61028e6103e1366004612793565b611174565b61032c6103f43660046126c1565b6111f7565b61035161120d565b610409611344565b60405161023991906127b0565b610255610424366004612354565b61137c565b6102b7600080516020612cdb83398151915281565b60285b60405160ff9091168152602001610239565b610351611429565b610463611445565b60405161023991906127c5565b61032c61047e3660046126c1565b611a31565b610441611a47565b61028e610499366004612354565b611abe565b6102b7600081565b61028e6104b4366004612354565b611b56565b6104c16122c0565b6104ce335b600036611bcd565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906105019063ca8e409f60e01b906004016127b0565b602060405180830381865afa15801561051e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610542919061287d565b61055f57604051636795c76360e01b815260040160405180910390fd5b61056c8360465b84611cd3565b90506105806001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016105ab91906123dd565b6020604051808303816000875af11580156105ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee91906128a5565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561063957600080fd5b505af115801561064d573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156106b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc91906128c2565b905090565b6106e96122c0565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3018054600093916060840191610779906128e7565b80601f01602080910402602001604051908101604052809291908181526020018280546107a5906128e7565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b50505050508152505090506040518060e00160405280610810600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b0316815260200161086161120d565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020612cdb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156108ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610910919061287d565b156109415780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306109546001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561099c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c0919061287d565b6109e85760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610938565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6091906128a5565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b610a8c611ec3565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610ab9611ec3565b610ac38287611b56565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610b338382612967565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610b5f610657565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610b9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc39190612a26565b600080516020612d1b8339815191528054600160401b900460ff1680610bf6575080546001600160401b03808416911610155b15610c145760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610c3e83611efc565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610c92611ec3565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020612d1b8339815191528054600160401b810460ff1615906001600160401b0316600081158015610d035750825b90506000826001600160401b03166001148015610d1f5750303b155b905081158015610d2d575080155b15610d4b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d7557845460ff60401b1916600160401b1785555b610d7f8787611f04565b8315610dc657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6000610dda336104c6565b610de582607a61202b565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610e159085906004016123dd565b6020604051808303816000875af1158015610e34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5891906128a5565b92915050565b6000610e69336104c6565b610de58260d361202b565b610e7c6122c0565b610e85336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610eb890631e63cf4560e01b906004016127b0565b602060405180830381865afa158015610ed5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef9919061287d565b610f1657604051637a71998760e01b815260040160405180910390fd5b610f2183606e610566565b9050610f356001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610f6091906123dd565b6020604051808303816000875af1158015610f7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa391906128a5565b6001600160601b0316815292915050565b610fbc611ec3565b806001600160a01b03163b600003610ff25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610938565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a7906110389063230c0c8160e11b906004016127b0565b602060405180830381865afa925050508015611071575060408051601f3d908101601f1916820190925261106e9181019061287d565b60015b6110995760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610938565b806110c25760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610938565b505b50565b6110cf6122c0565b6110d8336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061110b9063f20236f360e01b906004016127b0565b602060405180830381865afa158015611128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114c919061287d565b61116957604051636f61f64160e01b815260040160405180910390fd5b610f2183608c610566565b3361117d611429565b6001600160a01b0316816001600160a01b0316146111b85760405162d1953b60e31b81526001600160a01b0382166004820152602401610938565b816001600160a01b03163b6000036111ee576040516361798f2f60e11b81526001600160a01b0383166004820152602401610938565b6110c282612136565b6000611202336104c6565b610de582605061202b565b600080600080516020612cdb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561127d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a1919061287d565b1561132e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611304573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113289190612a5a565b91505090565b54600160601b90046001600160a01b0316919050565b600080516020612cfb833981519152805460009190600160a01b900460ff1661136e576000611328565b638fb3603760e01b91505090565b6113846122c0565b61138d336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906113c090637895d0ed60e01b906004016127b0565b602060405180830381865afa1580156113dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611401919061287d565b61141e576040516308707e3160e41b815260040160405180910390fd5b610f21836078610566565b600080516020612cfb833981519152546001600160a01b031690565b6040805160088082526101208201909252606091816020015b60408051808201909152600081526060602082015281526020019060019003908161145e57905050905061149060d390565b816000815181106114a3576114a3612a77565b60209081029190910181015160ff929092169091526040805160008082529281019091529050816000815181106114dc576114dc612a77565b6020026020010151602001819052506114f360d290565b8160018151811061150657611506612a77565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160018151811061154c5761154c612a77565b602002602001015160200181905250635c992fed60e01b8160018151811061157657611576612a77565b60200260200101516020015160008151811061159457611594612a77565b6001600160e01b0319909216602092830291909101909101526115b560d490565b816002815181106115c8576115c8612a77565b60209081029190910181015160ff92909216909152604080516000815291820190528151829060029081106115ff576115ff612a77565b60200260200101516020018190525061161660dc90565b8160038151811061162957611629612a77565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160038151811061166f5761166f612a77565b60200260200101516020018190525063c2bf08c860e01b8160038151811061169957611699612a77565b6020026020010151602001516000815181106116b7576116b7612a77565b6001600160e01b0319909216602092830291909101909101526116d8606e90565b816004815181106116eb576116eb612a77565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160048151811061173157611731612a77565b602002602001015160200181905250635d96628960e01b8160048151811061175b5761175b612a77565b60200260200101516020015160008151811061177957611779612a77565b6001600160e01b03199092166020928302919091019091015261179a608c90565b816005815181106117ad576117ad612a77565b602090810291909101015160ff9190911690526040805160018082528183019092529081602001602082028036833701905050816005815181106117f3576117f3612a77565b602002602001015160200181905250637286e5e560e01b8160058151811061181d5761181d612a77565b60200260200101516020015160008151811061183b5761183b612a77565b6001600160e01b03199092166020928302919091019091015261185c607890565b8160068151811061186f5761186f612a77565b602090810291909101015160ff919091169052604080516002808252606082019092529081602001602082028036833701905050816006815181106118b6576118b6612a77565b602002602001015160200181905250638fbc2d8160e01b816006815181106118e0576118e0612a77565b6020026020010151602001516000815181106118fe576118fe612a77565b6001600160e01b03199092166020928302919091019091015280516357a8fba760e01b908290600690811061193557611935612a77565b60200260200101516020015160018151811061195357611953612a77565b6001600160e01b031990921660209283029190910190910152611974604690565b8160078151811061198757611987612a77565b602090810291909101015160ff9190911690526040805160018082528183019092529081602001602082028036833701905050816007815181106119cd576119cd612a77565b60200260200101516020018190525063026bc43b60e01b816007815181106119f7576119f7612a77565b602002602001015160200151600081518110611a1557611a15612a77565b6001600160e01b03199092166020928302919091019091015290565b6000611a3c336104c6565b610de58260dc61202b565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611a9a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc9190612a98565b611ac6611ec3565b611b4682836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2c91906128a5565b603c60008560405180602001604052806000815250610ab1565b6110c2637b6a51fd60e01b610a84565b611b5e611ec3565b611b6781610fb4565b611b6f610c8a565b6001600160a01b038216611b965760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020612cdb83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020612cfb833981519152600080611c08611bea611429565b8730611bfa600460008a8c612ab5565b611c0391612adf565b612197565b9150915081611ccb5763ffffffff811615611ca857825460ff60a01b1916600160a01b178355611c36611429565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c6593929190612b0f565b600060405180830381600087803b158015611c7f57600080fd5b505af1158015611c93573d6000803e3d6000fd5b5050845460ff60a01b1916855550611ccb9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610938565b505050505050565b611cdb6122c0565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611d19573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d419190810190612b94565b6001600160a01b0385166080820152604081015190915060ff848116911614611d90576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610938565b60a08101516001600160a01b0380821690841614611dcc5760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610938565b846001600160a01b0316816001600160a01b031603611dfe576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611e2557604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9d919061287d565b15611ebb57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b600080516020612d1b83398151915254600160401b900460ff16611efa57604051631afcd79f60e31b815260040160405180910390fd5b565b6101fb611ec3565b600080516020612d1b8339815191528054600160401b810460ff1615906001600160401b0316600081158015611f375750825b90506000826001600160401b03166001148015611f535750303b155b905081158015611f61575080155b15611f7f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611fa957845460ff60401b1916600160401b1785555b60008087806020019051810190611fc09190612c57565b91509150611fcd816122a3565b611fd7828a611abe565b611fe763aa745bc360e01b610a84565b50508315610dc657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610dbd565b60006080830152604082015160ff82811691161461206f576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610938565b60a08201516001600160a01b03811661209b57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156120ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612113919061287d565b1561213157604051637142ceb360e11b815260040160405180910390fd5b505050565b600080516020612cfb83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516122069190612c86565b600060405180830381855afa9150503d8060008114612241576040519150601f19603f3d011682016040523d82523d6000602084013e612246565b606091505b50915091508115612298576040815110612278578080602001905181019061226e9190612ca2565b9094509250612298565b60208151106122985780806020019051810190612295919061287d565b93505b505094509492505050565b6122ab611ec3565b6110c4816122b7611ec3565b6110c481612136565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561231057600080fd5b81356001600160e01b03198116811461232857600080fd5b9392505050565b6001600160a01b03811681146110c457600080fd5b803561234f8161232f565b919050565b6000806040838503121561236757600080fd5b82356123728161232f565b915060208301356123828161232f565b809150509250929050565b60005b838110156123a8578181015183820152602001612390565b50506000910152565b600081518084526123c981602086016020860161238d565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161244660c08401826001600160a01b03169052565b5060c083015160e0808401526124606101008401826123b1565b949350505050565b6001600160601b03811681146110c457600080fd5b803561234f81612468565b60ff811681146110c457600080fd5b803561234f81612488565b80151581146110c457600080fd5b803561234f816124a2565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156124f3576124f36124bb565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612521576125216124bb565b604052919050565b60006001600160401b03821115612542576125426124bb565b50601f01601f191660200190565b600082601f83011261256157600080fd5b813561257461256f82612529565b6124f9565b81815284602083860101111561258957600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c087890312156125bf57600080fd5b86356125ca8161232f565b955060208701356125da81612468565b945060408701356125ea81612488565b935060608701356125fa816124a2565b9250608087013561260a8161232f565b915060a08701356001600160401b0381111561262557600080fd5b61263189828a01612550565b9150509295509295509295565b60006020828403121561265057600080fd5b81356001600160401b0381111561266657600080fd5b61246084828501612550565b6000806040838503121561268557600080fd5b82356126908161232f565b915060208301356001600160401b038111156126ab57600080fd5b6126b785828601612550565b9150509250929050565b6000602082840312156126d357600080fd5b81356001600160401b03808211156126ea57600080fd5b9083019060e082860312156126fe57600080fd5b6127066124d1565b61270f8361247d565b815261271d6020840161247d565b602082015261272e60408401612497565b604082015261273f606084016124b0565b606082015261275060808401612344565b608082015261276160a08401612344565b60a082015260c08301358281111561277857600080fd5b61278487828601612550565b60c08301525095945050505050565b6000602082840312156127a557600080fd5b81356123288161232f565b6001600160e01b031991909116815260200190565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b8481101561286357898403603f190186528251805160ff168552880151888501889052805188860181905290890190839060608701905b8083101561284e5783516001600160e01b0319168252928b019260019290920191908b0190612824565b50978a019795505050918701916001016127ed565b50919998505050505050505050565b805161234f816124a2565b60006020828403121561288f57600080fd5b8151612328816124a2565b805161234f81612468565b6000602082840312156128b757600080fd5b815161232881612468565b6000602082840312156128d457600080fd5b815162ffffff8116811461232857600080fd5b600181811c908216806128fb57607f821691505b60208210810361291b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561213157600081815260208120601f850160051c810160208610156129485750805b601f850160051c820191505b81811015611ccb57828155600101612954565b81516001600160401b03811115612980576129806124bb565b6129948161298e84546128e7565b84612921565b602080601f8311600181146129c957600084156129b15750858301515b600019600386901b1c1916600185901b178555611ccb565b600085815260208120601f198616915b828110156129f8578886015182559484019460019091019084016129d9565b5085821015612a165787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612a3857600080fd5b81516001600160401b038116811461232857600080fd5b805161234f8161232f565b600060208284031215612a6c57600080fd5b81516123288161232f565b634e487b7160e01b600052603260045260246000fd5b805161234f81612488565b600060208284031215612aaa57600080fd5b815161232881612488565b60008085851115612ac557600080fd5b83861115612ad257600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b075780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612b6057600080fd5b8151612b6e61256f82612529565b818152846020838601011115612b8357600080fd5b61246082602083016020870161238d565b600060208284031215612ba657600080fd5b81516001600160401b0380821115612bbd57600080fd5b9083019060e08286031215612bd157600080fd5b612bd96124d1565b612be28361289a565b8152612bf06020840161289a565b6020820152612c0160408401612a8d565b6040820152612c1260608401612872565b6060820152612c2360808401612a4f565b6080820152612c3460a08401612a4f565b60a082015260c083015182811115612c4b57600080fd5b61278487828601612b4f565b60008060408385031215612c6a57600080fd5b8251612c758161232f565b60208401519092506123828161232f565b60008251612c9881846020870161238d565b9190910192915050565b60008060408385031215612cb557600080fd5b8251612cc0816124a2565b602084015190925063ffffffff8116811461238257600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212204fa114da7bbfc2070e6b9de1939e1e62a5ffc0223075e984ba75909a8a7c08a764736f6c63430008140033",
|
1112
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063675393bf1161011a578063b68d1809116100ad578063cde749f41161007c578063cde749f414610483578063ea8665721461048b578063ed841d0c1461049e578063f21de1e814610344578063f7c34ee0146104a657600080fd5b8063b68d18091461043e578063bf7e214f14610453578063c13de9971461045b578063c2bf08c81461047057600080fd5b8063893d20e8116100e9578063893d20e8146103f95780638fb36037146104015780638fbc2d8114610416578063ada9652e1461042957600080fd5b8063675393bf146103ad5780637286e5e5146103c05780637a9e5e4b146103d35780638105cc7f146103e657600080fd5b8063329d6e74116101925780635ab1bd53116101615780635ab1bd53146103445780635c992fed146103695780635d9662891461037c578063644c45e01461038f57600080fd5b8063329d6e74146102eb57806336fc697e146102fe57806349bb9e4b1461030657806357a8fba71461031957600080fd5b8063138461e0116101ce578063138461e0146102865780631eff4b2214610290578063214cdb80146102c557806327bb7a33146102d857600080fd5b806301ffc9a714610200578063026bc43b146102425780630d8e6e2c146102625780630fec111c1461027e575b600080fd5b61022d61020e3660046122fe565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610255610250366004612354565b6104b9565b60405161023991906123dd565b61026a610657565b60405162ffffff9091168152602001610239565b6102556106e1565b61028e61087d565b005b6102b77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610239565b61028e6102d33660046122fe565b610a84565b61028e6102e63660046125a6565b610ab1565b61028e6102f936600461263e565b610b3d565b61028e610c8a565b61028e610314366004612672565b610cd0565b61032c6103273660046126c1565b610dcf565b6040516001600160601b039091168152602001610239565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610239565b61032c6103773660046126c1565b610e5e565b61025561038a366004612354565b610e74565b600080516020612cdb833981519152546001600160601b031661032c565b61028e6103bb366004612793565b610fb4565b6102556103ce366004612354565b6110c7565b61028e6103e1366004612793565b611174565b61032c6103f43660046126c1565b6111f7565b61035161120d565b610409611344565b60405161023991906127b0565b610255610424366004612354565b61137c565b6102b7600080516020612cdb83398151915281565b60285b60405160ff9091168152602001610239565b610351611429565b610463611445565b60405161023991906127c5565b61032c61047e3660046126c1565b611a31565b610441611a47565b61028e610499366004612354565b611abe565b6102b7600081565b61028e6104b4366004612354565b611b56565b6104c16122c0565b6104ce335b600036611bcd565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906105019063ca8e409f60e01b906004016127b0565b602060405180830381865afa15801561051e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610542919061287d565b61055f57604051636795c76360e01b815260040160405180910390fd5b61056c8360465b84611cd3565b90506105806001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016105ab91906123dd565b6020604051808303816000875af11580156105ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee91906128a5565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561063957600080fd5b505af115801561064d573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156106b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc91906128c2565b905090565b6106e96122c0565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3018054600093916060840191610779906128e7565b80601f01602080910402602001604051908101604052809291908181526020018280546107a5906128e7565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b50505050508152505090506040518060e00160405280610810600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b0316815260200161086161120d565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020612cdb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156108ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610910919061287d565b156109415780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306109546001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561099c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c0919061287d565b6109e85760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610938565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6091906128a5565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b610a8c611ec3565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610ab9611ec3565b610ac38287611b56565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610b338382612967565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610b5f610657565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610b9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc39190612a26565b600080516020612d1b8339815191528054600160401b900460ff1680610bf6575080546001600160401b03808416911610155b15610c145760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610c3e83611efc565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610c92611ec3565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020612d1b8339815191528054600160401b810460ff1615906001600160401b0316600081158015610d035750825b90506000826001600160401b03166001148015610d1f5750303b155b905081158015610d2d575080155b15610d4b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d7557845460ff60401b1916600160401b1785555b610d7f8787611f04565b8315610dc657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6000610dda336104c6565b610de582607a61202b565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610e159085906004016123dd565b6020604051808303816000875af1158015610e34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5891906128a5565b92915050565b6000610e69336104c6565b610de58260d361202b565b610e7c6122c0565b610e85336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610eb890631e63cf4560e01b906004016127b0565b602060405180830381865afa158015610ed5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef9919061287d565b610f1657604051637a71998760e01b815260040160405180910390fd5b610f2183606e610566565b9050610f356001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610f6091906123dd565b6020604051808303816000875af1158015610f7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa391906128a5565b6001600160601b0316815292915050565b610fbc611ec3565b806001600160a01b03163b600003610ff25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610938565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a7906110389063230c0c8160e11b906004016127b0565b602060405180830381865afa925050508015611071575060408051601f3d908101601f1916820190925261106e9181019061287d565b60015b6110995760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610938565b806110c25760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610938565b505b50565b6110cf6122c0565b6110d8336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061110b9063f20236f360e01b906004016127b0565b602060405180830381865afa158015611128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114c919061287d565b61116957604051636f61f64160e01b815260040160405180910390fd5b610f2183608c610566565b3361117d611429565b6001600160a01b0316816001600160a01b0316146111b85760405162d1953b60e31b81526001600160a01b0382166004820152602401610938565b816001600160a01b03163b6000036111ee576040516361798f2f60e11b81526001600160a01b0383166004820152602401610938565b6110c282612136565b6000611202336104c6565b610de582605061202b565b600080600080516020612cdb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561127d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a1919061287d565b1561132e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611304573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113289190612a5a565b91505090565b54600160601b90046001600160a01b0316919050565b600080516020612cfb833981519152805460009190600160a01b900460ff1661136e576000611328565b638fb3603760e01b91505090565b6113846122c0565b61138d336104c6565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906113c090637895d0ed60e01b906004016127b0565b602060405180830381865afa1580156113dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611401919061287d565b61141e576040516308707e3160e41b815260040160405180910390fd5b610f21836078610566565b600080516020612cfb833981519152546001600160a01b031690565b6040805160088082526101208201909252606091816020015b60408051808201909152600081526060602082015281526020019060019003908161145e57905050905061149060d390565b816000815181106114a3576114a3612a77565b60209081029190910181015160ff929092169091526040805160008082529281019091529050816000815181106114dc576114dc612a77565b6020026020010151602001819052506114f360d290565b8160018151811061150657611506612a77565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160018151811061154c5761154c612a77565b602002602001015160200181905250635c992fed60e01b8160018151811061157657611576612a77565b60200260200101516020015160008151811061159457611594612a77565b6001600160e01b0319909216602092830291909101909101526115b560d490565b816002815181106115c8576115c8612a77565b60209081029190910181015160ff92909216909152604080516000815291820190528151829060029081106115ff576115ff612a77565b60200260200101516020018190525061161660dc90565b8160038151811061162957611629612a77565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160038151811061166f5761166f612a77565b60200260200101516020018190525063c2bf08c860e01b8160038151811061169957611699612a77565b6020026020010151602001516000815181106116b7576116b7612a77565b6001600160e01b0319909216602092830291909101909101526116d8606e90565b816004815181106116eb576116eb612a77565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160048151811061173157611731612a77565b602002602001015160200181905250635d96628960e01b8160048151811061175b5761175b612a77565b60200260200101516020015160008151811061177957611779612a77565b6001600160e01b03199092166020928302919091019091015261179a608c90565b816005815181106117ad576117ad612a77565b602090810291909101015160ff9190911690526040805160018082528183019092529081602001602082028036833701905050816005815181106117f3576117f3612a77565b602002602001015160200181905250637286e5e560e01b8160058151811061181d5761181d612a77565b60200260200101516020015160008151811061183b5761183b612a77565b6001600160e01b03199092166020928302919091019091015261185c607890565b8160068151811061186f5761186f612a77565b602090810291909101015160ff919091169052604080516002808252606082019092529081602001602082028036833701905050816006815181106118b6576118b6612a77565b602002602001015160200181905250638fbc2d8160e01b816006815181106118e0576118e0612a77565b6020026020010151602001516000815181106118fe576118fe612a77565b6001600160e01b03199092166020928302919091019091015280516357a8fba760e01b908290600690811061193557611935612a77565b60200260200101516020015160018151811061195357611953612a77565b6001600160e01b031990921660209283029190910190910152611974604690565b8160078151811061198757611987612a77565b602090810291909101015160ff9190911690526040805160018082528183019092529081602001602082028036833701905050816007815181106119cd576119cd612a77565b60200260200101516020018190525063026bc43b60e01b816007815181106119f7576119f7612a77565b602002602001015160200151600081518110611a1557611a15612a77565b6001600160e01b03199092166020928302919091019091015290565b6000611a3c336104c6565b610de58260dc61202b565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611a9a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc9190612a98565b611ac6611ec3565b611b4682836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2c91906128a5565b603c60008560405180602001604052806000815250610ab1565b6110c2637b6a51fd60e01b610a84565b611b5e611ec3565b611b6781610fb4565b611b6f610c8a565b6001600160a01b038216611b965760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020612cdb83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020612cfb833981519152600080611c08611bea611429565b8730611bfa600460008a8c612ab5565b611c0391612adf565b612197565b9150915081611ccb5763ffffffff811615611ca857825460ff60a01b1916600160a01b178355611c36611429565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c6593929190612b0f565b600060405180830381600087803b158015611c7f57600080fd5b505af1158015611c93573d6000803e3d6000fd5b5050845460ff60a01b1916855550611ccb9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610938565b505050505050565b611cdb6122c0565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611d19573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d419190810190612b94565b6001600160a01b0385166080820152604081015190915060ff848116911614611d90576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610938565b60a08101516001600160a01b0380821690841614611dcc5760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610938565b846001600160a01b0316816001600160a01b031603611dfe576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611e2557604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9d919061287d565b15611ebb57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b600080516020612d1b83398151915254600160401b900460ff16611efa57604051631afcd79f60e31b815260040160405180910390fd5b565b6101fb611ec3565b600080516020612d1b8339815191528054600160401b810460ff1615906001600160401b0316600081158015611f375750825b90506000826001600160401b03166001148015611f535750303b155b905081158015611f61575080155b15611f7f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611fa957845460ff60401b1916600160401b1785555b60008087806020019051810190611fc09190612c57565b91509150611fcd816122a3565b611fd7828a611abe565b611fe763aa745bc360e01b610a84565b50508315610dc657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610dbd565b60006080830152604082015160ff82811691161461206f576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610938565b60a08201516001600160a01b03811661209b57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156120ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612113919061287d565b1561213157604051637142ceb360e11b815260040160405180910390fd5b505050565b600080516020612cfb83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516122069190612c86565b600060405180830381855afa9150503d8060008114612241576040519150601f19603f3d011682016040523d82523d6000602084013e612246565b606091505b50915091508115612298576040815110612278578080602001905181019061226e9190612ca2565b9094509250612298565b60208151106122985780806020019051810190612295919061287d565b93505b505094509492505050565b6122ab611ec3565b6110c4816122b7611ec3565b6110c481612136565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561231057600080fd5b81356001600160e01b03198116811461232857600080fd5b9392505050565b6001600160a01b03811681146110c457600080fd5b803561234f8161232f565b919050565b6000806040838503121561236757600080fd5b82356123728161232f565b915060208301356123828161232f565b809150509250929050565b60005b838110156123a8578181015183820152602001612390565b50506000910152565b600081518084526123c981602086016020860161238d565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161244660c08401826001600160a01b03169052565b5060c083015160e0808401526124606101008401826123b1565b949350505050565b6001600160601b03811681146110c457600080fd5b803561234f81612468565b60ff811681146110c457600080fd5b803561234f81612488565b80151581146110c457600080fd5b803561234f816124a2565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156124f3576124f36124bb565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612521576125216124bb565b604052919050565b60006001600160401b03821115612542576125426124bb565b50601f01601f191660200190565b600082601f83011261256157600080fd5b813561257461256f82612529565b6124f9565b81815284602083860101111561258957600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c087890312156125bf57600080fd5b86356125ca8161232f565b955060208701356125da81612468565b945060408701356125ea81612488565b935060608701356125fa816124a2565b9250608087013561260a8161232f565b915060a08701356001600160401b0381111561262557600080fd5b61263189828a01612550565b9150509295509295509295565b60006020828403121561265057600080fd5b81356001600160401b0381111561266657600080fd5b61246084828501612550565b6000806040838503121561268557600080fd5b82356126908161232f565b915060208301356001600160401b038111156126ab57600080fd5b6126b785828601612550565b9150509250929050565b6000602082840312156126d357600080fd5b81356001600160401b03808211156126ea57600080fd5b9083019060e082860312156126fe57600080fd5b6127066124d1565b61270f8361247d565b815261271d6020840161247d565b602082015261272e60408401612497565b604082015261273f606084016124b0565b606082015261275060808401612344565b608082015261276160a08401612344565b60a082015260c08301358281111561277857600080fd5b61278487828601612550565b60c08301525095945050505050565b6000602082840312156127a557600080fd5b81356123288161232f565b6001600160e01b031991909116815260200190565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b8481101561286357898403603f190186528251805160ff168552880151888501889052805188860181905290890190839060608701905b8083101561284e5783516001600160e01b0319168252928b019260019290920191908b0190612824565b50978a019795505050918701916001016127ed565b50919998505050505050505050565b805161234f816124a2565b60006020828403121561288f57600080fd5b8151612328816124a2565b805161234f81612468565b6000602082840312156128b757600080fd5b815161232881612468565b6000602082840312156128d457600080fd5b815162ffffff8116811461232857600080fd5b600181811c908216806128fb57607f821691505b60208210810361291b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561213157600081815260208120601f850160051c810160208610156129485750805b601f850160051c820191505b81811015611ccb57828155600101612954565b81516001600160401b03811115612980576129806124bb565b6129948161298e84546128e7565b84612921565b602080601f8311600181146129c957600084156129b15750858301515b600019600386901b1c1916600185901b178555611ccb565b600085815260208120601f198616915b828110156129f8578886015182559484019460019091019084016129d9565b5085821015612a165787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612a3857600080fd5b81516001600160401b038116811461232857600080fd5b805161234f8161232f565b600060208284031215612a6c57600080fd5b81516123288161232f565b634e487b7160e01b600052603260045260246000fd5b805161234f81612488565b600060208284031215612aaa57600080fd5b815161232881612488565b60008085851115612ac557600080fd5b83861115612ad257600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b075780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612b6057600080fd5b8151612b6e61256f82612529565b818152846020838601011115612b8357600080fd5b61246082602083016020870161238d565b600060208284031215612ba657600080fd5b81516001600160401b0380821115612bbd57600080fd5b9083019060e08286031215612bd157600080fd5b612bd96124d1565b612be28361289a565b8152612bf06020840161289a565b6020820152612c0160408401612a8d565b6040820152612c1260608401612872565b6060820152612c2360808401612a4f565b6080820152612c3460a08401612a4f565b60a082015260c083015182811115612c4b57600080fd5b61278487828601612b4f565b60008060408385031215612c6a57600080fd5b8251612c758161232f565b60208401519092506123828161232f565b60008251612c9881846020870161238d565b9190910192915050565b60008060408385031215612cb557600080fd5b8251612cc0816124a2565b602084015190925063ffffffff8116811461238257600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212204fa114da7bbfc2070e6b9de1939e1e62a5ffc0223075e984ba75909a8a7c08a764736f6c63430008140033",
|
1113
|
+
"linkReferences": {
|
1114
|
+
"contracts/types/NftId.sol": {
|
1115
|
+
"NftIdLib": [
|
1116
|
+
{
|
1117
|
+
"length": 20,
|
1118
|
+
"start": 2456
|
1119
|
+
},
|
1120
|
+
{
|
1121
|
+
"length": 20,
|
1122
|
+
"start": 4905
|
1123
|
+
}
|
1124
|
+
]
|
1125
|
+
},
|
1126
|
+
"contracts/types/Version.sol": {
|
1127
|
+
"VersionLib": [
|
1128
|
+
{
|
1129
|
+
"length": 20,
|
1130
|
+
"start": 1892
|
1131
|
+
},
|
1132
|
+
{
|
1133
|
+
"length": 20,
|
1134
|
+
"start": 3109
|
1135
|
+
}
|
1136
|
+
],
|
1137
|
+
"VersionPartLib": [
|
1138
|
+
{
|
1139
|
+
"length": 20,
|
1140
|
+
"start": 6982
|
1141
|
+
}
|
1142
|
+
]
|
1143
|
+
}
|
1144
|
+
},
|
1145
|
+
"deployedLinkReferences": {
|
1146
|
+
"contracts/types/NftId.sol": {
|
1147
|
+
"NftIdLib": [
|
1148
|
+
{
|
1149
|
+
"length": 20,
|
1150
|
+
"start": 2226
|
1151
|
+
},
|
1152
|
+
{
|
1153
|
+
"length": 20,
|
1154
|
+
"start": 4675
|
1155
|
+
}
|
1156
|
+
]
|
1157
|
+
},
|
1158
|
+
"contracts/types/Version.sol": {
|
1159
|
+
"VersionLib": [
|
1160
|
+
{
|
1161
|
+
"length": 20,
|
1162
|
+
"start": 1662
|
1163
|
+
},
|
1164
|
+
{
|
1165
|
+
"length": 20,
|
1166
|
+
"start": 2879
|
1167
|
+
}
|
1168
|
+
],
|
1169
|
+
"VersionPartLib": [
|
1170
|
+
{
|
1171
|
+
"length": 20,
|
1172
|
+
"start": 6752
|
1173
|
+
}
|
1174
|
+
]
|
1175
|
+
}
|
1176
|
+
}
|
1177
|
+
}
|