@etherisc/gif-next 0.0.2-851536d → 0.0.2-86f4673-518
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +436 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +735 -30
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1140 -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} +292 -224
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +708 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +894 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +813 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1216 -76
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +1148 -102
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -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 +1592 -476
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +674 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2653 -518
- 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 +1386 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1260 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +610 -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 +754 -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/base/ILifecycle.sol/ILifecycle.json +115 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -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/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- 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/{component/IComponent.sol/IComponent.json → module/ISetup.sol/ISetup.json} +2 -2
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1117 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1318 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +586 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +923 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +574 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +638 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +798 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +459 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +784 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +512 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +549 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1378 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +642 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +957 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +574 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +1007 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +574 -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 +519 -61
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +999 -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 +567 -75
- 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 +1351 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +601 -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 +531 -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} +68 -70
- 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 -53
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +214 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/product/ProductService.sol/ProductModule.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +23 -29
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +434 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +303 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +269 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +499 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +415 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +105 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +627 -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 +228 -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 +446 -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 +759 -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 +286 -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/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 +65 -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 +4 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -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/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
- 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 +205 -37
- package/contracts/components/Distribution.sol +156 -0
- package/contracts/components/IComponent.sol +50 -0
- package/contracts/components/IDistributionComponent.sol +47 -0
- package/contracts/components/IPoolComponent.sol +87 -0
- package/contracts/components/IProductComponent.sol +39 -0
- package/contracts/components/Pool.sol +242 -17
- package/contracts/components/Product.sol +244 -32
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/experiment/errors/Require.sol +10 -5
- package/contracts/experiment/errors/Revert.sol +13 -8
- package/contracts/experiment/inheritance/A.sol +8 -11
- package/contracts/experiment/inheritance/B.sol +10 -5
- package/contracts/experiment/inheritance/C.sol +11 -5
- package/contracts/experiment/inheritance/IA.sol +2 -7
- package/contracts/experiment/inheritance/IB.sol +3 -2
- package/contracts/experiment/inheritance/IC.sol +4 -3
- package/contracts/experiment/statemachine/Dummy.sol +27 -0
- package/contracts/experiment/statemachine/ISM.sol +25 -0
- package/contracts/experiment/statemachine/SM.sol +57 -0
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
- package/contracts/experiment/types/TypeA.sol +14 -9
- package/contracts/experiment/types/TypeB.sol +14 -9
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +67 -15
- package/contracts/instance/IInstanceService.sol +59 -0
- package/contracts/instance/Instance.sol +247 -43
- package/contracts/instance/InstanceAccessManager.sol +297 -0
- package/contracts/instance/InstanceReader.sol +293 -0
- package/contracts/instance/InstanceService.sol +433 -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 +172 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/module/IAccess.sol +47 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +47 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +268 -0
- package/contracts/instance/service/BundleService.sol +298 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +105 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +54 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPolicyService.sol +88 -0
- package/contracts/instance/service/IPoolService.sol +20 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +524 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +109 -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 +138 -109
- package/contracts/registry/IRegistry.sol +78 -49
- package/contracts/registry/IRegistryService.sol +65 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +396 -116
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +261 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +332 -0
- package/contracts/registry/TokenRegistry.sol +113 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +26 -0
- package/contracts/shared/INftOwnable.sol +28 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +15 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +96 -0
- package/contracts/shared/NftOwnable.sol +190 -0
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +95 -0
- package/contracts/shared/Registerable.sol +81 -0
- package/contracts/shared/RegistryLinked.sol +64 -0
- package/contracts/shared/Service.sol +60 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +148 -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 +76 -18
- package/contracts/types/ChainId.sol +18 -10
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +56 -0
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +48 -11
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +156 -0
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +90 -0
- package/contracts/types/StateId.sol +105 -0
- package/contracts/types/Timestamp.sol +89 -17
- package/contracts/types/UFixed.sol +193 -75
- package/contracts/types/Version.sol +107 -0
- package/package.json +21 -6
- 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 -179
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
- 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 -327
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
- 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 -179
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
- 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/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 -231
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
- 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 -149
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
- 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/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
- 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/IRegistry.sol/IRegistryLinked.json +0 -49
- 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 -440
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.sol +0 -12
- package/contracts/instance/access/Access.sol +0 -218
- package/contracts/instance/access/IAccess.sol +0 -83
- package/contracts/instance/component/ComponentModule.sol +0 -248
- package/contracts/instance/component/IComponent.sol +0 -95
- package/contracts/instance/policy/IPolicy.sol +0 -66
- package/contracts/instance/policy/PolicyModule.sol +0 -107
- package/contracts/instance/pool/IPoolModule.sol +0 -41
- package/contracts/instance/pool/PoolModule.sol +0 -86
- package/contracts/instance/product/IProductService.sol +0 -46
- package/contracts/instance/product/ProductService.sol +0 -108
- package/contracts/registry/IChainNft.sol +0 -18
@@ -0,0 +1,1351 @@
|
|
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": "registry",
|
49
|
+
"type": "address"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"internalType": "NftId",
|
53
|
+
"name": "nftId",
|
54
|
+
"type": "uint96"
|
55
|
+
}
|
56
|
+
],
|
57
|
+
"name": "ErrorAlreadyLinked",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"inputs": [
|
62
|
+
{
|
63
|
+
"internalType": "address",
|
64
|
+
"name": "contractAddress",
|
65
|
+
"type": "address"
|
66
|
+
}
|
67
|
+
],
|
68
|
+
"name": "ErrorContractNotRegistered",
|
69
|
+
"type": "error"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"inputs": [],
|
73
|
+
"name": "ErrorInitialOwnerZero",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [
|
78
|
+
{
|
79
|
+
"internalType": "address",
|
80
|
+
"name": "account",
|
81
|
+
"type": "address"
|
82
|
+
}
|
83
|
+
],
|
84
|
+
"name": "ErrorNotOwner",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [
|
89
|
+
{
|
90
|
+
"internalType": "address",
|
91
|
+
"name": "registryAddress",
|
92
|
+
"type": "address"
|
93
|
+
}
|
94
|
+
],
|
95
|
+
"name": "ErrorNotRegistry",
|
96
|
+
"type": "error"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"inputs": [
|
100
|
+
{
|
101
|
+
"internalType": "address",
|
102
|
+
"name": "registryAddress",
|
103
|
+
"type": "address"
|
104
|
+
}
|
105
|
+
],
|
106
|
+
"name": "ErrorRegisterableNotRegistry",
|
107
|
+
"type": "error"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"inputs": [],
|
111
|
+
"name": "ErrorRegistryAddressZero",
|
112
|
+
"type": "error"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"inputs": [
|
116
|
+
{
|
117
|
+
"internalType": "address",
|
118
|
+
"name": "registry",
|
119
|
+
"type": "address"
|
120
|
+
}
|
121
|
+
],
|
122
|
+
"name": "ErrorRegistryAlreadyInitialized",
|
123
|
+
"type": "error"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"inputs": [],
|
127
|
+
"name": "ErrorRegistryNotInitialized",
|
128
|
+
"type": "error"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"inputs": [
|
132
|
+
{
|
133
|
+
"internalType": "address",
|
134
|
+
"name": "registerableAddress",
|
135
|
+
"type": "address"
|
136
|
+
}
|
137
|
+
],
|
138
|
+
"name": "InvalidAddress",
|
139
|
+
"type": "error"
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"inputs": [
|
143
|
+
{
|
144
|
+
"internalType": "address",
|
145
|
+
"name": "initialOwner",
|
146
|
+
"type": "address"
|
147
|
+
}
|
148
|
+
],
|
149
|
+
"name": "InvalidInitialOwner",
|
150
|
+
"type": "error"
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"inputs": [],
|
154
|
+
"name": "InvalidInitialization",
|
155
|
+
"type": "error"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"inputs": [],
|
159
|
+
"name": "NotDistribution",
|
160
|
+
"type": "error"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"inputs": [],
|
164
|
+
"name": "NotInitializing",
|
165
|
+
"type": "error"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"inputs": [],
|
169
|
+
"name": "NotInstance",
|
170
|
+
"type": "error"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"inputs": [],
|
174
|
+
"name": "NotPool",
|
175
|
+
"type": "error"
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"inputs": [],
|
179
|
+
"name": "NotProduct",
|
180
|
+
"type": "error"
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"inputs": [
|
184
|
+
{
|
185
|
+
"internalType": "address",
|
186
|
+
"name": "expectedOwner",
|
187
|
+
"type": "address"
|
188
|
+
}
|
189
|
+
],
|
190
|
+
"name": "NotRegisterableOwner",
|
191
|
+
"type": "error"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"inputs": [],
|
195
|
+
"name": "NotRegistryOwner",
|
196
|
+
"type": "error"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"inputs": [],
|
200
|
+
"name": "NotService",
|
201
|
+
"type": "error"
|
202
|
+
},
|
203
|
+
{
|
204
|
+
"inputs": [],
|
205
|
+
"name": "RegisterableOwnerIsRegistered",
|
206
|
+
"type": "error"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"inputs": [],
|
210
|
+
"name": "RegisterableOwnerIsZero",
|
211
|
+
"type": "error"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"inputs": [],
|
215
|
+
"name": "SelfRegistration",
|
216
|
+
"type": "error"
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"inputs": [
|
220
|
+
{
|
221
|
+
"internalType": "ObjectType",
|
222
|
+
"name": "expected",
|
223
|
+
"type": "uint8"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"internalType": "ObjectType",
|
227
|
+
"name": "found",
|
228
|
+
"type": "uint8"
|
229
|
+
}
|
230
|
+
],
|
231
|
+
"name": "UnexpectedRegisterableType",
|
232
|
+
"type": "error"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"anonymous": false,
|
236
|
+
"inputs": [
|
237
|
+
{
|
238
|
+
"indexed": false,
|
239
|
+
"internalType": "address",
|
240
|
+
"name": "authority",
|
241
|
+
"type": "address"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
"name": "AuthorityUpdated",
|
245
|
+
"type": "event"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"anonymous": false,
|
249
|
+
"inputs": [
|
250
|
+
{
|
251
|
+
"indexed": false,
|
252
|
+
"internalType": "uint64",
|
253
|
+
"name": "version",
|
254
|
+
"type": "uint64"
|
255
|
+
}
|
256
|
+
],
|
257
|
+
"name": "Initialized",
|
258
|
+
"type": "event"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"anonymous": false,
|
262
|
+
"inputs": [
|
263
|
+
{
|
264
|
+
"indexed": false,
|
265
|
+
"internalType": "Version",
|
266
|
+
"name": "version",
|
267
|
+
"type": "uint24"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"indexed": false,
|
271
|
+
"internalType": "address",
|
272
|
+
"name": "implementation",
|
273
|
+
"type": "address"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"indexed": false,
|
277
|
+
"internalType": "address",
|
278
|
+
"name": "activatedBy",
|
279
|
+
"type": "address"
|
280
|
+
}
|
281
|
+
],
|
282
|
+
"name": "LogVersionableInitialized",
|
283
|
+
"type": "event"
|
284
|
+
},
|
285
|
+
{
|
286
|
+
"inputs": [],
|
287
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
288
|
+
"outputs": [
|
289
|
+
{
|
290
|
+
"internalType": "bytes32",
|
291
|
+
"name": "",
|
292
|
+
"type": "bytes32"
|
293
|
+
}
|
294
|
+
],
|
295
|
+
"stateMutability": "view",
|
296
|
+
"type": "function"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"inputs": [],
|
300
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
301
|
+
"outputs": [
|
302
|
+
{
|
303
|
+
"internalType": "bytes32",
|
304
|
+
"name": "",
|
305
|
+
"type": "bytes32"
|
306
|
+
}
|
307
|
+
],
|
308
|
+
"stateMutability": "view",
|
309
|
+
"type": "function"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"inputs": [],
|
313
|
+
"name": "REGISTRY_CREATION_CODE_HASH",
|
314
|
+
"outputs": [
|
315
|
+
{
|
316
|
+
"internalType": "bytes32",
|
317
|
+
"name": "",
|
318
|
+
"type": "bytes32"
|
319
|
+
}
|
320
|
+
],
|
321
|
+
"stateMutability": "view",
|
322
|
+
"type": "function"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"inputs": [],
|
326
|
+
"name": "authority",
|
327
|
+
"outputs": [
|
328
|
+
{
|
329
|
+
"internalType": "address",
|
330
|
+
"name": "",
|
331
|
+
"type": "address"
|
332
|
+
}
|
333
|
+
],
|
334
|
+
"stateMutability": "view",
|
335
|
+
"type": "function"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"inputs": [],
|
339
|
+
"name": "getDomain",
|
340
|
+
"outputs": [
|
341
|
+
{
|
342
|
+
"internalType": "ObjectType",
|
343
|
+
"name": "serviceDomain",
|
344
|
+
"type": "uint8"
|
345
|
+
}
|
346
|
+
],
|
347
|
+
"stateMutability": "pure",
|
348
|
+
"type": "function"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"inputs": [],
|
352
|
+
"name": "getFunctionConfigs",
|
353
|
+
"outputs": [
|
354
|
+
{
|
355
|
+
"components": [
|
356
|
+
{
|
357
|
+
"internalType": "ObjectType",
|
358
|
+
"name": "serviceDomain",
|
359
|
+
"type": "uint8"
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"internalType": "bytes4",
|
363
|
+
"name": "selector",
|
364
|
+
"type": "bytes4"
|
365
|
+
}
|
366
|
+
],
|
367
|
+
"internalType": "struct IRegistryService.FunctionConfig[]",
|
368
|
+
"name": "config",
|
369
|
+
"type": "tuple[]"
|
370
|
+
}
|
371
|
+
],
|
372
|
+
"stateMutability": "pure",
|
373
|
+
"type": "function"
|
374
|
+
},
|
375
|
+
{
|
376
|
+
"inputs": [],
|
377
|
+
"name": "getInitialInfo",
|
378
|
+
"outputs": [
|
379
|
+
{
|
380
|
+
"components": [
|
381
|
+
{
|
382
|
+
"internalType": "NftId",
|
383
|
+
"name": "nftId",
|
384
|
+
"type": "uint96"
|
385
|
+
},
|
386
|
+
{
|
387
|
+
"internalType": "NftId",
|
388
|
+
"name": "parentNftId",
|
389
|
+
"type": "uint96"
|
390
|
+
},
|
391
|
+
{
|
392
|
+
"internalType": "ObjectType",
|
393
|
+
"name": "objectType",
|
394
|
+
"type": "uint8"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"internalType": "bool",
|
398
|
+
"name": "isInterceptor",
|
399
|
+
"type": "bool"
|
400
|
+
},
|
401
|
+
{
|
402
|
+
"internalType": "address",
|
403
|
+
"name": "objectAddress",
|
404
|
+
"type": "address"
|
405
|
+
},
|
406
|
+
{
|
407
|
+
"internalType": "address",
|
408
|
+
"name": "initialOwner",
|
409
|
+
"type": "address"
|
410
|
+
},
|
411
|
+
{
|
412
|
+
"internalType": "bytes",
|
413
|
+
"name": "data",
|
414
|
+
"type": "bytes"
|
415
|
+
}
|
416
|
+
],
|
417
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
418
|
+
"name": "info",
|
419
|
+
"type": "tuple"
|
420
|
+
}
|
421
|
+
],
|
422
|
+
"stateMutability": "view",
|
423
|
+
"type": "function"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"inputs": [],
|
427
|
+
"name": "getInitialOwner",
|
428
|
+
"outputs": [
|
429
|
+
{
|
430
|
+
"internalType": "address",
|
431
|
+
"name": "",
|
432
|
+
"type": "address"
|
433
|
+
}
|
434
|
+
],
|
435
|
+
"stateMutability": "view",
|
436
|
+
"type": "function"
|
437
|
+
},
|
438
|
+
{
|
439
|
+
"inputs": [],
|
440
|
+
"name": "getInitializedVersion",
|
441
|
+
"outputs": [
|
442
|
+
{
|
443
|
+
"internalType": "uint64",
|
444
|
+
"name": "",
|
445
|
+
"type": "uint64"
|
446
|
+
}
|
447
|
+
],
|
448
|
+
"stateMutability": "view",
|
449
|
+
"type": "function"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"inputs": [],
|
453
|
+
"name": "getMajorVersion",
|
454
|
+
"outputs": [
|
455
|
+
{
|
456
|
+
"internalType": "VersionPart",
|
457
|
+
"name": "majorVersion",
|
458
|
+
"type": "uint8"
|
459
|
+
}
|
460
|
+
],
|
461
|
+
"stateMutability": "view",
|
462
|
+
"type": "function"
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"inputs": [],
|
466
|
+
"name": "getNftId",
|
467
|
+
"outputs": [
|
468
|
+
{
|
469
|
+
"internalType": "NftId",
|
470
|
+
"name": "",
|
471
|
+
"type": "uint96"
|
472
|
+
}
|
473
|
+
],
|
474
|
+
"stateMutability": "view",
|
475
|
+
"type": "function"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"inputs": [],
|
479
|
+
"name": "getOwner",
|
480
|
+
"outputs": [
|
481
|
+
{
|
482
|
+
"internalType": "address",
|
483
|
+
"name": "",
|
484
|
+
"type": "address"
|
485
|
+
}
|
486
|
+
],
|
487
|
+
"stateMutability": "view",
|
488
|
+
"type": "function"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"inputs": [],
|
492
|
+
"name": "getRegistry",
|
493
|
+
"outputs": [
|
494
|
+
{
|
495
|
+
"internalType": "contract IRegistry",
|
496
|
+
"name": "",
|
497
|
+
"type": "address"
|
498
|
+
}
|
499
|
+
],
|
500
|
+
"stateMutability": "view",
|
501
|
+
"type": "function"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"inputs": [],
|
505
|
+
"name": "getRegistryAddress",
|
506
|
+
"outputs": [
|
507
|
+
{
|
508
|
+
"internalType": "address",
|
509
|
+
"name": "",
|
510
|
+
"type": "address"
|
511
|
+
}
|
512
|
+
],
|
513
|
+
"stateMutability": "view",
|
514
|
+
"type": "function"
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"inputs": [],
|
518
|
+
"name": "getVersion",
|
519
|
+
"outputs": [
|
520
|
+
{
|
521
|
+
"internalType": "Version",
|
522
|
+
"name": "",
|
523
|
+
"type": "uint24"
|
524
|
+
}
|
525
|
+
],
|
526
|
+
"stateMutability": "pure",
|
527
|
+
"type": "function"
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"inputs": [
|
531
|
+
{
|
532
|
+
"internalType": "uint256",
|
533
|
+
"name": "idx",
|
534
|
+
"type": "uint256"
|
535
|
+
}
|
536
|
+
],
|
537
|
+
"name": "getVersion",
|
538
|
+
"outputs": [
|
539
|
+
{
|
540
|
+
"internalType": "Version",
|
541
|
+
"name": "",
|
542
|
+
"type": "uint24"
|
543
|
+
}
|
544
|
+
],
|
545
|
+
"stateMutability": "view",
|
546
|
+
"type": "function"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"inputs": [],
|
550
|
+
"name": "getVersionCount",
|
551
|
+
"outputs": [
|
552
|
+
{
|
553
|
+
"internalType": "uint256",
|
554
|
+
"name": "",
|
555
|
+
"type": "uint256"
|
556
|
+
}
|
557
|
+
],
|
558
|
+
"stateMutability": "view",
|
559
|
+
"type": "function"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"inputs": [
|
563
|
+
{
|
564
|
+
"internalType": "Version",
|
565
|
+
"name": "_version",
|
566
|
+
"type": "uint24"
|
567
|
+
}
|
568
|
+
],
|
569
|
+
"name": "getVersionInfo",
|
570
|
+
"outputs": [
|
571
|
+
{
|
572
|
+
"components": [
|
573
|
+
{
|
574
|
+
"internalType": "Version",
|
575
|
+
"name": "version",
|
576
|
+
"type": "uint24"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"internalType": "address",
|
580
|
+
"name": "implementation",
|
581
|
+
"type": "address"
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"internalType": "address",
|
585
|
+
"name": "activatedBy",
|
586
|
+
"type": "address"
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"internalType": "Timestamp",
|
590
|
+
"name": "activatedAt",
|
591
|
+
"type": "uint40"
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"internalType": "Blocknumber",
|
595
|
+
"name": "activatedIn",
|
596
|
+
"type": "uint32"
|
597
|
+
}
|
598
|
+
],
|
599
|
+
"internalType": "struct IVersionable.VersionInfo",
|
600
|
+
"name": "",
|
601
|
+
"type": "tuple"
|
602
|
+
}
|
603
|
+
],
|
604
|
+
"stateMutability": "view",
|
605
|
+
"type": "function"
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"inputs": [],
|
609
|
+
"name": "initializeERC165",
|
610
|
+
"outputs": [],
|
611
|
+
"stateMutability": "nonpayable",
|
612
|
+
"type": "function"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"inputs": [
|
616
|
+
{
|
617
|
+
"internalType": "address",
|
618
|
+
"name": "initialOwner",
|
619
|
+
"type": "address"
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"internalType": "address",
|
623
|
+
"name": "registryAddress",
|
624
|
+
"type": "address"
|
625
|
+
}
|
626
|
+
],
|
627
|
+
"name": "initializeNftOwnable",
|
628
|
+
"outputs": [],
|
629
|
+
"stateMutability": "nonpayable",
|
630
|
+
"type": "function"
|
631
|
+
},
|
632
|
+
{
|
633
|
+
"inputs": [
|
634
|
+
{
|
635
|
+
"internalType": "address",
|
636
|
+
"name": "initialOwner",
|
637
|
+
"type": "address"
|
638
|
+
}
|
639
|
+
],
|
640
|
+
"name": "initializeOwner",
|
641
|
+
"outputs": [],
|
642
|
+
"stateMutability": "nonpayable",
|
643
|
+
"type": "function"
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"inputs": [
|
647
|
+
{
|
648
|
+
"internalType": "address",
|
649
|
+
"name": "registryAddress",
|
650
|
+
"type": "address"
|
651
|
+
},
|
652
|
+
{
|
653
|
+
"internalType": "NftId",
|
654
|
+
"name": "parentNftId",
|
655
|
+
"type": "uint96"
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"internalType": "ObjectType",
|
659
|
+
"name": "objectType",
|
660
|
+
"type": "uint8"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"internalType": "bool",
|
664
|
+
"name": "isInterceptor",
|
665
|
+
"type": "bool"
|
666
|
+
},
|
667
|
+
{
|
668
|
+
"internalType": "address",
|
669
|
+
"name": "initialOwner",
|
670
|
+
"type": "address"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"internalType": "bytes",
|
674
|
+
"name": "data",
|
675
|
+
"type": "bytes"
|
676
|
+
}
|
677
|
+
],
|
678
|
+
"name": "initializeRegisterable",
|
679
|
+
"outputs": [],
|
680
|
+
"stateMutability": "nonpayable",
|
681
|
+
"type": "function"
|
682
|
+
},
|
683
|
+
{
|
684
|
+
"inputs": [
|
685
|
+
{
|
686
|
+
"internalType": "address",
|
687
|
+
"name": "registryAddress",
|
688
|
+
"type": "address"
|
689
|
+
}
|
690
|
+
],
|
691
|
+
"name": "initializeRegistryLinked",
|
692
|
+
"outputs": [],
|
693
|
+
"stateMutability": "nonpayable",
|
694
|
+
"type": "function"
|
695
|
+
},
|
696
|
+
{
|
697
|
+
"inputs": [
|
698
|
+
{
|
699
|
+
"internalType": "address",
|
700
|
+
"name": "registry",
|
701
|
+
"type": "address"
|
702
|
+
},
|
703
|
+
{
|
704
|
+
"internalType": "address",
|
705
|
+
"name": "initialOwner",
|
706
|
+
"type": "address"
|
707
|
+
}
|
708
|
+
],
|
709
|
+
"name": "initializeService",
|
710
|
+
"outputs": [],
|
711
|
+
"stateMutability": "nonpayable",
|
712
|
+
"type": "function"
|
713
|
+
},
|
714
|
+
{
|
715
|
+
"inputs": [
|
716
|
+
{
|
717
|
+
"internalType": "address",
|
718
|
+
"name": "implementation",
|
719
|
+
"type": "address"
|
720
|
+
},
|
721
|
+
{
|
722
|
+
"internalType": "address",
|
723
|
+
"name": "activatedBy",
|
724
|
+
"type": "address"
|
725
|
+
},
|
726
|
+
{
|
727
|
+
"internalType": "bytes",
|
728
|
+
"name": "data",
|
729
|
+
"type": "bytes"
|
730
|
+
}
|
731
|
+
],
|
732
|
+
"name": "initializeVersionable",
|
733
|
+
"outputs": [],
|
734
|
+
"stateMutability": "nonpayable",
|
735
|
+
"type": "function"
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"inputs": [],
|
739
|
+
"name": "isConsumingScheduledOp",
|
740
|
+
"outputs": [
|
741
|
+
{
|
742
|
+
"internalType": "bytes4",
|
743
|
+
"name": "",
|
744
|
+
"type": "bytes4"
|
745
|
+
}
|
746
|
+
],
|
747
|
+
"stateMutability": "view",
|
748
|
+
"type": "function"
|
749
|
+
},
|
750
|
+
{
|
751
|
+
"inputs": [
|
752
|
+
{
|
753
|
+
"internalType": "Version",
|
754
|
+
"name": "_version",
|
755
|
+
"type": "uint24"
|
756
|
+
}
|
757
|
+
],
|
758
|
+
"name": "isInitialized",
|
759
|
+
"outputs": [
|
760
|
+
{
|
761
|
+
"internalType": "bool",
|
762
|
+
"name": "",
|
763
|
+
"type": "bool"
|
764
|
+
}
|
765
|
+
],
|
766
|
+
"stateMutability": "view",
|
767
|
+
"type": "function"
|
768
|
+
},
|
769
|
+
{
|
770
|
+
"inputs": [],
|
771
|
+
"name": "linkToRegisteredNftId",
|
772
|
+
"outputs": [],
|
773
|
+
"stateMutability": "nonpayable",
|
774
|
+
"type": "function"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"inputs": [
|
778
|
+
{
|
779
|
+
"components": [
|
780
|
+
{
|
781
|
+
"internalType": "NftId",
|
782
|
+
"name": "nftId",
|
783
|
+
"type": "uint96"
|
784
|
+
},
|
785
|
+
{
|
786
|
+
"internalType": "NftId",
|
787
|
+
"name": "parentNftId",
|
788
|
+
"type": "uint96"
|
789
|
+
},
|
790
|
+
{
|
791
|
+
"internalType": "ObjectType",
|
792
|
+
"name": "objectType",
|
793
|
+
"type": "uint8"
|
794
|
+
},
|
795
|
+
{
|
796
|
+
"internalType": "bool",
|
797
|
+
"name": "isInterceptor",
|
798
|
+
"type": "bool"
|
799
|
+
},
|
800
|
+
{
|
801
|
+
"internalType": "address",
|
802
|
+
"name": "objectAddress",
|
803
|
+
"type": "address"
|
804
|
+
},
|
805
|
+
{
|
806
|
+
"internalType": "address",
|
807
|
+
"name": "initialOwner",
|
808
|
+
"type": "address"
|
809
|
+
},
|
810
|
+
{
|
811
|
+
"internalType": "bytes",
|
812
|
+
"name": "data",
|
813
|
+
"type": "bytes"
|
814
|
+
}
|
815
|
+
],
|
816
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
817
|
+
"name": "info",
|
818
|
+
"type": "tuple"
|
819
|
+
}
|
820
|
+
],
|
821
|
+
"name": "registerBundle",
|
822
|
+
"outputs": [
|
823
|
+
{
|
824
|
+
"internalType": "NftId",
|
825
|
+
"name": "nftId",
|
826
|
+
"type": "uint96"
|
827
|
+
}
|
828
|
+
],
|
829
|
+
"stateMutability": "nonpayable",
|
830
|
+
"type": "function"
|
831
|
+
},
|
832
|
+
{
|
833
|
+
"inputs": [
|
834
|
+
{
|
835
|
+
"internalType": "contract IComponent",
|
836
|
+
"name": "distribution",
|
837
|
+
"type": "address"
|
838
|
+
},
|
839
|
+
{
|
840
|
+
"internalType": "address",
|
841
|
+
"name": "owner",
|
842
|
+
"type": "address"
|
843
|
+
}
|
844
|
+
],
|
845
|
+
"name": "registerDistribution",
|
846
|
+
"outputs": [
|
847
|
+
{
|
848
|
+
"components": [
|
849
|
+
{
|
850
|
+
"internalType": "NftId",
|
851
|
+
"name": "nftId",
|
852
|
+
"type": "uint96"
|
853
|
+
},
|
854
|
+
{
|
855
|
+
"internalType": "NftId",
|
856
|
+
"name": "parentNftId",
|
857
|
+
"type": "uint96"
|
858
|
+
},
|
859
|
+
{
|
860
|
+
"internalType": "ObjectType",
|
861
|
+
"name": "objectType",
|
862
|
+
"type": "uint8"
|
863
|
+
},
|
864
|
+
{
|
865
|
+
"internalType": "bool",
|
866
|
+
"name": "isInterceptor",
|
867
|
+
"type": "bool"
|
868
|
+
},
|
869
|
+
{
|
870
|
+
"internalType": "address",
|
871
|
+
"name": "objectAddress",
|
872
|
+
"type": "address"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
"internalType": "address",
|
876
|
+
"name": "initialOwner",
|
877
|
+
"type": "address"
|
878
|
+
},
|
879
|
+
{
|
880
|
+
"internalType": "bytes",
|
881
|
+
"name": "data",
|
882
|
+
"type": "bytes"
|
883
|
+
}
|
884
|
+
],
|
885
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
886
|
+
"name": "info",
|
887
|
+
"type": "tuple"
|
888
|
+
}
|
889
|
+
],
|
890
|
+
"stateMutability": "nonpayable",
|
891
|
+
"type": "function"
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"inputs": [
|
895
|
+
{
|
896
|
+
"internalType": "contract IRegisterable",
|
897
|
+
"name": "instance",
|
898
|
+
"type": "address"
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"internalType": "address",
|
902
|
+
"name": "owner",
|
903
|
+
"type": "address"
|
904
|
+
}
|
905
|
+
],
|
906
|
+
"name": "registerInstance",
|
907
|
+
"outputs": [
|
908
|
+
{
|
909
|
+
"components": [
|
910
|
+
{
|
911
|
+
"internalType": "NftId",
|
912
|
+
"name": "nftId",
|
913
|
+
"type": "uint96"
|
914
|
+
},
|
915
|
+
{
|
916
|
+
"internalType": "NftId",
|
917
|
+
"name": "parentNftId",
|
918
|
+
"type": "uint96"
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"internalType": "ObjectType",
|
922
|
+
"name": "objectType",
|
923
|
+
"type": "uint8"
|
924
|
+
},
|
925
|
+
{
|
926
|
+
"internalType": "bool",
|
927
|
+
"name": "isInterceptor",
|
928
|
+
"type": "bool"
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"internalType": "address",
|
932
|
+
"name": "objectAddress",
|
933
|
+
"type": "address"
|
934
|
+
},
|
935
|
+
{
|
936
|
+
"internalType": "address",
|
937
|
+
"name": "initialOwner",
|
938
|
+
"type": "address"
|
939
|
+
},
|
940
|
+
{
|
941
|
+
"internalType": "bytes",
|
942
|
+
"name": "data",
|
943
|
+
"type": "bytes"
|
944
|
+
}
|
945
|
+
],
|
946
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
947
|
+
"name": "info",
|
948
|
+
"type": "tuple"
|
949
|
+
}
|
950
|
+
],
|
951
|
+
"stateMutability": "nonpayable",
|
952
|
+
"type": "function"
|
953
|
+
},
|
954
|
+
{
|
955
|
+
"inputs": [
|
956
|
+
{
|
957
|
+
"internalType": "bytes4",
|
958
|
+
"name": "interfaceId",
|
959
|
+
"type": "bytes4"
|
960
|
+
}
|
961
|
+
],
|
962
|
+
"name": "registerInterface",
|
963
|
+
"outputs": [],
|
964
|
+
"stateMutability": "nonpayable",
|
965
|
+
"type": "function"
|
966
|
+
},
|
967
|
+
{
|
968
|
+
"inputs": [
|
969
|
+
{
|
970
|
+
"components": [
|
971
|
+
{
|
972
|
+
"internalType": "NftId",
|
973
|
+
"name": "nftId",
|
974
|
+
"type": "uint96"
|
975
|
+
},
|
976
|
+
{
|
977
|
+
"internalType": "NftId",
|
978
|
+
"name": "parentNftId",
|
979
|
+
"type": "uint96"
|
980
|
+
},
|
981
|
+
{
|
982
|
+
"internalType": "ObjectType",
|
983
|
+
"name": "objectType",
|
984
|
+
"type": "uint8"
|
985
|
+
},
|
986
|
+
{
|
987
|
+
"internalType": "bool",
|
988
|
+
"name": "isInterceptor",
|
989
|
+
"type": "bool"
|
990
|
+
},
|
991
|
+
{
|
992
|
+
"internalType": "address",
|
993
|
+
"name": "objectAddress",
|
994
|
+
"type": "address"
|
995
|
+
},
|
996
|
+
{
|
997
|
+
"internalType": "address",
|
998
|
+
"name": "initialOwner",
|
999
|
+
"type": "address"
|
1000
|
+
},
|
1001
|
+
{
|
1002
|
+
"internalType": "bytes",
|
1003
|
+
"name": "data",
|
1004
|
+
"type": "bytes"
|
1005
|
+
}
|
1006
|
+
],
|
1007
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1008
|
+
"name": "info",
|
1009
|
+
"type": "tuple"
|
1010
|
+
}
|
1011
|
+
],
|
1012
|
+
"name": "registerPolicy",
|
1013
|
+
"outputs": [
|
1014
|
+
{
|
1015
|
+
"internalType": "NftId",
|
1016
|
+
"name": "nftId",
|
1017
|
+
"type": "uint96"
|
1018
|
+
}
|
1019
|
+
],
|
1020
|
+
"stateMutability": "nonpayable",
|
1021
|
+
"type": "function"
|
1022
|
+
},
|
1023
|
+
{
|
1024
|
+
"inputs": [
|
1025
|
+
{
|
1026
|
+
"internalType": "contract IComponent",
|
1027
|
+
"name": "pool",
|
1028
|
+
"type": "address"
|
1029
|
+
},
|
1030
|
+
{
|
1031
|
+
"internalType": "address",
|
1032
|
+
"name": "owner",
|
1033
|
+
"type": "address"
|
1034
|
+
}
|
1035
|
+
],
|
1036
|
+
"name": "registerPool",
|
1037
|
+
"outputs": [
|
1038
|
+
{
|
1039
|
+
"components": [
|
1040
|
+
{
|
1041
|
+
"internalType": "NftId",
|
1042
|
+
"name": "nftId",
|
1043
|
+
"type": "uint96"
|
1044
|
+
},
|
1045
|
+
{
|
1046
|
+
"internalType": "NftId",
|
1047
|
+
"name": "parentNftId",
|
1048
|
+
"type": "uint96"
|
1049
|
+
},
|
1050
|
+
{
|
1051
|
+
"internalType": "ObjectType",
|
1052
|
+
"name": "objectType",
|
1053
|
+
"type": "uint8"
|
1054
|
+
},
|
1055
|
+
{
|
1056
|
+
"internalType": "bool",
|
1057
|
+
"name": "isInterceptor",
|
1058
|
+
"type": "bool"
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"internalType": "address",
|
1062
|
+
"name": "objectAddress",
|
1063
|
+
"type": "address"
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
"internalType": "address",
|
1067
|
+
"name": "initialOwner",
|
1068
|
+
"type": "address"
|
1069
|
+
},
|
1070
|
+
{
|
1071
|
+
"internalType": "bytes",
|
1072
|
+
"name": "data",
|
1073
|
+
"type": "bytes"
|
1074
|
+
}
|
1075
|
+
],
|
1076
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1077
|
+
"name": "info",
|
1078
|
+
"type": "tuple"
|
1079
|
+
}
|
1080
|
+
],
|
1081
|
+
"stateMutability": "nonpayable",
|
1082
|
+
"type": "function"
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
"inputs": [
|
1086
|
+
{
|
1087
|
+
"internalType": "contract IComponent",
|
1088
|
+
"name": "product",
|
1089
|
+
"type": "address"
|
1090
|
+
},
|
1091
|
+
{
|
1092
|
+
"internalType": "address",
|
1093
|
+
"name": "owner",
|
1094
|
+
"type": "address"
|
1095
|
+
}
|
1096
|
+
],
|
1097
|
+
"name": "registerProduct",
|
1098
|
+
"outputs": [
|
1099
|
+
{
|
1100
|
+
"components": [
|
1101
|
+
{
|
1102
|
+
"internalType": "NftId",
|
1103
|
+
"name": "nftId",
|
1104
|
+
"type": "uint96"
|
1105
|
+
},
|
1106
|
+
{
|
1107
|
+
"internalType": "NftId",
|
1108
|
+
"name": "parentNftId",
|
1109
|
+
"type": "uint96"
|
1110
|
+
},
|
1111
|
+
{
|
1112
|
+
"internalType": "ObjectType",
|
1113
|
+
"name": "objectType",
|
1114
|
+
"type": "uint8"
|
1115
|
+
},
|
1116
|
+
{
|
1117
|
+
"internalType": "bool",
|
1118
|
+
"name": "isInterceptor",
|
1119
|
+
"type": "bool"
|
1120
|
+
},
|
1121
|
+
{
|
1122
|
+
"internalType": "address",
|
1123
|
+
"name": "objectAddress",
|
1124
|
+
"type": "address"
|
1125
|
+
},
|
1126
|
+
{
|
1127
|
+
"internalType": "address",
|
1128
|
+
"name": "initialOwner",
|
1129
|
+
"type": "address"
|
1130
|
+
},
|
1131
|
+
{
|
1132
|
+
"internalType": "bytes",
|
1133
|
+
"name": "data",
|
1134
|
+
"type": "bytes"
|
1135
|
+
}
|
1136
|
+
],
|
1137
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1138
|
+
"name": "info",
|
1139
|
+
"type": "tuple"
|
1140
|
+
}
|
1141
|
+
],
|
1142
|
+
"stateMutability": "nonpayable",
|
1143
|
+
"type": "function"
|
1144
|
+
},
|
1145
|
+
{
|
1146
|
+
"inputs": [
|
1147
|
+
{
|
1148
|
+
"components": [
|
1149
|
+
{
|
1150
|
+
"internalType": "NftId",
|
1151
|
+
"name": "nftId",
|
1152
|
+
"type": "uint96"
|
1153
|
+
},
|
1154
|
+
{
|
1155
|
+
"internalType": "NftId",
|
1156
|
+
"name": "parentNftId",
|
1157
|
+
"type": "uint96"
|
1158
|
+
},
|
1159
|
+
{
|
1160
|
+
"internalType": "ObjectType",
|
1161
|
+
"name": "objectType",
|
1162
|
+
"type": "uint8"
|
1163
|
+
},
|
1164
|
+
{
|
1165
|
+
"internalType": "bool",
|
1166
|
+
"name": "isInterceptor",
|
1167
|
+
"type": "bool"
|
1168
|
+
},
|
1169
|
+
{
|
1170
|
+
"internalType": "address",
|
1171
|
+
"name": "objectAddress",
|
1172
|
+
"type": "address"
|
1173
|
+
},
|
1174
|
+
{
|
1175
|
+
"internalType": "address",
|
1176
|
+
"name": "initialOwner",
|
1177
|
+
"type": "address"
|
1178
|
+
},
|
1179
|
+
{
|
1180
|
+
"internalType": "bytes",
|
1181
|
+
"name": "data",
|
1182
|
+
"type": "bytes"
|
1183
|
+
}
|
1184
|
+
],
|
1185
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1186
|
+
"name": "info",
|
1187
|
+
"type": "tuple"
|
1188
|
+
}
|
1189
|
+
],
|
1190
|
+
"name": "registerStake",
|
1191
|
+
"outputs": [
|
1192
|
+
{
|
1193
|
+
"internalType": "NftId",
|
1194
|
+
"name": "nftId",
|
1195
|
+
"type": "uint96"
|
1196
|
+
}
|
1197
|
+
],
|
1198
|
+
"stateMutability": "nonpayable",
|
1199
|
+
"type": "function"
|
1200
|
+
},
|
1201
|
+
{
|
1202
|
+
"inputs": [
|
1203
|
+
{
|
1204
|
+
"internalType": "address",
|
1205
|
+
"name": "newAuthority",
|
1206
|
+
"type": "address"
|
1207
|
+
}
|
1208
|
+
],
|
1209
|
+
"name": "setAuthority",
|
1210
|
+
"outputs": [],
|
1211
|
+
"stateMutability": "nonpayable",
|
1212
|
+
"type": "function"
|
1213
|
+
},
|
1214
|
+
{
|
1215
|
+
"inputs": [
|
1216
|
+
{
|
1217
|
+
"internalType": "bytes4",
|
1218
|
+
"name": "interfaceId",
|
1219
|
+
"type": "bytes4"
|
1220
|
+
}
|
1221
|
+
],
|
1222
|
+
"name": "supportsInterface",
|
1223
|
+
"outputs": [
|
1224
|
+
{
|
1225
|
+
"internalType": "bool",
|
1226
|
+
"name": "",
|
1227
|
+
"type": "bool"
|
1228
|
+
}
|
1229
|
+
],
|
1230
|
+
"stateMutability": "view",
|
1231
|
+
"type": "function"
|
1232
|
+
},
|
1233
|
+
{
|
1234
|
+
"inputs": [
|
1235
|
+
{
|
1236
|
+
"internalType": "address",
|
1237
|
+
"name": "implementation",
|
1238
|
+
"type": "address"
|
1239
|
+
},
|
1240
|
+
{
|
1241
|
+
"internalType": "address",
|
1242
|
+
"name": "activatedBy",
|
1243
|
+
"type": "address"
|
1244
|
+
},
|
1245
|
+
{
|
1246
|
+
"internalType": "bytes",
|
1247
|
+
"name": "data",
|
1248
|
+
"type": "bytes"
|
1249
|
+
}
|
1250
|
+
],
|
1251
|
+
"name": "upgradeVersionable",
|
1252
|
+
"outputs": [],
|
1253
|
+
"stateMutability": "nonpayable",
|
1254
|
+
"type": "function"
|
1255
|
+
}
|
1256
|
+
],
|
1257
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61320680620000e66000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80637a9e5e4b1161013b578063b88da759116100b8578063ea8665721161007c578063ea86657214610653578063ed841d0c14610666578063f21de1e814610487578063f7c34ee01461066e578063fb2cb1011461068157600080fd5b8063b88da75914610608578063bf7e214f1461061b578063c13de99714610623578063c2bf08c814610638578063cde749f41461064b57600080fd5b80638fbc2d81116100ff5780638fbc2d8114610584578063946dfcfe14610597578063ada9652e146105be578063b3c65015146105d3578063b68d1809146105f357600080fd5b80637a9e5e4b1461052e5780638105cc7f14610541578063893d20e8146105545780638c5f36bb1461055c5780638fb360371461056f57600080fd5b80632a904018116101c95780635c992fed1161018d5780635c992fed146104ac5780635d966289146104d7578063644c45e0146104ea578063675393bf146105085780637286e5e51461051b57600080fd5b80632a9040181461034057806336fc697e146103535780634d459c901461035b5780634f421333146104745780635ab1bd531461048757600080fd5b8063138461e011610210578063138461e0146102c85780631647f91e146102d25780631eff4b22146102e5578063214cdb801461031a57806327bb7a331461032d57600080fd5b806301ffc9a714610242578063026bc43b146102845780630d8e6e2c146102a45780630fec111c146102c0575b600080fd5b61026f610250366004612748565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61029761029236600461279e565b610689565b60405161027b9190612827565b6102ac610827565b60405162ffffff909116815260200161027b565b6102976108b1565b6102d0610a4d565b005b6102d06102e036600461299d565b610ca0565b61030c7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161027b565b6102d0610328366004612748565b610d97565b6102d061033b366004612a51565b610dc4565b6102d061034e36600461299d565b610e60565b6102d0610fa8565b610417610369366004612afa565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206131b183398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161027b565b61026f610482366004612afa565b610fee565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161027b565b6104bf6104ba366004612b17565b6110a1565b6040516001600160601b03909116815260200161027b565b6102976104e536600461279e565b611130565b600080516020613131833981519152546001600160601b03166104bf565b6102d0610516366004612be9565b611270565b61029761052936600461279e565b611284565b6102d061053c366004612be9565b611331565b6104bf61054f366004612b17565b6113b8565b6104946113ce565b6102d061056a366004612be9565b611505565b610577611607565b60405161027b9190612c06565b61029761059236600461279e565b61163f565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015461030c565b61030c60008051602061313183398151915281565b6105db6116ec565b6040516001600160401b03909116815260200161027b565b60285b60405160ff909116815260200161027b565b6102ac610616366004612c1b565b61170d565b61049461175e565b61062b61177a565b60405161027b9190612c34565b6104bf610646366004612b17565b611a20565b6105f6611a36565b6102d061066136600461279e565b611ab9565b61030c600081565b6102d061067c36600461279e565b611b2c565b610494611b5e565b61069161270a565b61069e335b600036611b74565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906106d19063c6b60f2b60e01b90600401612c06565b602060405180830381865afa1580156106ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107129190612c9b565b61072f57604051636795c76360e01b815260040160405180910390fd5b61073c8360465b84611c72565b90506107506001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161077b9190612827565b6020604051808303816000875af115801561079a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107be9190612cc3565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561080957600080fd5b505af115801561081d573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610888573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ac9190612ce0565b905090565b6108b961270a565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301805460009391606084019161094990612cfd565b80601f016020809104026020016040519081016040528092919081815260200182805461097590612cfd565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b50505050508152505090506040518060e001604052806109e0600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610a31611b5e565b6001600160a01b03168152602001826060015181525091505090565b600060008051602061313183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610abc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae09190612c9b565b15610b225760015481546040516316322c0f60e31b81526001600160a01b0390921660048301526001600160601b031660248201526044015b60405180910390fd5b6000610b366001546001600160a01b031690565b6001600160a01b031603610b5d5760405163cf29926160e01b815260040160405180910390fd5b30610b706001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdc9190612c9b565b610c04576040516372657a5160e01b81526001600160a01b0382166004820152602401610b19565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610c58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7c9190612cc3565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6000805160206131918339815191528054600160401b810460ff1615906001600160401b0316600081158015610cd35750825b90506000826001600160401b03166001148015610cef5750303b155b905081158015610cfd575080155b15610d1b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d4557845460ff60401b1916600160401b1785555b610d4f8888611e62565b610d598787612101565b8315610d8d57845460ff60401b19168555604051600181526000805160206131718339815191529060200160405180910390a15b5050505050505050565b610d9f612222565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610dcc612222565b610dd68287611b2c565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610e468382612d7d565b50610e576303fb044760e21b610d97565b50505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e82610827565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee69190612e3c565b6000805160206131918339815191528054600160401b900460ff1680610f19575080546001600160401b03808416911610155b15610f375760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f628585611e62565b610f6b8361225b565b805460ff60401b191681556040516001600160401b0383168152600080516020613171833981519152906020015b60405180910390a15050505050565b610fb0612222565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000806000805160206131b183398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015611076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109a9190612e65565b1192915050565b60006110ac33610696565b6110b78260d3612263565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e906110e7908590600401612827565b6020604051808303816000875af1158015611106573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112a9190612cc3565b92915050565b61113861270a565b61114133610696565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611174906301da8d1160e61b90600401612c06565b602060405180830381865afa158015611191573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b59190612c9b565b6111d257604051637a71998760e01b815260040160405180910390fd5b6111dd83606e610736565b90506111f16001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161121c9190612827565b6020604051808303816000875af115801561123b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125f9190612cc3565b6001600160601b0316815292915050565b611278612222565b6112818161236e565b50565b61128c61270a565b61129533610696565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906112c89063100f51f760e01b90600401612c06565b602060405180830381865afa1580156112e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113099190612c9b565b61132657604051636f61f64160e01b815260040160405180910390fd5b6111dd83608c610736565b3361133a61175e565b6001600160a01b0316816001600160a01b0316146113755760405162d1953b60e31b81526001600160a01b0382166004820152602401610b19565b816001600160a01b03163b6000036113ab576040516361798f2f60e11b81526001600160a01b0383166004820152602401610b19565b6113b4826124d4565b5050565b60006113c333610696565b6110b7826050612263565b60008060008051602061313183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561143e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114629190612c9b565b156114ef576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156114c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e99190612e89565b91505090565b54600160601b90046001600160a01b0316919050565b6000805160206131918339815191528054600160401b810460ff1615906001600160401b03166000811580156115385750825b90506000826001600160401b031660011480156115545750303b155b905081158015611562575080155b156115805760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156115aa57845460ff60401b1916600160401b1785555b6115b386612535565b6115bb610fa8565b6115cb631fdea09d60e31b610d97565b83156115ff57845460ff60401b19168555604051600181526000805160206131718339815191529060200160405180910390a15b505050505050565b600080516020613151833981519152805460009190600160a01b900460ff166116315760006114e9565b638fb3603760e01b91505090565b61164761270a565b61165033610696565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611683906302ba8bb360e21b90600401612c06565b602060405180830381865afa1580156116a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c49190612c9b565b6116e1576040516308707e3160e41b815260040160405180910390fd5b6111dd836078610736565b60006108ac600080516020613191833981519152546001600160401b031690565b60006000805160206131b1833981519152600101828154811061173257611732612ea6565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080516020613151833981519152546001600160a01b031690565b60408051600680825260e08201909252606091816020015b60408051808201909152600080825260208201528152602001906001900390816117925790505090506117c360d390565b816000815181106117d6576117d6612ea6565b602090810291909101015160ff90911690528051635c992fed60e01b90829060009061180457611804612ea6565b6020908102919091018101516001600160e01b031990921691015261182760dc90565b8160018151811061183a5761183a612ea6565b602090810291909101015160ff90911690528051631857e11960e31b908290600190811061186a5761186a612ea6565b6020908102919091018101516001600160e01b031990921691015261188d606e90565b816002815181106118a0576118a0612ea6565b602090810291909101015160ff90911690528051635d96628960e01b90829060029081106118d0576118d0612ea6565b6020908102919091018101516001600160e01b03199092169101526118f3608c90565b8160038151811061190657611906612ea6565b602090810291909101015160ff90911690528051637286e5e560e01b908290600390811061193657611936612ea6565b6020908102919091018101516001600160e01b0319909216910152611959607890565b8160048151811061196c5761196c612ea6565b602090810291909101015160ff90911690528051638fbc2d8160e01b908290600490811061199c5761199c612ea6565b6020908102919091018101516001600160e01b03199092169101526119bf604690565b816005815181106119d2576119d2612ea6565b602090810291909101015160ff9091169052805163026bc43b60e01b9082906005908110611a0257611a02612ea6565b6020908102919091018101516001600160e01b031990921691015290565b6000611a2b33610696565b6110b78260dc612263565b6000611a40610827565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611a95573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ac9190612ec7565b611ac1612222565b60006028611acd611a36565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000611b028461259a565b90506000611b158583603c848888610dc4565b611b25637b6a51fd60e01b610d97565b5050505050565b611b34612222565b611b3d82612535565b611b4681611270565b611b4e610fa8565b6113b4631fdea09d60e31b610d97565b60006000805160206131318339815191526114ef565b600080516020613151833981519152600080611baf611b9161175e565b8730611ba1600460008a8c612ee4565b611baa91612f0e565b6125e1565b91509150816115ff5763ffffffff811615611c4f57825460ff60a01b1916600160a01b178355611bdd61175e565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c0c93929190612f3e565b600060405180830381600087803b158015611c2657600080fd5b505af1158015611c3a573d6000803e3d6000fd5b5050845460ff60a01b19168555506115ff9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610b19565b611c7a61270a565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611cb8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ce09190810190612fc3565b6001600160a01b0385166080820152604081015190915060ff848116911614611d2f576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610b19565b60a08101516001600160a01b0380821690841614611d6b5760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610b19565b846001600160a01b0316816001600160a01b031603611d9d576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611dc457604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3c9190612c9b565b15611e5a57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b611e6a612222565b6000805160206131b18339815191526000611e9a600080516020613191833981519152546001600160401b031690565b90506000611ea6610827565b9050816001600160401b0316600103611ed35760028301805462ffffff191662ffffff8316179055611f21565b600283015462ffffff90811690821611611f215760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610b19565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff99190613086565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610f999083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6000805160206131918339815191528054600160401b810460ff1615906001600160401b03166000811580156121345750825b90506000826001600160401b031660011480156121505750303b155b90508115801561215e575080155b1561217c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156121a657845460ff60401b1916600160401b1785555b600080878060200190518101906121bd91906130ad565b915091506121ca826126ed565b6121d4818a611ab9565b6121e4633f77281960e21b610d97565b50508315610e5757845460ff60401b19168555604051600181526000805160206131718339815191529060200160405180910390a150505050505050565b60008051602061319183398151915254600160401b900460ff1661225957604051631afcd79f60e31b815260040160405180910390fd5b565b61023d612222565b60006080830152604082015160ff8281169116146122a7576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610b19565b60a08201516001600160a01b0381166122d357604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015612327573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234b9190612c9b565b1561236957604051637142ceb360e11b815260040160405180910390fd5b505050565b6001546001600160a01b0316156123a75760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610b19565b6001600160a01b0381166123ce5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036124045760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610b19565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a79061244a9063230c0c8160e11b90600401612c06565b602060405180830381865afa925050508015612483575060408051601f3d908101601f1916820190925261248091810190612c9b565b60015b6124ab5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610b19565b806113b45760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610b19565b60008051602061315183398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61253d612222565b6001600160a01b038116612564576040516352e2d0c160e01b815260040160405180910390fd5b60008051602061313183398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611106573d6000803e3d6000fd5b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161265091906130dc565b600060405180830381855afa9150503d806000811461268b576040519150601f19603f3d011682016040523d82523d6000602084013e612690565b606091505b509150915081156126e25760408151106126c257808060200190518101906126b891906130f8565b90945092506126e2565b60208151106126e257808060200190518101906126df9190612c9b565b93505b505094509492505050565b6126f5612222565b61128181612701612222565b611281816124d4565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561275a57600080fd5b81356001600160e01b03198116811461277257600080fd5b9392505050565b6001600160a01b038116811461128157600080fd5b803561279981612779565b919050565b600080604083850312156127b157600080fd5b82356127bc81612779565b915060208301356127cc81612779565b809150509250929050565b60005b838110156127f25781810151838201526020016127da565b50506000910152565b600081518084526128138160208601602086016127d7565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161289060c08401826001600160a01b03169052565b5060c083015160e0808401526128aa6101008401826127fb565b949350505050565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156128ea576128ea6128b2565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612918576129186128b2565b604052919050565b60006001600160401b03821115612939576129396128b2565b50601f01601f191660200190565b600082601f83011261295857600080fd5b813561296b61296682612920565b6128f0565b81815284602083860101111561298057600080fd5b816020850160208301376000918101602001919091529392505050565b6000806000606084860312156129b257600080fd5b83356129bd81612779565b925060208401356129cd81612779565b915060408401356001600160401b038111156129e857600080fd5b6129f486828701612947565b9150509250925092565b6001600160601b038116811461128157600080fd5b8035612799816129fe565b60ff8116811461128157600080fd5b803561279981612a1e565b801515811461128157600080fd5b803561279981612a38565b60008060008060008060c08789031215612a6a57600080fd5b8635612a7581612779565b95506020870135612a85816129fe565b94506040870135612a9581612a1e565b93506060870135612aa581612a38565b92506080870135612ab581612779565b915060a08701356001600160401b03811115612ad057600080fd5b612adc89828a01612947565b9150509295509295509295565b62ffffff8116811461128157600080fd5b600060208284031215612b0c57600080fd5b813561277281612ae9565b600060208284031215612b2957600080fd5b81356001600160401b0380821115612b4057600080fd5b9083019060e08286031215612b5457600080fd5b612b5c6128c8565b612b6583612a13565b8152612b7360208401612a13565b6020820152612b8460408401612a2d565b6040820152612b9560608401612a46565b6060820152612ba66080840161278e565b6080820152612bb760a0840161278e565b60a082015260c083013582811115612bce57600080fd5b612bda87828601612947565b60c08301525095945050505050565b600060208284031215612bfb57600080fd5b813561277281612779565b6001600160e01b031991909116815260200190565b600060208284031215612c2d57600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b82811015612c83578151805160ff1685528601516001600160e01b031916868501529284019290850190600101612c51565b5091979650505050505050565b805161279981612a38565b600060208284031215612cad57600080fd5b815161277281612a38565b8051612799816129fe565b600060208284031215612cd557600080fd5b8151612772816129fe565b600060208284031215612cf257600080fd5b815161277281612ae9565b600181811c90821680612d1157607f821691505b602082108103612d3157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561236957600081815260208120601f850160051c81016020861015612d5e5750805b601f850160051c820191505b818110156115ff57828155600101612d6a565b81516001600160401b03811115612d9657612d966128b2565b612daa81612da48454612cfd565b84612d37565b602080601f831160018114612ddf5760008415612dc75750858301515b600019600386901b1c1916600185901b1785556115ff565b600085815260208120601f198616915b82811015612e0e57888601518255948401946001909101908401612def565b5085821015612e2c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612e4e57600080fd5b81516001600160401b038116811461277257600080fd5b600060208284031215612e7757600080fd5b5051919050565b805161279981612779565b600060208284031215612e9b57600080fd5b815161277281612779565b634e487b7160e01b600052603260045260246000fd5b805161279981612a1e565b600060208284031215612ed957600080fd5b815161277281612a1e565b60008085851115612ef457600080fd5b83861115612f0157600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612f365780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612f8f57600080fd5b8151612f9d61296682612920565b818152846020838601011115612fb257600080fd5b6128aa8260208301602087016127d7565b600060208284031215612fd557600080fd5b81516001600160401b0380821115612fec57600080fd5b9083019060e0828603121561300057600080fd5b6130086128c8565b61301183612cb8565b815261301f60208401612cb8565b602082015261303060408401612ebc565b604082015261304160608401612c90565b606082015261305260808401612e7e565b608082015261306360a08401612e7e565b60a082015260c08301518281111561307a57600080fd5b612bda87828601612f7e565b60006020828403121561309857600080fd5b815164ffffffffff8116811461277257600080fd5b600080604083850312156130c057600080fd5b82516130cb81612779565b60208401519092506127cc81612779565b600082516130ee8184602087016127d7565b9190910192915050565b6000806040838503121561310b57600080fd5b825161311681612a38565b602084015190925063ffffffff811681146127cc57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122070a21e20e78d15201660e4e336da0e44e828ac0a27b0f333d4d2c9efa16f571d64736f6c63430008140033",
|
1258
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061023d5760003560e01c80637a9e5e4b1161013b578063b88da759116100b8578063ea8665721161007c578063ea86657214610653578063ed841d0c14610666578063f21de1e814610487578063f7c34ee01461066e578063fb2cb1011461068157600080fd5b8063b88da75914610608578063bf7e214f1461061b578063c13de99714610623578063c2bf08c814610638578063cde749f41461064b57600080fd5b80638fbc2d81116100ff5780638fbc2d8114610584578063946dfcfe14610597578063ada9652e146105be578063b3c65015146105d3578063b68d1809146105f357600080fd5b80637a9e5e4b1461052e5780638105cc7f14610541578063893d20e8146105545780638c5f36bb1461055c5780638fb360371461056f57600080fd5b80632a904018116101c95780635c992fed1161018d5780635c992fed146104ac5780635d966289146104d7578063644c45e0146104ea578063675393bf146105085780637286e5e51461051b57600080fd5b80632a9040181461034057806336fc697e146103535780634d459c901461035b5780634f421333146104745780635ab1bd531461048757600080fd5b8063138461e011610210578063138461e0146102c85780631647f91e146102d25780631eff4b22146102e5578063214cdb801461031a57806327bb7a331461032d57600080fd5b806301ffc9a714610242578063026bc43b146102845780630d8e6e2c146102a45780630fec111c146102c0575b600080fd5b61026f610250366004612748565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61029761029236600461279e565b610689565b60405161027b9190612827565b6102ac610827565b60405162ffffff909116815260200161027b565b6102976108b1565b6102d0610a4d565b005b6102d06102e036600461299d565b610ca0565b61030c7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161027b565b6102d0610328366004612748565b610d97565b6102d061033b366004612a51565b610dc4565b6102d061034e36600461299d565b610e60565b6102d0610fa8565b610417610369366004612afa565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206131b183398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161027b565b61026f610482366004612afa565b610fee565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161027b565b6104bf6104ba366004612b17565b6110a1565b6040516001600160601b03909116815260200161027b565b6102976104e536600461279e565b611130565b600080516020613131833981519152546001600160601b03166104bf565b6102d0610516366004612be9565b611270565b61029761052936600461279e565b611284565b6102d061053c366004612be9565b611331565b6104bf61054f366004612b17565b6113b8565b6104946113ce565b6102d061056a366004612be9565b611505565b610577611607565b60405161027b9190612c06565b61029761059236600461279e565b61163f565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015461030c565b61030c60008051602061313183398151915281565b6105db6116ec565b6040516001600160401b03909116815260200161027b565b60285b60405160ff909116815260200161027b565b6102ac610616366004612c1b565b61170d565b61049461175e565b61062b61177a565b60405161027b9190612c34565b6104bf610646366004612b17565b611a20565b6105f6611a36565b6102d061066136600461279e565b611ab9565b61030c600081565b6102d061067c36600461279e565b611b2c565b610494611b5e565b61069161270a565b61069e335b600036611b74565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906106d19063c6b60f2b60e01b90600401612c06565b602060405180830381865afa1580156106ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107129190612c9b565b61072f57604051636795c76360e01b815260040160405180910390fd5b61073c8360465b84611c72565b90506107506001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161077b9190612827565b6020604051808303816000875af115801561079a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107be9190612cc3565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561080957600080fd5b505af115801561081d573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610888573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ac9190612ce0565b905090565b6108b961270a565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301805460009391606084019161094990612cfd565b80601f016020809104026020016040519081016040528092919081815260200182805461097590612cfd565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b50505050508152505090506040518060e001604052806109e0600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610a31611b5e565b6001600160a01b03168152602001826060015181525091505090565b600060008051602061313183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610abc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae09190612c9b565b15610b225760015481546040516316322c0f60e31b81526001600160a01b0390921660048301526001600160601b031660248201526044015b60405180910390fd5b6000610b366001546001600160a01b031690565b6001600160a01b031603610b5d5760405163cf29926160e01b815260040160405180910390fd5b30610b706001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdc9190612c9b565b610c04576040516372657a5160e01b81526001600160a01b0382166004820152602401610b19565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610c58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7c9190612cc3565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6000805160206131918339815191528054600160401b810460ff1615906001600160401b0316600081158015610cd35750825b90506000826001600160401b03166001148015610cef5750303b155b905081158015610cfd575080155b15610d1b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d4557845460ff60401b1916600160401b1785555b610d4f8888611e62565b610d598787612101565b8315610d8d57845460ff60401b19168555604051600181526000805160206131718339815191529060200160405180910390a15b5050505050505050565b610d9f612222565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610dcc612222565b610dd68287611b2c565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610e468382612d7d565b50610e576303fb044760e21b610d97565b50505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e82610827565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee69190612e3c565b6000805160206131918339815191528054600160401b900460ff1680610f19575080546001600160401b03808416911610155b15610f375760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f628585611e62565b610f6b8361225b565b805460ff60401b191681556040516001600160401b0383168152600080516020613171833981519152906020015b60405180910390a15050505050565b610fb0612222565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000806000805160206131b183398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015611076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109a9190612e65565b1192915050565b60006110ac33610696565b6110b78260d3612263565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e906110e7908590600401612827565b6020604051808303816000875af1158015611106573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112a9190612cc3565b92915050565b61113861270a565b61114133610696565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611174906301da8d1160e61b90600401612c06565b602060405180830381865afa158015611191573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b59190612c9b565b6111d257604051637a71998760e01b815260040160405180910390fd5b6111dd83606e610736565b90506111f16001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161121c9190612827565b6020604051808303816000875af115801561123b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125f9190612cc3565b6001600160601b0316815292915050565b611278612222565b6112818161236e565b50565b61128c61270a565b61129533610696565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906112c89063100f51f760e01b90600401612c06565b602060405180830381865afa1580156112e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113099190612c9b565b61132657604051636f61f64160e01b815260040160405180910390fd5b6111dd83608c610736565b3361133a61175e565b6001600160a01b0316816001600160a01b0316146113755760405162d1953b60e31b81526001600160a01b0382166004820152602401610b19565b816001600160a01b03163b6000036113ab576040516361798f2f60e11b81526001600160a01b0383166004820152602401610b19565b6113b4826124d4565b5050565b60006113c333610696565b6110b7826050612263565b60008060008051602061313183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561143e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114629190612c9b565b156114ef576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156114c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e99190612e89565b91505090565b54600160601b90046001600160a01b0316919050565b6000805160206131918339815191528054600160401b810460ff1615906001600160401b03166000811580156115385750825b90506000826001600160401b031660011480156115545750303b155b905081158015611562575080155b156115805760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156115aa57845460ff60401b1916600160401b1785555b6115b386612535565b6115bb610fa8565b6115cb631fdea09d60e31b610d97565b83156115ff57845460ff60401b19168555604051600181526000805160206131718339815191529060200160405180910390a15b505050505050565b600080516020613151833981519152805460009190600160a01b900460ff166116315760006114e9565b638fb3603760e01b91505090565b61164761270a565b61165033610696565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611683906302ba8bb360e21b90600401612c06565b602060405180830381865afa1580156116a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c49190612c9b565b6116e1576040516308707e3160e41b815260040160405180910390fd5b6111dd836078610736565b60006108ac600080516020613191833981519152546001600160401b031690565b60006000805160206131b1833981519152600101828154811061173257611732612ea6565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080516020613151833981519152546001600160a01b031690565b60408051600680825260e08201909252606091816020015b60408051808201909152600080825260208201528152602001906001900390816117925790505090506117c360d390565b816000815181106117d6576117d6612ea6565b602090810291909101015160ff90911690528051635c992fed60e01b90829060009061180457611804612ea6565b6020908102919091018101516001600160e01b031990921691015261182760dc90565b8160018151811061183a5761183a612ea6565b602090810291909101015160ff90911690528051631857e11960e31b908290600190811061186a5761186a612ea6565b6020908102919091018101516001600160e01b031990921691015261188d606e90565b816002815181106118a0576118a0612ea6565b602090810291909101015160ff90911690528051635d96628960e01b90829060029081106118d0576118d0612ea6565b6020908102919091018101516001600160e01b03199092169101526118f3608c90565b8160038151811061190657611906612ea6565b602090810291909101015160ff90911690528051637286e5e560e01b908290600390811061193657611936612ea6565b6020908102919091018101516001600160e01b0319909216910152611959607890565b8160048151811061196c5761196c612ea6565b602090810291909101015160ff90911690528051638fbc2d8160e01b908290600490811061199c5761199c612ea6565b6020908102919091018101516001600160e01b03199092169101526119bf604690565b816005815181106119d2576119d2612ea6565b602090810291909101015160ff9091169052805163026bc43b60e01b9082906005908110611a0257611a02612ea6565b6020908102919091018101516001600160e01b031990921691015290565b6000611a2b33610696565b6110b78260dc612263565b6000611a40610827565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611a95573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ac9190612ec7565b611ac1612222565b60006028611acd611a36565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000611b028461259a565b90506000611b158583603c848888610dc4565b611b25637b6a51fd60e01b610d97565b5050505050565b611b34612222565b611b3d82612535565b611b4681611270565b611b4e610fa8565b6113b4631fdea09d60e31b610d97565b60006000805160206131318339815191526114ef565b600080516020613151833981519152600080611baf611b9161175e565b8730611ba1600460008a8c612ee4565b611baa91612f0e565b6125e1565b91509150816115ff5763ffffffff811615611c4f57825460ff60a01b1916600160a01b178355611bdd61175e565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c0c93929190612f3e565b600060405180830381600087803b158015611c2657600080fd5b505af1158015611c3a573d6000803e3d6000fd5b5050845460ff60a01b19168555506115ff9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610b19565b611c7a61270a565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611cb8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ce09190810190612fc3565b6001600160a01b0385166080820152604081015190915060ff848116911614611d2f576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610b19565b60a08101516001600160a01b0380821690841614611d6b5760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610b19565b846001600160a01b0316816001600160a01b031603611d9d576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611dc457604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3c9190612c9b565b15611e5a57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b611e6a612222565b6000805160206131b18339815191526000611e9a600080516020613191833981519152546001600160401b031690565b90506000611ea6610827565b9050816001600160401b0316600103611ed35760028301805462ffffff191662ffffff8316179055611f21565b600283015462ffffff90811690821611611f215760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610b19565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff99190613086565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610f999083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6000805160206131918339815191528054600160401b810460ff1615906001600160401b03166000811580156121345750825b90506000826001600160401b031660011480156121505750303b155b90508115801561215e575080155b1561217c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156121a657845460ff60401b1916600160401b1785555b600080878060200190518101906121bd91906130ad565b915091506121ca826126ed565b6121d4818a611ab9565b6121e4633f77281960e21b610d97565b50508315610e5757845460ff60401b19168555604051600181526000805160206131718339815191529060200160405180910390a150505050505050565b60008051602061319183398151915254600160401b900460ff1661225957604051631afcd79f60e31b815260040160405180910390fd5b565b61023d612222565b60006080830152604082015160ff8281169116146122a7576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610b19565b60a08201516001600160a01b0381166122d357604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015612327573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234b9190612c9b565b1561236957604051637142ceb360e11b815260040160405180910390fd5b505050565b6001546001600160a01b0316156123a75760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610b19565b6001600160a01b0381166123ce5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036124045760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610b19565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a79061244a9063230c0c8160e11b90600401612c06565b602060405180830381865afa925050508015612483575060408051601f3d908101601f1916820190925261248091810190612c9b565b60015b6124ab5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610b19565b806113b45760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610b19565b60008051602061315183398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61253d612222565b6001600160a01b038116612564576040516352e2d0c160e01b815260040160405180910390fd5b60008051602061313183398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611106573d6000803e3d6000fd5b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161265091906130dc565b600060405180830381855afa9150503d806000811461268b576040519150601f19603f3d011682016040523d82523d6000602084013e612690565b606091505b509150915081156126e25760408151106126c257808060200190518101906126b891906130f8565b90945092506126e2565b60208151106126e257808060200190518101906126df9190612c9b565b93505b505094509492505050565b6126f5612222565b61128181612701612222565b611281816124d4565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561275a57600080fd5b81356001600160e01b03198116811461277257600080fd5b9392505050565b6001600160a01b038116811461128157600080fd5b803561279981612779565b919050565b600080604083850312156127b157600080fd5b82356127bc81612779565b915060208301356127cc81612779565b809150509250929050565b60005b838110156127f25781810151838201526020016127da565b50506000910152565b600081518084526128138160208601602086016127d7565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161289060c08401826001600160a01b03169052565b5060c083015160e0808401526128aa6101008401826127fb565b949350505050565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156128ea576128ea6128b2565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612918576129186128b2565b604052919050565b60006001600160401b03821115612939576129396128b2565b50601f01601f191660200190565b600082601f83011261295857600080fd5b813561296b61296682612920565b6128f0565b81815284602083860101111561298057600080fd5b816020850160208301376000918101602001919091529392505050565b6000806000606084860312156129b257600080fd5b83356129bd81612779565b925060208401356129cd81612779565b915060408401356001600160401b038111156129e857600080fd5b6129f486828701612947565b9150509250925092565b6001600160601b038116811461128157600080fd5b8035612799816129fe565b60ff8116811461128157600080fd5b803561279981612a1e565b801515811461128157600080fd5b803561279981612a38565b60008060008060008060c08789031215612a6a57600080fd5b8635612a7581612779565b95506020870135612a85816129fe565b94506040870135612a9581612a1e565b93506060870135612aa581612a38565b92506080870135612ab581612779565b915060a08701356001600160401b03811115612ad057600080fd5b612adc89828a01612947565b9150509295509295509295565b62ffffff8116811461128157600080fd5b600060208284031215612b0c57600080fd5b813561277281612ae9565b600060208284031215612b2957600080fd5b81356001600160401b0380821115612b4057600080fd5b9083019060e08286031215612b5457600080fd5b612b5c6128c8565b612b6583612a13565b8152612b7360208401612a13565b6020820152612b8460408401612a2d565b6040820152612b9560608401612a46565b6060820152612ba66080840161278e565b6080820152612bb760a0840161278e565b60a082015260c083013582811115612bce57600080fd5b612bda87828601612947565b60c08301525095945050505050565b600060208284031215612bfb57600080fd5b813561277281612779565b6001600160e01b031991909116815260200190565b600060208284031215612c2d57600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b82811015612c83578151805160ff1685528601516001600160e01b031916868501529284019290850190600101612c51565b5091979650505050505050565b805161279981612a38565b600060208284031215612cad57600080fd5b815161277281612a38565b8051612799816129fe565b600060208284031215612cd557600080fd5b8151612772816129fe565b600060208284031215612cf257600080fd5b815161277281612ae9565b600181811c90821680612d1157607f821691505b602082108103612d3157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561236957600081815260208120601f850160051c81016020861015612d5e5750805b601f850160051c820191505b818110156115ff57828155600101612d6a565b81516001600160401b03811115612d9657612d966128b2565b612daa81612da48454612cfd565b84612d37565b602080601f831160018114612ddf5760008415612dc75750858301515b600019600386901b1c1916600185901b1785556115ff565b600085815260208120601f198616915b82811015612e0e57888601518255948401946001909101908401612def565b5085821015612e2c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612e4e57600080fd5b81516001600160401b038116811461277257600080fd5b600060208284031215612e7757600080fd5b5051919050565b805161279981612779565b600060208284031215612e9b57600080fd5b815161277281612779565b634e487b7160e01b600052603260045260246000fd5b805161279981612a1e565b600060208284031215612ed957600080fd5b815161277281612a1e565b60008085851115612ef457600080fd5b83861115612f0157600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612f365780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612f8f57600080fd5b8151612f9d61296682612920565b818152846020838601011115612fb257600080fd5b6128aa8260208301602087016127d7565b600060208284031215612fd557600080fd5b81516001600160401b0380821115612fec57600080fd5b9083019060e0828603121561300057600080fd5b6130086128c8565b61301183612cb8565b815261301f60208401612cb8565b602082015261303060408401612ebc565b604082015261304160608401612c90565b606082015261305260808401612e7e565b608082015261306360a08401612e7e565b60a082015260c08301518281111561307a57600080fd5b612bda87828601612f7e565b60006020828403121561309857600080fd5b815164ffffffffff8116811461277257600080fd5b600080604083850312156130c057600080fd5b82516130cb81612779565b60208401519092506127cc81612779565b600082516130ee8184602087016127d7565b9190910192915050565b6000806040838503121561310b57600080fd5b825161311681612a38565b602084015190925063ffffffff811681146127cc57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122070a21e20e78d15201660e4e336da0e44e828ac0a27b0f333d4d2c9efa16f571d64736f6c63430008140033",
|
1259
|
+
"linkReferences": {
|
1260
|
+
"contracts/types/Blocknumber.sol": {
|
1261
|
+
"BlocknumberLib": [
|
1262
|
+
{
|
1263
|
+
"length": 20,
|
1264
|
+
"start": 4386
|
1265
|
+
}
|
1266
|
+
]
|
1267
|
+
},
|
1268
|
+
"contracts/types/NftId.sol": {
|
1269
|
+
"NftIdLib": [
|
1270
|
+
{
|
1271
|
+
"length": 20,
|
1272
|
+
"start": 2920
|
1273
|
+
},
|
1274
|
+
{
|
1275
|
+
"length": 20,
|
1276
|
+
"start": 5354
|
1277
|
+
}
|
1278
|
+
]
|
1279
|
+
},
|
1280
|
+
"contracts/types/Timestamp.sol": {
|
1281
|
+
"TimestampLib": [
|
1282
|
+
{
|
1283
|
+
"length": 20,
|
1284
|
+
"start": 8321
|
1285
|
+
}
|
1286
|
+
]
|
1287
|
+
},
|
1288
|
+
"contracts/types/Version.sol": {
|
1289
|
+
"VersionLib": [
|
1290
|
+
{
|
1291
|
+
"length": 20,
|
1292
|
+
"start": 2356
|
1293
|
+
},
|
1294
|
+
{
|
1295
|
+
"length": 20,
|
1296
|
+
"start": 3912
|
1297
|
+
},
|
1298
|
+
{
|
1299
|
+
"length": 20,
|
1300
|
+
"start": 6977
|
1301
|
+
}
|
1302
|
+
]
|
1303
|
+
}
|
1304
|
+
},
|
1305
|
+
"deployedLinkReferences": {
|
1306
|
+
"contracts/types/Blocknumber.sol": {
|
1307
|
+
"BlocknumberLib": [
|
1308
|
+
{
|
1309
|
+
"length": 20,
|
1310
|
+
"start": 4156
|
1311
|
+
}
|
1312
|
+
]
|
1313
|
+
},
|
1314
|
+
"contracts/types/NftId.sol": {
|
1315
|
+
"NftIdLib": [
|
1316
|
+
{
|
1317
|
+
"length": 20,
|
1318
|
+
"start": 2690
|
1319
|
+
},
|
1320
|
+
{
|
1321
|
+
"length": 20,
|
1322
|
+
"start": 5124
|
1323
|
+
}
|
1324
|
+
]
|
1325
|
+
},
|
1326
|
+
"contracts/types/Timestamp.sol": {
|
1327
|
+
"TimestampLib": [
|
1328
|
+
{
|
1329
|
+
"length": 20,
|
1330
|
+
"start": 8091
|
1331
|
+
}
|
1332
|
+
]
|
1333
|
+
},
|
1334
|
+
"contracts/types/Version.sol": {
|
1335
|
+
"VersionLib": [
|
1336
|
+
{
|
1337
|
+
"length": 20,
|
1338
|
+
"start": 2126
|
1339
|
+
},
|
1340
|
+
{
|
1341
|
+
"length": 20,
|
1342
|
+
"start": 3682
|
1343
|
+
},
|
1344
|
+
{
|
1345
|
+
"length": 20,
|
1346
|
+
"start": 6747
|
1347
|
+
}
|
1348
|
+
]
|
1349
|
+
}
|
1350
|
+
}
|
1351
|
+
}
|