@etherisc/gif-next 0.0.2-f9bc4c7-556 → 0.0.2-fbe22f0-239
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +314 -2
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +858 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1114 -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} +281 -226
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +695 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +601 -76
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +582 -61
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1099 -159
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +1030 -84
- 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/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- 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 +1150 -1021
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +591 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2047 -1067
- 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 +1164 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +584 -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 +728 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +45 -127
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +55 -245
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
- 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/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.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/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1091 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1292 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +560 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +897 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +548 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +625 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +785 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/InstanceBase.sol/InstanceBase.json → service/IDistributionService.sol/IDistributionService.json} +205 -85
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +771 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +203 -80
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +209 -150
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1352 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +616 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +546 -86
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +548 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +521 -213
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +548 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +186 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +466 -34
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +986 -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 +470 -103
- 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 +1325 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +575 -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 +505 -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 +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +56 -79
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +116 -36
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +174 -117
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +277 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +172 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +473 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +293 -25
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +601 -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 +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +309 -26
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +412 -58
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +103 -23
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +52 -13
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/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 +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +15 -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/{UFixedMathLib.json → UFixedLib.json} +3 -3
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +230 -0
- 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 +65 -35
- package/contracts/components/IProductComponent.sol +29 -9
- package/contracts/components/Pool.sol +180 -100
- package/contracts/components/Product.sol +203 -42
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +65 -45
- package/contracts/instance/IInstanceService.sol +41 -0
- package/contracts/instance/Instance.sol +253 -53
- package/contracts/instance/InstanceAccessManager.sol +297 -0
- package/contracts/instance/InstanceReader.sol +293 -0
- package/contracts/instance/InstanceService.sol +434 -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 +13 -13
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +53 -37
- package/contracts/instance/base/Lifecycle.sol +16 -11
- 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 +8 -18
- package/contracts/instance/service/IProductService.sol +21 -39
- package/contracts/instance/service/PolicyService.sol +524 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +78 -92
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +168 -289
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +79 -36
- package/contracts/registry/IRegistry.sol +66 -24
- package/contracts/registry/IRegistryService.sol +65 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +364 -283
- 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 +13 -8
- package/contracts/shared/INftOwnable.sol +27 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +10 -19
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +55 -11
- package/contracts/shared/NftOwnable.sol +187 -0
- package/contracts/shared/PolicyHolder.sol +52 -0
- package/contracts/shared/ProxyManager.sol +95 -0
- package/contracts/shared/Registerable.sol +58 -63
- 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 +113 -54
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRegisterable.sol +5 -6
- package/contracts/test/TestRoleId.sol +1 -1
- package/contracts/test/TestService.sol +7 -14
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +10 -5
- package/contracts/types/Key32.sol +8 -3
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +55 -14
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +62 -10
- package/contracts/types/StateId.sol +5 -1
- package/contracts/types/Timestamp.sol +7 -3
- package/contracts/types/UFixed.sol +128 -12
- package/contracts/types/Version.sol +13 -1
- package/package.json +6 -5
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -88
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -14
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -80
- package/contracts/instance/base/ModuleBase.sol +0 -52
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -136
- package/contracts/instance/module/bundle/IBundle.sol +0 -58
- package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
- package/contracts/instance/module/compensation/ICompensation.sol +0 -10
- package/contracts/instance/module/component/ComponentModule.sol +0 -95
- package/contracts/instance/module/component/IComponent.sol +0 -53
- package/contracts/instance/module/policy/IPolicy.sol +0 -60
- package/contracts/instance/module/policy/PolicyModule.sol +0 -76
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -87
- package/contracts/instance/module/risk/IRisk.sol +0 -10
- package/contracts/instance/module/risk/RiskModule.sol +0 -8
- package/contracts/instance/module/treasury/ITreasury.sol +0 -103
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
- package/contracts/instance/service/ComponentOwnerService.sol +0 -170
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/test/TestPool.sol +0 -22
- package/contracts/test/TestProduct.sol +0 -44
@@ -0,0 +1,1325 @@
|
|
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": "getVersion",
|
506
|
+
"outputs": [
|
507
|
+
{
|
508
|
+
"internalType": "Version",
|
509
|
+
"name": "",
|
510
|
+
"type": "uint24"
|
511
|
+
}
|
512
|
+
],
|
513
|
+
"stateMutability": "pure",
|
514
|
+
"type": "function"
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"inputs": [
|
518
|
+
{
|
519
|
+
"internalType": "uint256",
|
520
|
+
"name": "idx",
|
521
|
+
"type": "uint256"
|
522
|
+
}
|
523
|
+
],
|
524
|
+
"name": "getVersion",
|
525
|
+
"outputs": [
|
526
|
+
{
|
527
|
+
"internalType": "Version",
|
528
|
+
"name": "",
|
529
|
+
"type": "uint24"
|
530
|
+
}
|
531
|
+
],
|
532
|
+
"stateMutability": "view",
|
533
|
+
"type": "function"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"inputs": [],
|
537
|
+
"name": "getVersionCount",
|
538
|
+
"outputs": [
|
539
|
+
{
|
540
|
+
"internalType": "uint256",
|
541
|
+
"name": "",
|
542
|
+
"type": "uint256"
|
543
|
+
}
|
544
|
+
],
|
545
|
+
"stateMutability": "view",
|
546
|
+
"type": "function"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"inputs": [
|
550
|
+
{
|
551
|
+
"internalType": "Version",
|
552
|
+
"name": "_version",
|
553
|
+
"type": "uint24"
|
554
|
+
}
|
555
|
+
],
|
556
|
+
"name": "getVersionInfo",
|
557
|
+
"outputs": [
|
558
|
+
{
|
559
|
+
"components": [
|
560
|
+
{
|
561
|
+
"internalType": "Version",
|
562
|
+
"name": "version",
|
563
|
+
"type": "uint24"
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"internalType": "address",
|
567
|
+
"name": "implementation",
|
568
|
+
"type": "address"
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"internalType": "address",
|
572
|
+
"name": "activatedBy",
|
573
|
+
"type": "address"
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"internalType": "Timestamp",
|
577
|
+
"name": "activatedAt",
|
578
|
+
"type": "uint40"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"internalType": "Blocknumber",
|
582
|
+
"name": "activatedIn",
|
583
|
+
"type": "uint32"
|
584
|
+
}
|
585
|
+
],
|
586
|
+
"internalType": "struct IVersionable.VersionInfo",
|
587
|
+
"name": "",
|
588
|
+
"type": "tuple"
|
589
|
+
}
|
590
|
+
],
|
591
|
+
"stateMutability": "view",
|
592
|
+
"type": "function"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"inputs": [],
|
596
|
+
"name": "initializeERC165",
|
597
|
+
"outputs": [],
|
598
|
+
"stateMutability": "nonpayable",
|
599
|
+
"type": "function"
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"inputs": [
|
603
|
+
{
|
604
|
+
"internalType": "address",
|
605
|
+
"name": "initialOwner",
|
606
|
+
"type": "address"
|
607
|
+
},
|
608
|
+
{
|
609
|
+
"internalType": "address",
|
610
|
+
"name": "registryAddress",
|
611
|
+
"type": "address"
|
612
|
+
}
|
613
|
+
],
|
614
|
+
"name": "initializeNftOwnable",
|
615
|
+
"outputs": [],
|
616
|
+
"stateMutability": "nonpayable",
|
617
|
+
"type": "function"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"inputs": [
|
621
|
+
{
|
622
|
+
"internalType": "address",
|
623
|
+
"name": "initialOwner",
|
624
|
+
"type": "address"
|
625
|
+
}
|
626
|
+
],
|
627
|
+
"name": "initializeOwner",
|
628
|
+
"outputs": [],
|
629
|
+
"stateMutability": "nonpayable",
|
630
|
+
"type": "function"
|
631
|
+
},
|
632
|
+
{
|
633
|
+
"inputs": [
|
634
|
+
{
|
635
|
+
"internalType": "address",
|
636
|
+
"name": "registryAddress",
|
637
|
+
"type": "address"
|
638
|
+
},
|
639
|
+
{
|
640
|
+
"internalType": "NftId",
|
641
|
+
"name": "parentNftId",
|
642
|
+
"type": "uint96"
|
643
|
+
},
|
644
|
+
{
|
645
|
+
"internalType": "ObjectType",
|
646
|
+
"name": "objectType",
|
647
|
+
"type": "uint8"
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"internalType": "bool",
|
651
|
+
"name": "isInterceptor",
|
652
|
+
"type": "bool"
|
653
|
+
},
|
654
|
+
{
|
655
|
+
"internalType": "address",
|
656
|
+
"name": "initialOwner",
|
657
|
+
"type": "address"
|
658
|
+
},
|
659
|
+
{
|
660
|
+
"internalType": "bytes",
|
661
|
+
"name": "data",
|
662
|
+
"type": "bytes"
|
663
|
+
}
|
664
|
+
],
|
665
|
+
"name": "initializeRegisterable",
|
666
|
+
"outputs": [],
|
667
|
+
"stateMutability": "nonpayable",
|
668
|
+
"type": "function"
|
669
|
+
},
|
670
|
+
{
|
671
|
+
"inputs": [
|
672
|
+
{
|
673
|
+
"internalType": "address",
|
674
|
+
"name": "registry",
|
675
|
+
"type": "address"
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"internalType": "address",
|
679
|
+
"name": "initialOwner",
|
680
|
+
"type": "address"
|
681
|
+
}
|
682
|
+
],
|
683
|
+
"name": "initializeService",
|
684
|
+
"outputs": [],
|
685
|
+
"stateMutability": "nonpayable",
|
686
|
+
"type": "function"
|
687
|
+
},
|
688
|
+
{
|
689
|
+
"inputs": [
|
690
|
+
{
|
691
|
+
"internalType": "address",
|
692
|
+
"name": "implementation",
|
693
|
+
"type": "address"
|
694
|
+
},
|
695
|
+
{
|
696
|
+
"internalType": "address",
|
697
|
+
"name": "activatedBy",
|
698
|
+
"type": "address"
|
699
|
+
},
|
700
|
+
{
|
701
|
+
"internalType": "bytes",
|
702
|
+
"name": "data",
|
703
|
+
"type": "bytes"
|
704
|
+
}
|
705
|
+
],
|
706
|
+
"name": "initializeVersionable",
|
707
|
+
"outputs": [],
|
708
|
+
"stateMutability": "nonpayable",
|
709
|
+
"type": "function"
|
710
|
+
},
|
711
|
+
{
|
712
|
+
"inputs": [],
|
713
|
+
"name": "isConsumingScheduledOp",
|
714
|
+
"outputs": [
|
715
|
+
{
|
716
|
+
"internalType": "bytes4",
|
717
|
+
"name": "",
|
718
|
+
"type": "bytes4"
|
719
|
+
}
|
720
|
+
],
|
721
|
+
"stateMutability": "view",
|
722
|
+
"type": "function"
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"inputs": [
|
726
|
+
{
|
727
|
+
"internalType": "Version",
|
728
|
+
"name": "_version",
|
729
|
+
"type": "uint24"
|
730
|
+
}
|
731
|
+
],
|
732
|
+
"name": "isInitialized",
|
733
|
+
"outputs": [
|
734
|
+
{
|
735
|
+
"internalType": "bool",
|
736
|
+
"name": "",
|
737
|
+
"type": "bool"
|
738
|
+
}
|
739
|
+
],
|
740
|
+
"stateMutability": "view",
|
741
|
+
"type": "function"
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"inputs": [],
|
745
|
+
"name": "linkToRegisteredNftId",
|
746
|
+
"outputs": [],
|
747
|
+
"stateMutability": "nonpayable",
|
748
|
+
"type": "function"
|
749
|
+
},
|
750
|
+
{
|
751
|
+
"inputs": [
|
752
|
+
{
|
753
|
+
"components": [
|
754
|
+
{
|
755
|
+
"internalType": "NftId",
|
756
|
+
"name": "nftId",
|
757
|
+
"type": "uint96"
|
758
|
+
},
|
759
|
+
{
|
760
|
+
"internalType": "NftId",
|
761
|
+
"name": "parentNftId",
|
762
|
+
"type": "uint96"
|
763
|
+
},
|
764
|
+
{
|
765
|
+
"internalType": "ObjectType",
|
766
|
+
"name": "objectType",
|
767
|
+
"type": "uint8"
|
768
|
+
},
|
769
|
+
{
|
770
|
+
"internalType": "bool",
|
771
|
+
"name": "isInterceptor",
|
772
|
+
"type": "bool"
|
773
|
+
},
|
774
|
+
{
|
775
|
+
"internalType": "address",
|
776
|
+
"name": "objectAddress",
|
777
|
+
"type": "address"
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"internalType": "address",
|
781
|
+
"name": "initialOwner",
|
782
|
+
"type": "address"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"internalType": "bytes",
|
786
|
+
"name": "data",
|
787
|
+
"type": "bytes"
|
788
|
+
}
|
789
|
+
],
|
790
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
791
|
+
"name": "info",
|
792
|
+
"type": "tuple"
|
793
|
+
}
|
794
|
+
],
|
795
|
+
"name": "registerBundle",
|
796
|
+
"outputs": [
|
797
|
+
{
|
798
|
+
"internalType": "NftId",
|
799
|
+
"name": "nftId",
|
800
|
+
"type": "uint96"
|
801
|
+
}
|
802
|
+
],
|
803
|
+
"stateMutability": "nonpayable",
|
804
|
+
"type": "function"
|
805
|
+
},
|
806
|
+
{
|
807
|
+
"inputs": [
|
808
|
+
{
|
809
|
+
"internalType": "contract IComponent",
|
810
|
+
"name": "distribution",
|
811
|
+
"type": "address"
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"internalType": "address",
|
815
|
+
"name": "owner",
|
816
|
+
"type": "address"
|
817
|
+
}
|
818
|
+
],
|
819
|
+
"name": "registerDistribution",
|
820
|
+
"outputs": [
|
821
|
+
{
|
822
|
+
"components": [
|
823
|
+
{
|
824
|
+
"internalType": "NftId",
|
825
|
+
"name": "nftId",
|
826
|
+
"type": "uint96"
|
827
|
+
},
|
828
|
+
{
|
829
|
+
"internalType": "NftId",
|
830
|
+
"name": "parentNftId",
|
831
|
+
"type": "uint96"
|
832
|
+
},
|
833
|
+
{
|
834
|
+
"internalType": "ObjectType",
|
835
|
+
"name": "objectType",
|
836
|
+
"type": "uint8"
|
837
|
+
},
|
838
|
+
{
|
839
|
+
"internalType": "bool",
|
840
|
+
"name": "isInterceptor",
|
841
|
+
"type": "bool"
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"internalType": "address",
|
845
|
+
"name": "objectAddress",
|
846
|
+
"type": "address"
|
847
|
+
},
|
848
|
+
{
|
849
|
+
"internalType": "address",
|
850
|
+
"name": "initialOwner",
|
851
|
+
"type": "address"
|
852
|
+
},
|
853
|
+
{
|
854
|
+
"internalType": "bytes",
|
855
|
+
"name": "data",
|
856
|
+
"type": "bytes"
|
857
|
+
}
|
858
|
+
],
|
859
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
860
|
+
"name": "info",
|
861
|
+
"type": "tuple"
|
862
|
+
}
|
863
|
+
],
|
864
|
+
"stateMutability": "nonpayable",
|
865
|
+
"type": "function"
|
866
|
+
},
|
867
|
+
{
|
868
|
+
"inputs": [
|
869
|
+
{
|
870
|
+
"internalType": "contract IRegisterable",
|
871
|
+
"name": "instance",
|
872
|
+
"type": "address"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
"internalType": "address",
|
876
|
+
"name": "owner",
|
877
|
+
"type": "address"
|
878
|
+
}
|
879
|
+
],
|
880
|
+
"name": "registerInstance",
|
881
|
+
"outputs": [
|
882
|
+
{
|
883
|
+
"components": [
|
884
|
+
{
|
885
|
+
"internalType": "NftId",
|
886
|
+
"name": "nftId",
|
887
|
+
"type": "uint96"
|
888
|
+
},
|
889
|
+
{
|
890
|
+
"internalType": "NftId",
|
891
|
+
"name": "parentNftId",
|
892
|
+
"type": "uint96"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"internalType": "ObjectType",
|
896
|
+
"name": "objectType",
|
897
|
+
"type": "uint8"
|
898
|
+
},
|
899
|
+
{
|
900
|
+
"internalType": "bool",
|
901
|
+
"name": "isInterceptor",
|
902
|
+
"type": "bool"
|
903
|
+
},
|
904
|
+
{
|
905
|
+
"internalType": "address",
|
906
|
+
"name": "objectAddress",
|
907
|
+
"type": "address"
|
908
|
+
},
|
909
|
+
{
|
910
|
+
"internalType": "address",
|
911
|
+
"name": "initialOwner",
|
912
|
+
"type": "address"
|
913
|
+
},
|
914
|
+
{
|
915
|
+
"internalType": "bytes",
|
916
|
+
"name": "data",
|
917
|
+
"type": "bytes"
|
918
|
+
}
|
919
|
+
],
|
920
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
921
|
+
"name": "info",
|
922
|
+
"type": "tuple"
|
923
|
+
}
|
924
|
+
],
|
925
|
+
"stateMutability": "nonpayable",
|
926
|
+
"type": "function"
|
927
|
+
},
|
928
|
+
{
|
929
|
+
"inputs": [
|
930
|
+
{
|
931
|
+
"internalType": "bytes4",
|
932
|
+
"name": "interfaceId",
|
933
|
+
"type": "bytes4"
|
934
|
+
}
|
935
|
+
],
|
936
|
+
"name": "registerInterface",
|
937
|
+
"outputs": [],
|
938
|
+
"stateMutability": "nonpayable",
|
939
|
+
"type": "function"
|
940
|
+
},
|
941
|
+
{
|
942
|
+
"inputs": [
|
943
|
+
{
|
944
|
+
"components": [
|
945
|
+
{
|
946
|
+
"internalType": "NftId",
|
947
|
+
"name": "nftId",
|
948
|
+
"type": "uint96"
|
949
|
+
},
|
950
|
+
{
|
951
|
+
"internalType": "NftId",
|
952
|
+
"name": "parentNftId",
|
953
|
+
"type": "uint96"
|
954
|
+
},
|
955
|
+
{
|
956
|
+
"internalType": "ObjectType",
|
957
|
+
"name": "objectType",
|
958
|
+
"type": "uint8"
|
959
|
+
},
|
960
|
+
{
|
961
|
+
"internalType": "bool",
|
962
|
+
"name": "isInterceptor",
|
963
|
+
"type": "bool"
|
964
|
+
},
|
965
|
+
{
|
966
|
+
"internalType": "address",
|
967
|
+
"name": "objectAddress",
|
968
|
+
"type": "address"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"internalType": "address",
|
972
|
+
"name": "initialOwner",
|
973
|
+
"type": "address"
|
974
|
+
},
|
975
|
+
{
|
976
|
+
"internalType": "bytes",
|
977
|
+
"name": "data",
|
978
|
+
"type": "bytes"
|
979
|
+
}
|
980
|
+
],
|
981
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
982
|
+
"name": "info",
|
983
|
+
"type": "tuple"
|
984
|
+
}
|
985
|
+
],
|
986
|
+
"name": "registerPolicy",
|
987
|
+
"outputs": [
|
988
|
+
{
|
989
|
+
"internalType": "NftId",
|
990
|
+
"name": "nftId",
|
991
|
+
"type": "uint96"
|
992
|
+
}
|
993
|
+
],
|
994
|
+
"stateMutability": "nonpayable",
|
995
|
+
"type": "function"
|
996
|
+
},
|
997
|
+
{
|
998
|
+
"inputs": [
|
999
|
+
{
|
1000
|
+
"internalType": "contract IComponent",
|
1001
|
+
"name": "pool",
|
1002
|
+
"type": "address"
|
1003
|
+
},
|
1004
|
+
{
|
1005
|
+
"internalType": "address",
|
1006
|
+
"name": "owner",
|
1007
|
+
"type": "address"
|
1008
|
+
}
|
1009
|
+
],
|
1010
|
+
"name": "registerPool",
|
1011
|
+
"outputs": [
|
1012
|
+
{
|
1013
|
+
"components": [
|
1014
|
+
{
|
1015
|
+
"internalType": "NftId",
|
1016
|
+
"name": "nftId",
|
1017
|
+
"type": "uint96"
|
1018
|
+
},
|
1019
|
+
{
|
1020
|
+
"internalType": "NftId",
|
1021
|
+
"name": "parentNftId",
|
1022
|
+
"type": "uint96"
|
1023
|
+
},
|
1024
|
+
{
|
1025
|
+
"internalType": "ObjectType",
|
1026
|
+
"name": "objectType",
|
1027
|
+
"type": "uint8"
|
1028
|
+
},
|
1029
|
+
{
|
1030
|
+
"internalType": "bool",
|
1031
|
+
"name": "isInterceptor",
|
1032
|
+
"type": "bool"
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
"internalType": "address",
|
1036
|
+
"name": "objectAddress",
|
1037
|
+
"type": "address"
|
1038
|
+
},
|
1039
|
+
{
|
1040
|
+
"internalType": "address",
|
1041
|
+
"name": "initialOwner",
|
1042
|
+
"type": "address"
|
1043
|
+
},
|
1044
|
+
{
|
1045
|
+
"internalType": "bytes",
|
1046
|
+
"name": "data",
|
1047
|
+
"type": "bytes"
|
1048
|
+
}
|
1049
|
+
],
|
1050
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1051
|
+
"name": "info",
|
1052
|
+
"type": "tuple"
|
1053
|
+
}
|
1054
|
+
],
|
1055
|
+
"stateMutability": "nonpayable",
|
1056
|
+
"type": "function"
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
"inputs": [
|
1060
|
+
{
|
1061
|
+
"internalType": "contract IComponent",
|
1062
|
+
"name": "product",
|
1063
|
+
"type": "address"
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
"internalType": "address",
|
1067
|
+
"name": "owner",
|
1068
|
+
"type": "address"
|
1069
|
+
}
|
1070
|
+
],
|
1071
|
+
"name": "registerProduct",
|
1072
|
+
"outputs": [
|
1073
|
+
{
|
1074
|
+
"components": [
|
1075
|
+
{
|
1076
|
+
"internalType": "NftId",
|
1077
|
+
"name": "nftId",
|
1078
|
+
"type": "uint96"
|
1079
|
+
},
|
1080
|
+
{
|
1081
|
+
"internalType": "NftId",
|
1082
|
+
"name": "parentNftId",
|
1083
|
+
"type": "uint96"
|
1084
|
+
},
|
1085
|
+
{
|
1086
|
+
"internalType": "ObjectType",
|
1087
|
+
"name": "objectType",
|
1088
|
+
"type": "uint8"
|
1089
|
+
},
|
1090
|
+
{
|
1091
|
+
"internalType": "bool",
|
1092
|
+
"name": "isInterceptor",
|
1093
|
+
"type": "bool"
|
1094
|
+
},
|
1095
|
+
{
|
1096
|
+
"internalType": "address",
|
1097
|
+
"name": "objectAddress",
|
1098
|
+
"type": "address"
|
1099
|
+
},
|
1100
|
+
{
|
1101
|
+
"internalType": "address",
|
1102
|
+
"name": "initialOwner",
|
1103
|
+
"type": "address"
|
1104
|
+
},
|
1105
|
+
{
|
1106
|
+
"internalType": "bytes",
|
1107
|
+
"name": "data",
|
1108
|
+
"type": "bytes"
|
1109
|
+
}
|
1110
|
+
],
|
1111
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1112
|
+
"name": "info",
|
1113
|
+
"type": "tuple"
|
1114
|
+
}
|
1115
|
+
],
|
1116
|
+
"stateMutability": "nonpayable",
|
1117
|
+
"type": "function"
|
1118
|
+
},
|
1119
|
+
{
|
1120
|
+
"inputs": [
|
1121
|
+
{
|
1122
|
+
"components": [
|
1123
|
+
{
|
1124
|
+
"internalType": "NftId",
|
1125
|
+
"name": "nftId",
|
1126
|
+
"type": "uint96"
|
1127
|
+
},
|
1128
|
+
{
|
1129
|
+
"internalType": "NftId",
|
1130
|
+
"name": "parentNftId",
|
1131
|
+
"type": "uint96"
|
1132
|
+
},
|
1133
|
+
{
|
1134
|
+
"internalType": "ObjectType",
|
1135
|
+
"name": "objectType",
|
1136
|
+
"type": "uint8"
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
"internalType": "bool",
|
1140
|
+
"name": "isInterceptor",
|
1141
|
+
"type": "bool"
|
1142
|
+
},
|
1143
|
+
{
|
1144
|
+
"internalType": "address",
|
1145
|
+
"name": "objectAddress",
|
1146
|
+
"type": "address"
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
"internalType": "address",
|
1150
|
+
"name": "initialOwner",
|
1151
|
+
"type": "address"
|
1152
|
+
},
|
1153
|
+
{
|
1154
|
+
"internalType": "bytes",
|
1155
|
+
"name": "data",
|
1156
|
+
"type": "bytes"
|
1157
|
+
}
|
1158
|
+
],
|
1159
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1160
|
+
"name": "info",
|
1161
|
+
"type": "tuple"
|
1162
|
+
}
|
1163
|
+
],
|
1164
|
+
"name": "registerStake",
|
1165
|
+
"outputs": [
|
1166
|
+
{
|
1167
|
+
"internalType": "NftId",
|
1168
|
+
"name": "nftId",
|
1169
|
+
"type": "uint96"
|
1170
|
+
}
|
1171
|
+
],
|
1172
|
+
"stateMutability": "nonpayable",
|
1173
|
+
"type": "function"
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
"inputs": [
|
1177
|
+
{
|
1178
|
+
"internalType": "address",
|
1179
|
+
"name": "newAuthority",
|
1180
|
+
"type": "address"
|
1181
|
+
}
|
1182
|
+
],
|
1183
|
+
"name": "setAuthority",
|
1184
|
+
"outputs": [],
|
1185
|
+
"stateMutability": "nonpayable",
|
1186
|
+
"type": "function"
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
"inputs": [
|
1190
|
+
{
|
1191
|
+
"internalType": "bytes4",
|
1192
|
+
"name": "interfaceId",
|
1193
|
+
"type": "bytes4"
|
1194
|
+
}
|
1195
|
+
],
|
1196
|
+
"name": "supportsInterface",
|
1197
|
+
"outputs": [
|
1198
|
+
{
|
1199
|
+
"internalType": "bool",
|
1200
|
+
"name": "",
|
1201
|
+
"type": "bool"
|
1202
|
+
}
|
1203
|
+
],
|
1204
|
+
"stateMutability": "view",
|
1205
|
+
"type": "function"
|
1206
|
+
},
|
1207
|
+
{
|
1208
|
+
"inputs": [
|
1209
|
+
{
|
1210
|
+
"internalType": "address",
|
1211
|
+
"name": "implementation",
|
1212
|
+
"type": "address"
|
1213
|
+
},
|
1214
|
+
{
|
1215
|
+
"internalType": "address",
|
1216
|
+
"name": "activatedBy",
|
1217
|
+
"type": "address"
|
1218
|
+
},
|
1219
|
+
{
|
1220
|
+
"internalType": "bytes",
|
1221
|
+
"name": "data",
|
1222
|
+
"type": "bytes"
|
1223
|
+
}
|
1224
|
+
],
|
1225
|
+
"name": "upgradeVersionable",
|
1226
|
+
"outputs": [],
|
1227
|
+
"stateMutability": "nonpayable",
|
1228
|
+
"type": "function"
|
1229
|
+
}
|
1230
|
+
],
|
1231
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6131c080620000e66000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80637a9e5e4b11610130578063b68d1809116100b8578063cde749f41161007c578063cde749f414610624578063ea8665721461062c578063ed841d0c1461063f578063f7c34ee014610647578063fb2cb1011461065a57600080fd5b8063b68d1809146105cc578063b88da759146105e1578063bf7e214f146105f4578063c13de997146105fc578063c2bf08c81461061157600080fd5b80638fb36037116100ff5780638fb36037146105485780638fbc2d811461055d578063946dfcfe14610570578063ada9652e14610597578063b3c65015146105ac57600080fd5b80637a9e5e4b146105075780638105cc7f1461051a578063893d20e81461052d5780638c5f36bb1461053557600080fd5b80632a904018116101b35780635ab1bd53116101825780635ab1bd53146104715780635c992fed146104915780635d966289146104bc578063644c45e0146104cf5780637286e5e5146104f457600080fd5b80632a9040181461032a57806336fc697e1461033d5780634d459c90146103455780634f4213331461045e57600080fd5b8063138461e0116101fa578063138461e0146102b25780631647f91e146102bc5780631eff4b22146102cf578063214cdb801461030457806327bb7a331461031757600080fd5b806301ffc9a71461022c578063026bc43b1461026e5780630d8e6e2c1461028e5780630fec111c146102aa575b600080fd5b61025961023a366004612702565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61028161027c366004612758565b610662565b60405161026591906127e1565b6102966107f6565b60405162ffffff9091168152602001610265565b610281610880565b6102ba610a1c565b005b6102ba6102ca366004612957565b610c4a565b6102f67f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610265565b6102ba610312366004612702565b610d41565b6102ba610325366004612a0b565b610d6e565b6102ba610338366004612957565b610e0a565b6102ba610f52565b610401610353366004612ab4565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061316b83398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610265565b61025961046c366004612ab4565b610f98565b61047961104b565b6040516001600160a01b039091168152602001610265565b6104a461049f366004612ad1565b611067565b6040516001600160601b039091168152602001610265565b6102816104ca366004612758565b6110f9565b6000805160206130eb83398151915254600160a01b90046001600160601b03166104a4565b610281610502366004612758565b61122f565b6102ba610515366004612ba3565b6112dc565b6104a4610528366004612ad1565b611363565b610479611379565b6102ba610543366004612ba3565b6114aa565b6105506115ac565b6040516102659190612bc0565b61028161056b366004612758565b6115e4565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546102f6565b6102f66000805160206130eb83398151915281565b6105b4611691565b6040516001600160401b039091168152602001610265565b60285b60405160ff9091168152602001610265565b6102966105ef366004612bd5565b6116b2565b610479611703565b61060461171f565b6040516102659190612bee565b6104a461061f366004612ad1565b6119c5565b6105cf6119db565b6102ba61063a366004612758565b611a5e565b6102f6600081565b6102ba610655366004612758565b611ad1565b610479611b03565b61066a6126c4565b610677335b600036611b19565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906106aa9063c6b60f2b60e01b90600401612bc0565b602060405180830381865afa1580156106c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106eb9190612c55565b61070857604051636795c76360e01b815260040160405180910390fd5b6107158360465b84611c17565b905061071f61104b565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161074a91906127e1565b6020604051808303816000875af1158015610769573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078d9190612c7d565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b1580156107d857600080fd5b505af11580156107ec573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610857573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087b9190612c9a565b905090565b6108886126c4565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301805460009391606084019161091890612cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461094490612cb7565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b50505050508152505090506040518060e001604052806109af600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610a00611b03565b6001600160a01b03168152602001826060015181525091505090565b60006000805160206130eb83398151915280546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab59190612c55565b15610afb5780546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b80546001600160a01b0316610b235760405163cf29926160e01b815260040160405180910390fd5b805460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8f9190612c55565b610bb7576040516372657a5160e01b81526001600160a01b0382166004820152602401610af2565b8154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610c00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c249190612c7d565b82546001600160601b0391909116600160a01b026001600160a01b039091161790915550565b60008051602061314b8339815191528054600160401b810460ff1615906001600160401b0316600081158015610c7d5750825b90506000826001600160401b03166001148015610c995750303b155b905081158015610ca7575080155b15610cc55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610cef57845460ff60401b1916600160401b1785555b610cf98888611e03565b610d0387876120a2565b8315610d3757845460ff60401b191685556040516001815260008051602061312b8339815191529060200160405180910390a15b5050505050505050565b610d496121c3565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610d766121c3565b610d808287611ad1565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610df08382612d37565b50610e016303fb044760e21b610d41565b50505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e2c6107f6565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610e6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e909190612df6565b60008051602061314b8339815191528054600160401b900460ff1680610ec3575080546001600160401b03808416911610155b15610ee15760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f0c8585611e03565b610f15836121fc565b805460ff60401b191681556040516001600160401b038316815260008051602061312b833981519152906020015b60405180910390a15050505050565b610f5a6121c3565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b60008060008051602061316b83398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015611020573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110449190612e1f565b1192915050565b6000805160206130eb833981519152546001600160a01b031690565b60006110723361066f565b61107d8260d3612204565b61108561104b565b6001600160a01b031663a5df9e4e836040518263ffffffff1660e01b81526004016110b091906127e1565b6020604051808303816000875af11580156110cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f39190612c7d565b92915050565b6111016126c4565b61110a3361066f565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061113d906301da8d1160e61b90600401612bc0565b602060405180830381865afa15801561115a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117e9190612c55565b61119b57604051637a71998760e01b815260040160405180910390fd5b6111a683606e61070f565b90506111b061104b565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016111db91906127e1565b6020604051808303816000875af11580156111fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121e9190612c7d565b6001600160601b0316815292915050565b6112376126c4565b6112403361066f565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906112739063100f51f760e01b90600401612bc0565b602060405180830381865afa158015611290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b49190612c55565b6112d157604051636f61f64160e01b815260040160405180910390fd5b6111a683608c61070f565b336112e5611703565b6001600160a01b0316816001600160a01b0316146113205760405162d1953b60e31b81526001600160a01b0382166004820152602401610af2565b816001600160a01b03163b600003611356576040516361798f2f60e11b81526001600160a01b0383166004820152602401610af2565b61135f8261230b565b5050565b600061136e3361066f565b61107d826050612204565b6000806000805160206130eb83398151915280546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114139190612c55565b15611498578054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561146e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114929190612e43565b91505090565b600101546001600160a01b0316919050565b60008051602061314b8339815191528054600160401b810460ff1615906001600160401b03166000811580156114dd5750825b90506000826001600160401b031660011480156114f95750303b155b905081158015611507575080155b156115255760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561154f57845460ff60401b1916600160401b1785555b6115588661236c565b611560610f52565b61157063a444b9bb60e01b610d41565b83156115a457845460ff60401b191685556040516001815260008051602061312b8339815191529060200160405180910390a15b505050505050565b60008051602061310b833981519152805460009190600160a01b900460ff166115d6576000611492565b638fb3603760e01b91505090565b6115ec6126c4565b6115f53361066f565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611628906302ba8bb360e21b90600401612bc0565b602060405180830381865afa158015611645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116699190612c55565b611686576040516308707e3160e41b815260040160405180910390fd5b6111a683607861070f565b600061087b60008051602061314b833981519152546001600160401b031690565b600060008051602061316b83398151915260010182815481106116d7576116d7612e60565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008051602061310b833981519152546001600160a01b031690565b60408051600680825260e08201909252606091816020015b604080518082019091526000808252602082015281526020019060019003908161173757905050905061176860d390565b8160008151811061177b5761177b612e60565b602090810291909101015160ff90911690528051635c992fed60e01b9082906000906117a9576117a9612e60565b6020908102919091018101516001600160e01b03199092169101526117cc60dc90565b816001815181106117df576117df612e60565b602090810291909101015160ff90911690528051631857e11960e31b908290600190811061180f5761180f612e60565b6020908102919091018101516001600160e01b0319909216910152611832606e90565b8160028151811061184557611845612e60565b602090810291909101015160ff90911690528051635d96628960e01b908290600290811061187557611875612e60565b6020908102919091018101516001600160e01b0319909216910152611898608c90565b816003815181106118ab576118ab612e60565b602090810291909101015160ff90911690528051637286e5e560e01b90829060039081106118db576118db612e60565b6020908102919091018101516001600160e01b03199092169101526118fe607890565b8160048151811061191157611911612e60565b602090810291909101015160ff90911690528051638fbc2d8160e01b908290600490811061194157611941612e60565b6020908102919091018101516001600160e01b0319909216910152611964604690565b8160058151811061197757611977612e60565b602090810291909101015160ff9091169052805163026bc43b60e01b90829060059081106119a7576119a7612e60565b6020908102919091018101516001600160e01b031990921691015290565b60006119d03361066f565b61107d8260dc612204565b60006119e56107f6565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611a3a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087b9190612e81565b611a666121c3565b60006028611a726119db565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000611aa7846123dc565b90506000611aba8583603c848888610d6e565b611aca637b6a51fd60e01b610d41565b5050505050565b611ad96121c3565b611ae28261236c565b611aeb81612423565b611af3610f52565b61135f63a444b9bb60e01b610d41565b60006000805160206130eb833981519152611498565b60008051602061310b833981519152600080611b54611b36611703565b8730611b46600460008a8c612e9e565b611b4f91612ec8565b612593565b91509150816115a45763ffffffff811615611bf457825460ff60a01b1916600160a01b178355611b82611703565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611bb193929190612ef8565b600060405180830381600087803b158015611bcb57600080fd5b505af1158015611bdf573d6000803e3d6000fd5b5050845460ff60a01b19168555506115a49050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610af2565b611c1f6126c4565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611c5d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c859190810190612f7d565b6001600160a01b0385166080820152604081015190915060ff848116911614611cd4576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610af2565b60a08101516001600160a01b0380821690841614611d105760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610af2565b846001600160a01b0316816001600160a01b031603611d42576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611d6957604051630fd187d360e01b815260040160405180910390fd5b611d7161104b565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ddd9190612c55565b15611dfb57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b611e0b6121c3565b60008051602061316b8339815191526000611e3b60008051602061314b833981519152546001600160401b031690565b90506000611e476107f6565b9050816001600160401b0316600103611e745760028301805462ffffff191662ffffff8316179055611ec2565b600283015462ffffff90811690821611611ec25760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610af2565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9a9190613040565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610f439083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60008051602061314b8339815191528054600160401b810460ff1615906001600160401b03166000811580156120d55750825b90506000826001600160401b031660011480156120f15750303b155b9050811580156120ff575080155b1561211d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561214757845460ff60401b1916600160401b1785555b6000808780602001905181019061215e9190613067565b9150915061216b8261269f565b612175818a611a5e565b612185633f77281960e21b610d41565b50508315610e0157845460ff60401b191685556040516001815260008051602061312b8339815191529060200160405180910390a150505050505050565b60008051602061314b83398151915254600160401b900460ff166121fa57604051631afcd79f60e31b815260040160405180910390fd5b565b6102276121c3565b60006080830152604082015160ff828116911614612248576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610af2565b60a08201516001600160a01b03811661227457604051630fd187d360e01b815260040160405180910390fd5b61227c61104b565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156122c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e89190612c55565b1561230657604051637142ceb360e11b815260040160405180910390fd5b505050565b60008051602061310b83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6123746121c3565b6001600160a01b03811661239b576040516352e2d0c160e01b815260040160405180910390fd5b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0180546001600160a01b0319166001600160a01b0392909216919091179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa1580156110cf573d6000803e3d6000fd5b6000805160206130eb83398151915280546001600160a01b03161561246957805460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610af2565b6001600160a01b0382166124905760405163f5c4d07d60e01b815260040160405180910390fd5b816001600160a01b03163b6000036124c65760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610af2565b80546001600160a01b0319166001600160a01b03831690811782556040516301ffc9a760e01b81526301ffc9a7906125099063230c0c8160e11b90600401612bc0565b602060405180830381865afa925050508015612542575060408051601f3d908101601f1916820190925261253f91810190612c55565b60015b61256a5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610af2565b806123065760405163fdeac91f60e01b81526001600160a01b0384166004820152602401610af2565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516126029190613096565b600060405180830381855afa9150503d806000811461263d576040519150601f19603f3d011682016040523d82523d6000602084013e612642565b606091505b50915091508115612694576040815110612674578080602001905181019061266a91906130b2565b9094509250612694565b602081511061269457808060200190518101906126919190612c55565b93505b505094509492505050565b6126a76121c3565b6126b0816126b3565b50565b6126bb6121c3565b6126b08161230b565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561271457600080fd5b81356001600160e01b03198116811461272c57600080fd5b9392505050565b6001600160a01b03811681146126b057600080fd5b803561275381612733565b919050565b6000806040838503121561276b57600080fd5b823561277681612733565b9150602083013561278681612733565b809150509250929050565b60005b838110156127ac578181015183820152602001612794565b50506000910152565b600081518084526127cd816020860160208601612791565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161284a60c08401826001600160a01b03169052565b5060c083015160e0808401526128646101008401826127b5565b949350505050565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156128a4576128a461286c565b60405290565b604051601f8201601f191681016001600160401b03811182821017156128d2576128d261286c565b604052919050565b60006001600160401b038211156128f3576128f361286c565b50601f01601f191660200190565b600082601f83011261291257600080fd5b8135612925612920826128da565b6128aa565b81815284602083860101111561293a57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561296c57600080fd5b833561297781612733565b9250602084013561298781612733565b915060408401356001600160401b038111156129a257600080fd5b6129ae86828701612901565b9150509250925092565b6001600160601b03811681146126b057600080fd5b8035612753816129b8565b60ff811681146126b057600080fd5b8035612753816129d8565b80151581146126b057600080fd5b8035612753816129f2565b60008060008060008060c08789031215612a2457600080fd5b8635612a2f81612733565b95506020870135612a3f816129b8565b94506040870135612a4f816129d8565b93506060870135612a5f816129f2565b92506080870135612a6f81612733565b915060a08701356001600160401b03811115612a8a57600080fd5b612a9689828a01612901565b9150509295509295509295565b62ffffff811681146126b057600080fd5b600060208284031215612ac657600080fd5b813561272c81612aa3565b600060208284031215612ae357600080fd5b81356001600160401b0380821115612afa57600080fd5b9083019060e08286031215612b0e57600080fd5b612b16612882565b612b1f836129cd565b8152612b2d602084016129cd565b6020820152612b3e604084016129e7565b6040820152612b4f60608401612a00565b6060820152612b6060808401612748565b6080820152612b7160a08401612748565b60a082015260c083013582811115612b8857600080fd5b612b9487828601612901565b60c08301525095945050505050565b600060208284031215612bb557600080fd5b813561272c81612733565b6001600160e01b031991909116815260200190565b600060208284031215612be757600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b82811015612c3d578151805160ff1685528601516001600160e01b031916868501529284019290850190600101612c0b565b5091979650505050505050565b8051612753816129f2565b600060208284031215612c6757600080fd5b815161272c816129f2565b8051612753816129b8565b600060208284031215612c8f57600080fd5b815161272c816129b8565b600060208284031215612cac57600080fd5b815161272c81612aa3565b600181811c90821680612ccb57607f821691505b602082108103612ceb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561230657600081815260208120601f850160051c81016020861015612d185750805b601f850160051c820191505b818110156115a457828155600101612d24565b81516001600160401b03811115612d5057612d5061286c565b612d6481612d5e8454612cb7565b84612cf1565b602080601f831160018114612d995760008415612d815750858301515b600019600386901b1c1916600185901b1785556115a4565b600085815260208120601f198616915b82811015612dc857888601518255948401946001909101908401612da9565b5085821015612de65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612e0857600080fd5b81516001600160401b038116811461272c57600080fd5b600060208284031215612e3157600080fd5b5051919050565b805161275381612733565b600060208284031215612e5557600080fd5b815161272c81612733565b634e487b7160e01b600052603260045260246000fd5b8051612753816129d8565b600060208284031215612e9357600080fd5b815161272c816129d8565b60008085851115612eae57600080fd5b83861115612ebb57600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612ef05780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612f4957600080fd5b8151612f57612920826128da565b818152846020838601011115612f6c57600080fd5b612864826020830160208701612791565b600060208284031215612f8f57600080fd5b81516001600160401b0380821115612fa657600080fd5b9083019060e08286031215612fba57600080fd5b612fc2612882565b612fcb83612c72565b8152612fd960208401612c72565b6020820152612fea60408401612e76565b6040820152612ffb60608401612c4a565b606082015261300c60808401612e38565b608082015261301d60a08401612e38565b60a082015260c08301518281111561303457600080fd5b612b9487828601612f38565b60006020828403121561305257600080fd5b815164ffffffffff8116811461272c57600080fd5b6000806040838503121561307a57600080fd5b825161308581612733565b602084015190925061278681612733565b600082516130a8818460208701612791565b9190910192915050565b600080604083850312156130c557600080fd5b82516130d0816129f2565b602084015190925063ffffffff8116811461278657600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122016e71bdb9e7473fe1b39b531bc37bd3bcfa38c7606773a2acf71f5c7f15eb2ea64736f6c63430008140033",
|
1232
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102275760003560e01c80637a9e5e4b11610130578063b68d1809116100b8578063cde749f41161007c578063cde749f414610624578063ea8665721461062c578063ed841d0c1461063f578063f7c34ee014610647578063fb2cb1011461065a57600080fd5b8063b68d1809146105cc578063b88da759146105e1578063bf7e214f146105f4578063c13de997146105fc578063c2bf08c81461061157600080fd5b80638fb36037116100ff5780638fb36037146105485780638fbc2d811461055d578063946dfcfe14610570578063ada9652e14610597578063b3c65015146105ac57600080fd5b80637a9e5e4b146105075780638105cc7f1461051a578063893d20e81461052d5780638c5f36bb1461053557600080fd5b80632a904018116101b35780635ab1bd53116101825780635ab1bd53146104715780635c992fed146104915780635d966289146104bc578063644c45e0146104cf5780637286e5e5146104f457600080fd5b80632a9040181461032a57806336fc697e1461033d5780634d459c90146103455780634f4213331461045e57600080fd5b8063138461e0116101fa578063138461e0146102b25780631647f91e146102bc5780631eff4b22146102cf578063214cdb801461030457806327bb7a331461031757600080fd5b806301ffc9a71461022c578063026bc43b1461026e5780630d8e6e2c1461028e5780630fec111c146102aa575b600080fd5b61025961023a366004612702565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61028161027c366004612758565b610662565b60405161026591906127e1565b6102966107f6565b60405162ffffff9091168152602001610265565b610281610880565b6102ba610a1c565b005b6102ba6102ca366004612957565b610c4a565b6102f67f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610265565b6102ba610312366004612702565b610d41565b6102ba610325366004612a0b565b610d6e565b6102ba610338366004612957565b610e0a565b6102ba610f52565b610401610353366004612ab4565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061316b83398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610265565b61025961046c366004612ab4565b610f98565b61047961104b565b6040516001600160a01b039091168152602001610265565b6104a461049f366004612ad1565b611067565b6040516001600160601b039091168152602001610265565b6102816104ca366004612758565b6110f9565b6000805160206130eb83398151915254600160a01b90046001600160601b03166104a4565b610281610502366004612758565b61122f565b6102ba610515366004612ba3565b6112dc565b6104a4610528366004612ad1565b611363565b610479611379565b6102ba610543366004612ba3565b6114aa565b6105506115ac565b6040516102659190612bc0565b61028161056b366004612758565b6115e4565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546102f6565b6102f66000805160206130eb83398151915281565b6105b4611691565b6040516001600160401b039091168152602001610265565b60285b60405160ff9091168152602001610265565b6102966105ef366004612bd5565b6116b2565b610479611703565b61060461171f565b6040516102659190612bee565b6104a461061f366004612ad1565b6119c5565b6105cf6119db565b6102ba61063a366004612758565b611a5e565b6102f6600081565b6102ba610655366004612758565b611ad1565b610479611b03565b61066a6126c4565b610677335b600036611b19565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906106aa9063c6b60f2b60e01b90600401612bc0565b602060405180830381865afa1580156106c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106eb9190612c55565b61070857604051636795c76360e01b815260040160405180910390fd5b6107158360465b84611c17565b905061071f61104b565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161074a91906127e1565b6020604051808303816000875af1158015610769573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078d9190612c7d565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b1580156107d857600080fd5b505af11580156107ec573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610857573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087b9190612c9a565b905090565b6108886126c4565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301805460009391606084019161091890612cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461094490612cb7565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b50505050508152505090506040518060e001604052806109af600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610a00611b03565b6001600160a01b03168152602001826060015181525091505090565b60006000805160206130eb83398151915280546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab59190612c55565b15610afb5780546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b80546001600160a01b0316610b235760405163cf29926160e01b815260040160405180910390fd5b805460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8f9190612c55565b610bb7576040516372657a5160e01b81526001600160a01b0382166004820152602401610af2565b8154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610c00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c249190612c7d565b82546001600160601b0391909116600160a01b026001600160a01b039091161790915550565b60008051602061314b8339815191528054600160401b810460ff1615906001600160401b0316600081158015610c7d5750825b90506000826001600160401b03166001148015610c995750303b155b905081158015610ca7575080155b15610cc55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610cef57845460ff60401b1916600160401b1785555b610cf98888611e03565b610d0387876120a2565b8315610d3757845460ff60401b191685556040516001815260008051602061312b8339815191529060200160405180910390a15b5050505050505050565b610d496121c3565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610d766121c3565b610d808287611ad1565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610df08382612d37565b50610e016303fb044760e21b610d41565b50505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e2c6107f6565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610e6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e909190612df6565b60008051602061314b8339815191528054600160401b900460ff1680610ec3575080546001600160401b03808416911610155b15610ee15760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f0c8585611e03565b610f15836121fc565b805460ff60401b191681556040516001600160401b038316815260008051602061312b833981519152906020015b60405180910390a15050505050565b610f5a6121c3565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b60008060008051602061316b83398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015611020573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110449190612e1f565b1192915050565b6000805160206130eb833981519152546001600160a01b031690565b60006110723361066f565b61107d8260d3612204565b61108561104b565b6001600160a01b031663a5df9e4e836040518263ffffffff1660e01b81526004016110b091906127e1565b6020604051808303816000875af11580156110cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f39190612c7d565b92915050565b6111016126c4565b61110a3361066f565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061113d906301da8d1160e61b90600401612bc0565b602060405180830381865afa15801561115a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117e9190612c55565b61119b57604051637a71998760e01b815260040160405180910390fd5b6111a683606e61070f565b90506111b061104b565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016111db91906127e1565b6020604051808303816000875af11580156111fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121e9190612c7d565b6001600160601b0316815292915050565b6112376126c4565b6112403361066f565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906112739063100f51f760e01b90600401612bc0565b602060405180830381865afa158015611290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b49190612c55565b6112d157604051636f61f64160e01b815260040160405180910390fd5b6111a683608c61070f565b336112e5611703565b6001600160a01b0316816001600160a01b0316146113205760405162d1953b60e31b81526001600160a01b0382166004820152602401610af2565b816001600160a01b03163b600003611356576040516361798f2f60e11b81526001600160a01b0383166004820152602401610af2565b61135f8261230b565b5050565b600061136e3361066f565b61107d826050612204565b6000806000805160206130eb83398151915280546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114139190612c55565b15611498578054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561146e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114929190612e43565b91505090565b600101546001600160a01b0316919050565b60008051602061314b8339815191528054600160401b810460ff1615906001600160401b03166000811580156114dd5750825b90506000826001600160401b031660011480156114f95750303b155b905081158015611507575080155b156115255760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561154f57845460ff60401b1916600160401b1785555b6115588661236c565b611560610f52565b61157063a444b9bb60e01b610d41565b83156115a457845460ff60401b191685556040516001815260008051602061312b8339815191529060200160405180910390a15b505050505050565b60008051602061310b833981519152805460009190600160a01b900460ff166115d6576000611492565b638fb3603760e01b91505090565b6115ec6126c4565b6115f53361066f565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611628906302ba8bb360e21b90600401612bc0565b602060405180830381865afa158015611645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116699190612c55565b611686576040516308707e3160e41b815260040160405180910390fd5b6111a683607861070f565b600061087b60008051602061314b833981519152546001600160401b031690565b600060008051602061316b83398151915260010182815481106116d7576116d7612e60565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008051602061310b833981519152546001600160a01b031690565b60408051600680825260e08201909252606091816020015b604080518082019091526000808252602082015281526020019060019003908161173757905050905061176860d390565b8160008151811061177b5761177b612e60565b602090810291909101015160ff90911690528051635c992fed60e01b9082906000906117a9576117a9612e60565b6020908102919091018101516001600160e01b03199092169101526117cc60dc90565b816001815181106117df576117df612e60565b602090810291909101015160ff90911690528051631857e11960e31b908290600190811061180f5761180f612e60565b6020908102919091018101516001600160e01b0319909216910152611832606e90565b8160028151811061184557611845612e60565b602090810291909101015160ff90911690528051635d96628960e01b908290600290811061187557611875612e60565b6020908102919091018101516001600160e01b0319909216910152611898608c90565b816003815181106118ab576118ab612e60565b602090810291909101015160ff90911690528051637286e5e560e01b90829060039081106118db576118db612e60565b6020908102919091018101516001600160e01b03199092169101526118fe607890565b8160048151811061191157611911612e60565b602090810291909101015160ff90911690528051638fbc2d8160e01b908290600490811061194157611941612e60565b6020908102919091018101516001600160e01b0319909216910152611964604690565b8160058151811061197757611977612e60565b602090810291909101015160ff9091169052805163026bc43b60e01b90829060059081106119a7576119a7612e60565b6020908102919091018101516001600160e01b031990921691015290565b60006119d03361066f565b61107d8260dc612204565b60006119e56107f6565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611a3a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087b9190612e81565b611a666121c3565b60006028611a726119db565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000611aa7846123dc565b90506000611aba8583603c848888610d6e565b611aca637b6a51fd60e01b610d41565b5050505050565b611ad96121c3565b611ae28261236c565b611aeb81612423565b611af3610f52565b61135f63a444b9bb60e01b610d41565b60006000805160206130eb833981519152611498565b60008051602061310b833981519152600080611b54611b36611703565b8730611b46600460008a8c612e9e565b611b4f91612ec8565b612593565b91509150816115a45763ffffffff811615611bf457825460ff60a01b1916600160a01b178355611b82611703565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611bb193929190612ef8565b600060405180830381600087803b158015611bcb57600080fd5b505af1158015611bdf573d6000803e3d6000fd5b5050845460ff60a01b19168555506115a49050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610af2565b611c1f6126c4565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611c5d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c859190810190612f7d565b6001600160a01b0385166080820152604081015190915060ff848116911614611cd4576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610af2565b60a08101516001600160a01b0380821690841614611d105760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610af2565b846001600160a01b0316816001600160a01b031603611d42576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611d6957604051630fd187d360e01b815260040160405180910390fd5b611d7161104b565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ddd9190612c55565b15611dfb57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b611e0b6121c3565b60008051602061316b8339815191526000611e3b60008051602061314b833981519152546001600160401b031690565b90506000611e476107f6565b9050816001600160401b0316600103611e745760028301805462ffffff191662ffffff8316179055611ec2565b600283015462ffffff90811690821611611ec25760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610af2565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9a9190613040565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610f439083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60008051602061314b8339815191528054600160401b810460ff1615906001600160401b03166000811580156120d55750825b90506000826001600160401b031660011480156120f15750303b155b9050811580156120ff575080155b1561211d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561214757845460ff60401b1916600160401b1785555b6000808780602001905181019061215e9190613067565b9150915061216b8261269f565b612175818a611a5e565b612185633f77281960e21b610d41565b50508315610e0157845460ff60401b191685556040516001815260008051602061312b8339815191529060200160405180910390a150505050505050565b60008051602061314b83398151915254600160401b900460ff166121fa57604051631afcd79f60e31b815260040160405180910390fd5b565b6102276121c3565b60006080830152604082015160ff828116911614612248576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610af2565b60a08201516001600160a01b03811661227457604051630fd187d360e01b815260040160405180910390fd5b61227c61104b565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156122c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e89190612c55565b1561230657604051637142ceb360e11b815260040160405180910390fd5b505050565b60008051602061310b83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6123746121c3565b6001600160a01b03811661239b576040516352e2d0c160e01b815260040160405180910390fd5b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0180546001600160a01b0319166001600160a01b0392909216919091179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa1580156110cf573d6000803e3d6000fd5b6000805160206130eb83398151915280546001600160a01b03161561246957805460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610af2565b6001600160a01b0382166124905760405163f5c4d07d60e01b815260040160405180910390fd5b816001600160a01b03163b6000036124c65760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610af2565b80546001600160a01b0319166001600160a01b03831690811782556040516301ffc9a760e01b81526301ffc9a7906125099063230c0c8160e11b90600401612bc0565b602060405180830381865afa925050508015612542575060408051601f3d908101601f1916820190925261253f91810190612c55565b60015b61256a5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610af2565b806123065760405163fdeac91f60e01b81526001600160a01b0384166004820152602401610af2565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516126029190613096565b600060405180830381855afa9150503d806000811461263d576040519150601f19603f3d011682016040523d82523d6000602084013e612642565b606091505b50915091508115612694576040815110612674578080602001905181019061266a91906130b2565b9094509250612694565b602081511061269457808060200190518101906126919190612c55565b93505b505094509492505050565b6126a76121c3565b6126b0816126b3565b50565b6126bb6121c3565b6126b08161230b565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561271457600080fd5b81356001600160e01b03198116811461272c57600080fd5b9392505050565b6001600160a01b03811681146126b057600080fd5b803561275381612733565b919050565b6000806040838503121561276b57600080fd5b823561277681612733565b9150602083013561278681612733565b809150509250929050565b60005b838110156127ac578181015183820152602001612794565b50506000910152565b600081518084526127cd816020860160208601612791565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161284a60c08401826001600160a01b03169052565b5060c083015160e0808401526128646101008401826127b5565b949350505050565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156128a4576128a461286c565b60405290565b604051601f8201601f191681016001600160401b03811182821017156128d2576128d261286c565b604052919050565b60006001600160401b038211156128f3576128f361286c565b50601f01601f191660200190565b600082601f83011261291257600080fd5b8135612925612920826128da565b6128aa565b81815284602083860101111561293a57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561296c57600080fd5b833561297781612733565b9250602084013561298781612733565b915060408401356001600160401b038111156129a257600080fd5b6129ae86828701612901565b9150509250925092565b6001600160601b03811681146126b057600080fd5b8035612753816129b8565b60ff811681146126b057600080fd5b8035612753816129d8565b80151581146126b057600080fd5b8035612753816129f2565b60008060008060008060c08789031215612a2457600080fd5b8635612a2f81612733565b95506020870135612a3f816129b8565b94506040870135612a4f816129d8565b93506060870135612a5f816129f2565b92506080870135612a6f81612733565b915060a08701356001600160401b03811115612a8a57600080fd5b612a9689828a01612901565b9150509295509295509295565b62ffffff811681146126b057600080fd5b600060208284031215612ac657600080fd5b813561272c81612aa3565b600060208284031215612ae357600080fd5b81356001600160401b0380821115612afa57600080fd5b9083019060e08286031215612b0e57600080fd5b612b16612882565b612b1f836129cd565b8152612b2d602084016129cd565b6020820152612b3e604084016129e7565b6040820152612b4f60608401612a00565b6060820152612b6060808401612748565b6080820152612b7160a08401612748565b60a082015260c083013582811115612b8857600080fd5b612b9487828601612901565b60c08301525095945050505050565b600060208284031215612bb557600080fd5b813561272c81612733565b6001600160e01b031991909116815260200190565b600060208284031215612be757600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b82811015612c3d578151805160ff1685528601516001600160e01b031916868501529284019290850190600101612c0b565b5091979650505050505050565b8051612753816129f2565b600060208284031215612c6757600080fd5b815161272c816129f2565b8051612753816129b8565b600060208284031215612c8f57600080fd5b815161272c816129b8565b600060208284031215612cac57600080fd5b815161272c81612aa3565b600181811c90821680612ccb57607f821691505b602082108103612ceb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561230657600081815260208120601f850160051c81016020861015612d185750805b601f850160051c820191505b818110156115a457828155600101612d24565b81516001600160401b03811115612d5057612d5061286c565b612d6481612d5e8454612cb7565b84612cf1565b602080601f831160018114612d995760008415612d815750858301515b600019600386901b1c1916600185901b1785556115a4565b600085815260208120601f198616915b82811015612dc857888601518255948401946001909101908401612da9565b5085821015612de65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612e0857600080fd5b81516001600160401b038116811461272c57600080fd5b600060208284031215612e3157600080fd5b5051919050565b805161275381612733565b600060208284031215612e5557600080fd5b815161272c81612733565b634e487b7160e01b600052603260045260246000fd5b8051612753816129d8565b600060208284031215612e9357600080fd5b815161272c816129d8565b60008085851115612eae57600080fd5b83861115612ebb57600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612ef05780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612f4957600080fd5b8151612f57612920826128da565b818152846020838601011115612f6c57600080fd5b612864826020830160208701612791565b600060208284031215612f8f57600080fd5b81516001600160401b0380821115612fa657600080fd5b9083019060e08286031215612fba57600080fd5b612fc2612882565b612fcb83612c72565b8152612fd960208401612c72565b6020820152612fea60408401612e76565b6040820152612ffb60608401612c4a565b606082015261300c60808401612e38565b608082015261301d60a08401612e38565b60a082015260c08301518281111561303457600080fd5b612b9487828601612f38565b60006020828403121561305257600080fd5b815164ffffffffff8116811461272c57600080fd5b6000806040838503121561307a57600080fd5b825161308581612733565b602084015190925061278681612733565b600082516130a8818460208701612791565b9190910192915050565b600080604083850312156130c557600080fd5b82516130d0816129f2565b602084015190925063ffffffff8116811461278657600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122016e71bdb9e7473fe1b39b531bc37bd3bcfa38c7606773a2acf71f5c7f15eb2ea64736f6c63430008140033",
|
1233
|
+
"linkReferences": {
|
1234
|
+
"contracts/types/Blocknumber.sol": {
|
1235
|
+
"BlocknumberLib": [
|
1236
|
+
{
|
1237
|
+
"length": 20,
|
1238
|
+
"start": 4300
|
1239
|
+
}
|
1240
|
+
]
|
1241
|
+
},
|
1242
|
+
"contracts/types/NftId.sol": {
|
1243
|
+
"NftIdLib": [
|
1244
|
+
{
|
1245
|
+
"length": 20,
|
1246
|
+
"start": 2877
|
1247
|
+
},
|
1248
|
+
{
|
1249
|
+
"length": 20,
|
1250
|
+
"start": 5275
|
1251
|
+
}
|
1252
|
+
]
|
1253
|
+
},
|
1254
|
+
"contracts/types/Timestamp.sol": {
|
1255
|
+
"TimestampLib": [
|
1256
|
+
{
|
1257
|
+
"length": 20,
|
1258
|
+
"start": 8226
|
1259
|
+
}
|
1260
|
+
]
|
1261
|
+
},
|
1262
|
+
"contracts/types/Version.sol": {
|
1263
|
+
"VersionLib": [
|
1264
|
+
{
|
1265
|
+
"length": 20,
|
1266
|
+
"start": 2307
|
1267
|
+
},
|
1268
|
+
{
|
1269
|
+
"length": 20,
|
1270
|
+
"start": 3826
|
1271
|
+
},
|
1272
|
+
{
|
1273
|
+
"length": 20,
|
1274
|
+
"start": 6886
|
1275
|
+
}
|
1276
|
+
]
|
1277
|
+
}
|
1278
|
+
},
|
1279
|
+
"deployedLinkReferences": {
|
1280
|
+
"contracts/types/Blocknumber.sol": {
|
1281
|
+
"BlocknumberLib": [
|
1282
|
+
{
|
1283
|
+
"length": 20,
|
1284
|
+
"start": 4070
|
1285
|
+
}
|
1286
|
+
]
|
1287
|
+
},
|
1288
|
+
"contracts/types/NftId.sol": {
|
1289
|
+
"NftIdLib": [
|
1290
|
+
{
|
1291
|
+
"length": 20,
|
1292
|
+
"start": 2647
|
1293
|
+
},
|
1294
|
+
{
|
1295
|
+
"length": 20,
|
1296
|
+
"start": 5045
|
1297
|
+
}
|
1298
|
+
]
|
1299
|
+
},
|
1300
|
+
"contracts/types/Timestamp.sol": {
|
1301
|
+
"TimestampLib": [
|
1302
|
+
{
|
1303
|
+
"length": 20,
|
1304
|
+
"start": 7996
|
1305
|
+
}
|
1306
|
+
]
|
1307
|
+
},
|
1308
|
+
"contracts/types/Version.sol": {
|
1309
|
+
"VersionLib": [
|
1310
|
+
{
|
1311
|
+
"length": 20,
|
1312
|
+
"start": 2077
|
1313
|
+
},
|
1314
|
+
{
|
1315
|
+
"length": 20,
|
1316
|
+
"start": 3596
|
1317
|
+
},
|
1318
|
+
{
|
1319
|
+
"length": 20,
|
1320
|
+
"start": 6656
|
1321
|
+
}
|
1322
|
+
]
|
1323
|
+
}
|
1324
|
+
}
|
1325
|
+
}
|