@etherisc/gif-next 0.0.2-e6a90b9 → 0.0.2-e818783-565
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +359 -8
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.json +698 -35
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +1345 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +969 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1064 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +830 -0
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +1246 -65
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +1014 -60
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2218 -499
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +633 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2749 -482
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1403 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1140 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +741 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +607 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
 - package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IComponents.sol/IComponents.json} +2 -2
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1060 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +681 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1266 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +725 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1040 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +685 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1774 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +793 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +627 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +686 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +602 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1090 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +937 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +844 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +450 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1511 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +741 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1237 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +840 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +548 -71
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +866 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +631 -78
 - 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 +1158 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +138 -0
 - 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 +4 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/shared/IService.sol/IService.json +335 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +261 -217
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.json +596 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +185 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +288 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +161 -5
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +280 -0
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
 - package/contracts/components/Component.sol +231 -40
 - package/contracts/components/Distribution.sol +284 -0
 - package/contracts/components/IComponent.sol +76 -0
 - package/contracts/components/IDistributionComponent.sol +71 -0
 - package/contracts/components/IPoolComponent.sol +113 -0
 - package/contracts/components/IProductComponent.sol +40 -0
 - package/contracts/components/Pool.sol +291 -18
 - package/contracts/components/Product.sol +338 -32
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +126 -0
 - package/contracts/instance/Cloneable.sol +51 -0
 - package/contracts/instance/IInstance.sol +97 -15
 - package/contracts/instance/IInstanceService.sol +68 -0
 - package/contracts/instance/Instance.sol +289 -42
 - package/contracts/instance/InstanceAccessManager.sol +527 -0
 - package/contracts/instance/InstanceReader.sol +317 -0
 - package/contracts/instance/InstanceService.sol +478 -0
 - package/contracts/instance/InstanceServiceManager.sol +54 -0
 - package/contracts/instance/ObjectManager.sol +82 -0
 - package/contracts/instance/base/ComponentService.sol +121 -0
 - package/contracts/instance/base/IKeyValueStore.sol +49 -0
 - package/contracts/instance/base/ILifecycle.sol +30 -0
 - package/contracts/instance/base/KeyValueStore.sol +180 -0
 - package/contracts/instance/base/Lifecycle.sol +117 -0
 - package/contracts/instance/module/IAccess.sol +54 -0
 - package/contracts/instance/module/IBundle.sol +23 -0
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +41 -0
 - package/contracts/instance/module/IPolicy.sol +77 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +33 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ApplicationService.sol +355 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +436 -0
 - package/contracts/instance/service/BundleServiceManager.sol +51 -0
 - package/contracts/instance/service/ClaimService.sol +239 -0
 - package/contracts/instance/service/ClaimServiceManager.sol +35 -0
 - package/contracts/instance/service/DistributionService.sol +431 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +51 -0
 - package/contracts/instance/service/IApplicationService.sol +78 -0
 - package/contracts/instance/service/IBundleService.sol +96 -0
 - package/contracts/instance/service/IClaimService.sol +92 -0
 - package/contracts/instance/service/IDistributionService.sol +99 -0
 - package/contracts/instance/service/IPolicyService.sol +137 -0
 - package/contracts/instance/service/IPoolService.sol +99 -0
 - package/contracts/instance/service/IProductService.sol +40 -0
 - package/contracts/instance/service/PolicyService.sol +541 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +303 -0
 - package/contracts/instance/service/PoolServiceManager.sol +51 -0
 - package/contracts/instance/service/ProductService.sol +210 -0
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +145 -108
 - package/contracts/registry/IRegistry.sol +82 -49
 - package/contracts/registry/IRegistryService.sol +68 -0
 - package/contracts/registry/ITransferInterceptor.sol +7 -0
 - package/contracts/registry/Registry.sol +403 -112
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +282 -0
 - package/contracts/registry/RegistryServiceManager.sol +62 -0
 - package/contracts/registry/ReleaseManager.sol +324 -0
 - package/contracts/registry/TokenRegistry.sol +116 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +27 -0
 - package/contracts/shared/INftOwnable.sol +23 -0
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +15 -0
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +16 -0
 - package/contracts/shared/IVersionable.sol +53 -0
 - package/contracts/shared/NftOwnable.sol +120 -0
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +169 -0
 - package/contracts/shared/Registerable.sol +74 -0
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +72 -0
 - package/contracts/shared/TokenHandler.sol +33 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +59 -0
 - package/contracts/test/TestFee.sol +25 -0
 - package/contracts/test/TestRegisterable.sol +18 -0
 - package/contracts/test/TestRoleId.sol +14 -0
 - package/contracts/test/TestService.sol +25 -0
 - package/contracts/test/TestToken.sol +26 -0
 - package/contracts/test/TestVersion.sol +44 -0
 - package/contracts/test/TestVersionable.sol +17 -0
 - package/contracts/test/Usdc.sol +26 -0
 - package/contracts/types/AddressSet.sol +58 -0
 - package/contracts/types/Amount.sol +65 -0
 - package/contracts/types/Blocknumber.sol +119 -0
 - package/contracts/types/ChainId.sol +24 -10
 - package/contracts/types/ClaimId.sol +75 -0
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +64 -0
 - package/contracts/types/Key32.sol +50 -0
 - package/contracts/types/NftId.sol +63 -8
 - package/contracts/types/NftIdSet.sol +62 -0
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +157 -0
 - package/contracts/types/PayoutId.sol +82 -0
 - package/contracts/types/Referral.sol +89 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +97 -0
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/StateId.sol +110 -0
 - package/contracts/types/Timestamp.sol +132 -0
 - package/contracts/types/UFixed.sol +326 -0
 - package/contracts/types/Version.sol +108 -0
 - package/package.json +21 -6
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
 - package/contracts/components/IPool.sol +0 -9
 - package/contracts/components/IProduct.sol +0 -11
 - package/contracts/experiment/errors/Require.sol +0 -33
 - package/contracts/experiment/errors/Revert.sol +0 -39
 - package/contracts/experiment/inheritance/A.sol +0 -56
 - package/contracts/experiment/inheritance/B.sol +0 -23
 - package/contracts/experiment/inheritance/C.sol +0 -28
 - package/contracts/experiment/inheritance/IA.sol +0 -18
 - package/contracts/experiment/inheritance/IB.sol +0 -9
 - package/contracts/experiment/inheritance/IC.sol +0 -11
 - package/contracts/experiment/types/TypeA.sol +0 -42
 - package/contracts/experiment/types/TypeB.sol +0 -24
 - package/contracts/instance/access/Access.sol +0 -218
 - package/contracts/instance/access/IAccess.sol +0 -83
 - package/contracts/instance/component/ComponentModule.sol +0 -246
 - package/contracts/instance/component/IComponent.sol +0 -94
 - package/contracts/instance/policy/IPolicy.sol +0 -66
 - package/contracts/instance/policy/PolicyModule.sol +0 -106
 - package/contracts/instance/pool/IPoolModule.sol +0 -40
 - package/contracts/instance/pool/PoolModule.sol +0 -83
 - package/contracts/instance/product/IProductService.sol +0 -45
 - package/contracts/instance/product/ProductService.sol +0 -105
 - package/contracts/registry/IChainNft.sol +0 -18
 
| 
         @@ -5,85 +5,216 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
       6 
6 
     | 
    
         
             
                {
         
     | 
| 
       7 
7 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       8 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 8 
     | 
    
         
            +
                  "name": "CallerNotRegistryService",
         
     | 
| 
      
 9 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 10 
     | 
    
         
            +
                },
         
     | 
| 
      
 11 
     | 
    
         
            +
                {
         
     | 
| 
      
 12 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 13 
     | 
    
         
            +
                  "name": "CallerNotReleaseManager",
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 15 
     | 
    
         
            +
                },
         
     | 
| 
      
 16 
     | 
    
         
            +
                {
         
     | 
| 
      
 17 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 18 
     | 
    
         
            +
                    {
         
     | 
| 
      
 19 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "name": "objectAddress",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 22 
     | 
    
         
            +
                    }
         
     | 
| 
      
 23 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 24 
     | 
    
         
            +
                  "name": "ContractAlreadyRegistered",
         
     | 
| 
      
 25 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 26 
     | 
    
         
            +
                },
         
     | 
| 
      
 27 
     | 
    
         
            +
                {
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 29 
     | 
    
         
            +
                  "name": "CoreTypeRegistration",
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 31 
     | 
    
         
            +
                },
         
     | 
| 
      
 32 
     | 
    
         
            +
                {
         
     | 
| 
      
 33 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 34 
     | 
    
         
            +
                    {
         
     | 
| 
      
 35 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 38 
     | 
    
         
            +
                    },
         
     | 
| 
      
 39 
     | 
    
         
            +
                    {
         
     | 
| 
      
 40 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 41 
     | 
    
         
            +
                      "name": "parentType",
         
     | 
| 
      
 42 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 43 
     | 
    
         
            +
                    }
         
     | 
| 
      
 44 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "name": "InvalidTypesCombination",
         
     | 
| 
      
 46 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 47 
     | 
    
         
            +
                },
         
     | 
| 
      
 48 
     | 
    
         
            +
                {
         
     | 
| 
      
 49 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 50 
     | 
    
         
            +
                    {
         
     | 
| 
      
 51 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "name": "service",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 54 
     | 
    
         
            +
                    }
         
     | 
| 
      
 55 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "name": "ServiceAlreadyRegistered",
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 58 
     | 
    
         
            +
                },
         
     | 
| 
      
 59 
     | 
    
         
            +
                {
         
     | 
| 
      
 60 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 61 
     | 
    
         
            +
                  "name": "ServiceRegistration",
         
     | 
| 
      
 62 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 63 
     | 
    
         
            +
                },
         
     | 
| 
      
 64 
     | 
    
         
            +
                {
         
     | 
| 
      
 65 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "name": "ZeroParentAddress",
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 68 
     | 
    
         
            +
                },
         
     | 
| 
      
 69 
     | 
    
         
            +
                {
         
     | 
| 
      
 70 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 71 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 72 
     | 
    
         
            +
                    {
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 76 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 77 
     | 
    
         
            +
                    },
         
     | 
| 
      
 78 
     | 
    
         
            +
                    {
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "name": "parentNftId",
         
     | 
| 
      
 82 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 83 
     | 
    
         
            +
                    },
         
     | 
| 
      
 84 
     | 
    
         
            +
                    {
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 87 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 88 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 89 
     | 
    
         
            +
                    },
         
     | 
| 
      
 90 
     | 
    
         
            +
                    {
         
     | 
| 
      
 91 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 92 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 93 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 94 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 95 
     | 
    
         
            +
                    },
         
     | 
| 
      
 96 
     | 
    
         
            +
                    {
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 98 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 99 
     | 
    
         
            +
                      "name": "objectAddress",
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 101 
     | 
    
         
            +
                    },
         
     | 
| 
      
 102 
     | 
    
         
            +
                    {
         
     | 
| 
      
 103 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 104 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 105 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 107 
     | 
    
         
            +
                    }
         
     | 
| 
      
 108 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 109 
     | 
    
         
            +
                  "name": "LogRegistration",
         
     | 
| 
      
 110 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 111 
     | 
    
         
            +
                },
         
     | 
| 
      
 112 
     | 
    
         
            +
                {
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 114 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 115 
     | 
    
         
            +
                    {
         
     | 
| 
      
 116 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 117 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "name": "majorVersion",
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 120 
     | 
    
         
            +
                    },
         
     | 
| 
      
 121 
     | 
    
         
            +
                    {
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 124 
     | 
    
         
            +
                      "name": "domain",
         
     | 
| 
      
 125 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 126 
     | 
    
         
            +
                    }
         
     | 
| 
      
 127 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 128 
     | 
    
         
            +
                  "name": "LogServiceRegistration",
         
     | 
| 
      
 129 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 130 
     | 
    
         
            +
                },
         
     | 
| 
      
 131 
     | 
    
         
            +
                {
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 133 
     | 
    
         
            +
                  "name": "getChainNftAddress",
         
     | 
| 
       9 
134 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       10 
135 
     | 
    
         
             
                    {
         
     | 
| 
       11 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 136 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
       12 
137 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       13 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 138 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       14 
139 
     | 
    
         
             
                    }
         
     | 
| 
       15 
140 
     | 
    
         
             
                  ],
         
     | 
| 
       16 
     | 
    
         
            -
                  "stateMutability": " 
     | 
| 
      
 141 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       17 
142 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       18 
143 
     | 
    
         
             
                },
         
     | 
| 
       19 
144 
     | 
    
         
             
                {
         
     | 
| 
       20 
145 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       21 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 146 
     | 
    
         
            +
                  "name": "getInitialVersion",
         
     | 
| 
       22 
147 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       23 
148 
     | 
    
         
             
                    {
         
     | 
| 
       24 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 149 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
       25 
150 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       26 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 151 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       27 
152 
     | 
    
         
             
                    }
         
     | 
| 
       28 
153 
     | 
    
         
             
                  ],
         
     | 
| 
       29 
     | 
    
         
            -
                  "stateMutability": " 
     | 
| 
      
 154 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       30 
155 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       31 
156 
     | 
    
         
             
                },
         
     | 
| 
       32 
157 
     | 
    
         
             
                {
         
     | 
| 
       33 
158 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       34 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 159 
     | 
    
         
            +
                  "name": "getLatestVersion",
         
     | 
| 
       35 
160 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       36 
161 
     | 
    
         
             
                    {
         
     | 
| 
       37 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 162 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
       38 
163 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       39 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 164 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       40 
165 
     | 
    
         
             
                    }
         
     | 
| 
       41 
166 
     | 
    
         
             
                  ],
         
     | 
| 
       42 
     | 
    
         
            -
                  "stateMutability": " 
     | 
| 
      
 167 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       43 
168 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       44 
169 
     | 
    
         
             
                },
         
     | 
| 
       45 
170 
     | 
    
         
             
                {
         
     | 
| 
       46 
171 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       47 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 172 
     | 
    
         
            +
                  "name": "getNextVersion",
         
     | 
| 
       48 
173 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       49 
174 
     | 
    
         
             
                    {
         
     | 
| 
       50 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 175 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
       51 
176 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       52 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 177 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       53 
178 
     | 
    
         
             
                    }
         
     | 
| 
       54 
179 
     | 
    
         
             
                  ],
         
     | 
| 
       55 
     | 
    
         
            -
                  "stateMutability": " 
     | 
| 
      
 180 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       56 
181 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       57 
182 
     | 
    
         
             
                },
         
     | 
| 
       58 
183 
     | 
    
         
             
                {
         
     | 
| 
       59 
184 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       60 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 185 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
       61 
186 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       62 
187 
     | 
    
         
             
                    {
         
     | 
| 
       63 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       64 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       65 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 188 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 189 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 190 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       66 
191 
     | 
    
         
             
                    }
         
     | 
| 
       67 
192 
     | 
    
         
             
                  ],
         
     | 
| 
       68 
     | 
    
         
            -
                  "stateMutability": " 
     | 
| 
      
 193 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       69 
194 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       70 
195 
     | 
    
         
             
                },
         
     | 
| 
       71 
196 
     | 
    
         
             
                {
         
     | 
| 
       72 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       73 
     | 
    
         
            -
             
     | 
| 
      
 197 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 198 
     | 
    
         
            +
                    {
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 200 
     | 
    
         
            +
                      "name": "objectAddress",
         
     | 
| 
      
 201 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 202 
     | 
    
         
            +
                    }
         
     | 
| 
      
 203 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 204 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
       74 
205 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       75 
206 
     | 
    
         
             
                    {
         
     | 
| 
       76 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       77 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       78 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 207 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 208 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 209 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       79 
210 
     | 
    
         
             
                    }
         
     | 
| 
       80 
211 
     | 
    
         
             
                  ],
         
     | 
| 
       81 
     | 
    
         
            -
                  "stateMutability": " 
     | 
| 
      
 212 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       82 
213 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       83 
214 
     | 
    
         
             
                },
         
     | 
| 
       84 
215 
     | 
    
         
             
                {
         
     | 
| 
       85 
216 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       86 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 217 
     | 
    
         
            +
                  "name": "getObjectCount",
         
     | 
| 
       87 
218 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       88 
219 
     | 
    
         
             
                    {
         
     | 
| 
       89 
220 
     | 
    
         
             
                      "internalType": "uint256",
         
     | 
| 
         @@ -91,35 +222,96 @@ 
     | 
|
| 
       91 
222 
     | 
    
         
             
                      "type": "uint256"
         
     | 
| 
       92 
223 
     | 
    
         
             
                    }
         
     | 
| 
       93 
224 
     | 
    
         
             
                  ],
         
     | 
| 
       94 
     | 
    
         
            -
                  "stateMutability": " 
     | 
| 
      
 225 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       95 
226 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       96 
227 
     | 
    
         
             
                },
         
     | 
| 
       97 
228 
     | 
    
         
             
                {
         
     | 
| 
       98 
229 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       99 
230 
     | 
    
         
             
                    {
         
     | 
| 
       100 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 231 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 232 
     | 
    
         
            +
                      "name": "object",
         
     | 
| 
      
 233 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 234 
     | 
    
         
            +
                    }
         
     | 
| 
      
 235 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 236 
     | 
    
         
            +
                  "name": "getObjectInfo",
         
     | 
| 
      
 237 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 238 
     | 
    
         
            +
                    {
         
     | 
| 
      
 239 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 240 
     | 
    
         
            +
                        {
         
     | 
| 
      
 241 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 242 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 243 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 244 
     | 
    
         
            +
                        },
         
     | 
| 
      
 245 
     | 
    
         
            +
                        {
         
     | 
| 
      
 246 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 247 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 248 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 249 
     | 
    
         
            +
                        },
         
     | 
| 
      
 250 
     | 
    
         
            +
                        {
         
     | 
| 
      
 251 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 252 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 253 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 254 
     | 
    
         
            +
                        },
         
     | 
| 
      
 255 
     | 
    
         
            +
                        {
         
     | 
| 
      
 256 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 257 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 258 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 259 
     | 
    
         
            +
                        },
         
     | 
| 
      
 260 
     | 
    
         
            +
                        {
         
     | 
| 
      
 261 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 262 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 263 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 264 
     | 
    
         
            +
                        },
         
     | 
| 
      
 265 
     | 
    
         
            +
                        {
         
     | 
| 
      
 266 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 267 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 268 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 269 
     | 
    
         
            +
                        },
         
     | 
| 
      
 270 
     | 
    
         
            +
                        {
         
     | 
| 
      
 271 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 272 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 273 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 274 
     | 
    
         
            +
                        }
         
     | 
| 
      
 275 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 276 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 277 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 278 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 279 
     | 
    
         
            +
                    }
         
     | 
| 
      
 280 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 281 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 282 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 283 
     | 
    
         
            +
                },
         
     | 
| 
      
 284 
     | 
    
         
            +
                {
         
     | 
| 
      
 285 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 286 
     | 
    
         
            +
                    {
         
     | 
| 
      
 287 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
       101 
288 
     | 
    
         
             
                      "name": "nftId",
         
     | 
| 
       102 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 289 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       103 
290 
     | 
    
         
             
                    }
         
     | 
| 
       104 
291 
     | 
    
         
             
                  ],
         
     | 
| 
       105 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 292 
     | 
    
         
            +
                  "name": "getObjectInfo",
         
     | 
| 
       106 
293 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       107 
294 
     | 
    
         
             
                    {
         
     | 
| 
       108 
295 
     | 
    
         
             
                      "components": [
         
     | 
| 
       109 
296 
     | 
    
         
             
                        {
         
     | 
| 
       110 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
      
 297 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
       111 
298 
     | 
    
         
             
                          "name": "nftId",
         
     | 
| 
       112 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 299 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
       113 
300 
     | 
    
         
             
                        },
         
     | 
| 
       114 
301 
     | 
    
         
             
                        {
         
     | 
| 
       115 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
      
 302 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
       116 
303 
     | 
    
         
             
                          "name": "parentNftId",
         
     | 
| 
       117 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 304 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
       118 
305 
     | 
    
         
             
                        },
         
     | 
| 
       119 
306 
     | 
    
         
             
                        {
         
     | 
| 
       120 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
      
 307 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
       121 
308 
     | 
    
         
             
                          "name": "objectType",
         
     | 
| 
       122 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 309 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 310 
     | 
    
         
            +
                        },
         
     | 
| 
      
 311 
     | 
    
         
            +
                        {
         
     | 
| 
      
 312 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 313 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 314 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
       123 
315 
     | 
    
         
             
                        },
         
     | 
| 
       124 
316 
     | 
    
         
             
                        {
         
     | 
| 
       125 
317 
     | 
    
         
             
                          "internalType": "address",
         
     | 
| 
         @@ -130,9 +322,14 @@ 
     | 
|
| 
       130 
322 
     | 
    
         
             
                          "internalType": "address",
         
     | 
| 
       131 
323 
     | 
    
         
             
                          "name": "initialOwner",
         
     | 
| 
       132 
324 
     | 
    
         
             
                          "type": "address"
         
     | 
| 
      
 325 
     | 
    
         
            +
                        },
         
     | 
| 
      
 326 
     | 
    
         
            +
                        {
         
     | 
| 
      
 327 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 328 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 329 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
       133 
330 
     | 
    
         
             
                        }
         
     | 
| 
       134 
331 
     | 
    
         
             
                      ],
         
     | 
| 
       135 
     | 
    
         
            -
                      "internalType": "struct IRegistry. 
     | 
| 
      
 332 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
       136 
333 
     | 
    
         
             
                      "name": "info",
         
     | 
| 
       137 
334 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       138 
335 
     | 
    
         
             
                    }
         
     | 
| 
         @@ -142,11 +339,11 @@ 
     | 
|
| 
       142 
339 
     | 
    
         
             
                },
         
     | 
| 
       143 
340 
     | 
    
         
             
                {
         
     | 
| 
       144 
341 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       145 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 342 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
       146 
343 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       147 
344 
     | 
    
         
             
                    {
         
     | 
| 
       148 
345 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       149 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 346 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       150 
347 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       151 
348 
     | 
    
         
             
                    }
         
     | 
| 
       152 
349 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -155,31 +352,86 @@ 
     | 
|
| 
       155 
352 
     | 
    
         
             
                },
         
     | 
| 
       156 
353 
     | 
    
         
             
                {
         
     | 
| 
       157 
354 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 355 
     | 
    
         
            +
                    {
         
     | 
| 
      
 356 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 357 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 358 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 359 
     | 
    
         
            +
                    }
         
     | 
| 
      
 360 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 361 
     | 
    
         
            +
                  "name": "getReleaseInfo",
         
     | 
| 
      
 362 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 363 
     | 
    
         
            +
                    {
         
     | 
| 
      
 364 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 365 
     | 
    
         
            +
                        {
         
     | 
| 
      
 366 
     | 
    
         
            +
                          "internalType": "ObjectType[]",
         
     | 
| 
      
 367 
     | 
    
         
            +
                          "name": "domains",
         
     | 
| 
      
 368 
     | 
    
         
            +
                          "type": "uint8[]"
         
     | 
| 
      
 369 
     | 
    
         
            +
                        },
         
     | 
| 
      
 370 
     | 
    
         
            +
                        {
         
     | 
| 
      
 371 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 372 
     | 
    
         
            +
                          "name": "createdAt",
         
     | 
| 
      
 373 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 374 
     | 
    
         
            +
                        }
         
     | 
| 
      
 375 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 376 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ReleaseInfo",
         
     | 
| 
      
 377 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 378 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 379 
     | 
    
         
            +
                    }
         
     | 
| 
      
 380 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 381 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 382 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 383 
     | 
    
         
            +
                },
         
     | 
| 
      
 384 
     | 
    
         
            +
                {
         
     | 
| 
      
 385 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 386 
     | 
    
         
            +
                  "name": "getReleaseManagerAddress",
         
     | 
| 
      
 387 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       158 
388 
     | 
    
         
             
                    {
         
     | 
| 
       159 
389 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       160 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 390 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       161 
391 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       162 
392 
     | 
    
         
             
                    }
         
     | 
| 
       163 
393 
     | 
    
         
             
                  ],
         
     | 
| 
       164 
     | 
    
         
            -
                  " 
     | 
| 
      
 394 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 395 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 396 
     | 
    
         
            +
                },
         
     | 
| 
      
 397 
     | 
    
         
            +
                {
         
     | 
| 
      
 398 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 399 
     | 
    
         
            +
                    {
         
     | 
| 
      
 400 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 401 
     | 
    
         
            +
                      "name": "serviceDomain",
         
     | 
| 
      
 402 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 403 
     | 
    
         
            +
                    },
         
     | 
| 
      
 404 
     | 
    
         
            +
                    {
         
     | 
| 
      
 405 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 406 
     | 
    
         
            +
                      "name": "releaseVersion",
         
     | 
| 
      
 407 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 408 
     | 
    
         
            +
                    }
         
     | 
| 
      
 409 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 410 
     | 
    
         
            +
                  "name": "getServiceAddress",
         
     | 
| 
       165 
411 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       166 
412 
     | 
    
         
             
                    {
         
     | 
| 
       167 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       168 
     | 
    
         
            -
                      "name": " 
     | 
| 
       169 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 413 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 414 
     | 
    
         
            +
                      "name": "serviceAddress",
         
     | 
| 
      
 415 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       170 
416 
     | 
    
         
             
                    }
         
     | 
| 
       171 
417 
     | 
    
         
             
                  ],
         
     | 
| 
       172 
418 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       173 
419 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       174 
420 
     | 
    
         
             
                },
         
     | 
| 
       175 
421 
     | 
    
         
             
                {
         
     | 
| 
       176 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       177 
     | 
    
         
            -
             
     | 
| 
      
 422 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 423 
     | 
    
         
            +
                    {
         
     | 
| 
      
 424 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 425 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 426 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 427 
     | 
    
         
            +
                    }
         
     | 
| 
      
 428 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "name": "isRegistered",
         
     | 
| 
       178 
430 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       179 
431 
     | 
    
         
             
                    {
         
     | 
| 
       180 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 432 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
       181 
433 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       182 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 434 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
       183 
435 
     | 
    
         
             
                    }
         
     | 
| 
       184 
436 
     | 
    
         
             
                  ],
         
     | 
| 
       185 
437 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -188,19 +440,38 @@ 
     | 
|
| 
       188 
440 
     | 
    
         
             
                {
         
     | 
| 
       189 
441 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       190 
442 
     | 
    
         
             
                    {
         
     | 
| 
       191 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 443 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
       192 
444 
     | 
    
         
             
                      "name": "nftId",
         
     | 
| 
       193 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 445 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       194 
446 
     | 
    
         
             
                    }
         
     | 
| 
       195 
447 
     | 
    
         
             
                  ],
         
     | 
| 
       196 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 448 
     | 
    
         
            +
                  "name": "isRegistered",
         
     | 
| 
       197 
449 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
      
 450 
     | 
    
         
            +
                    {
         
     | 
| 
      
 451 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 452 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 453 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 454 
     | 
    
         
            +
                    }
         
     | 
| 
      
 455 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 456 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 458 
     | 
    
         
            +
                },
         
     | 
| 
      
 459 
     | 
    
         
            +
                {
         
     | 
| 
      
 460 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       198 
461 
     | 
    
         
             
                    {
         
     | 
| 
       199 
462 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       200 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 463 
     | 
    
         
            +
                      "name": "object",
         
     | 
| 
       201 
464 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       202 
465 
     | 
    
         
             
                    }
         
     | 
| 
       203 
466 
     | 
    
         
             
                  ],
         
     | 
| 
      
 467 
     | 
    
         
            +
                  "name": "isRegisteredComponent",
         
     | 
| 
      
 468 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 469 
     | 
    
         
            +
                    {
         
     | 
| 
      
 470 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 471 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 473 
     | 
    
         
            +
                    }
         
     | 
| 
      
 474 
     | 
    
         
            +
                  ],
         
     | 
| 
       204 
475 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       205 
476 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       206 
477 
     | 
    
         
             
                },
         
     | 
| 
         @@ -208,11 +479,30 @@ 
     | 
|
| 
       208 
479 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       209 
480 
     | 
    
         
             
                    {
         
     | 
| 
       210 
481 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       211 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 482 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
       212 
483 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       213 
484 
     | 
    
         
             
                    }
         
     | 
| 
       214 
485 
     | 
    
         
             
                  ],
         
     | 
| 
       215 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 486 
     | 
    
         
            +
                  "name": "isRegisteredService",
         
     | 
| 
      
 487 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 488 
     | 
    
         
            +
                    {
         
     | 
| 
      
 489 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 490 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 491 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 492 
     | 
    
         
            +
                    }
         
     | 
| 
      
 493 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 494 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 495 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 496 
     | 
    
         
            +
                },
         
     | 
| 
      
 497 
     | 
    
         
            +
                {
         
     | 
| 
      
 498 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 499 
     | 
    
         
            +
                    {
         
     | 
| 
      
 500 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 501 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 503 
     | 
    
         
            +
                    }
         
     | 
| 
      
 504 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 505 
     | 
    
         
            +
                  "name": "isValidRelease",
         
     | 
| 
       216 
506 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       217 
507 
     | 
    
         
             
                    {
         
     | 
| 
       218 
508 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
         @@ -227,16 +517,91 @@ 
     | 
|
| 
       227 
517 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       228 
518 
     | 
    
         
             
                    {
         
     | 
| 
       229 
519 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       230 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 520 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
       231 
521 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       232 
522 
     | 
    
         
             
                    }
         
     | 
| 
       233 
523 
     | 
    
         
             
                  ],
         
     | 
| 
      
 524 
     | 
    
         
            +
                  "name": "ownerOf",
         
     | 
| 
      
 525 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 526 
     | 
    
         
            +
                    {
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 528 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 529 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 530 
     | 
    
         
            +
                    }
         
     | 
| 
      
 531 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 532 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 533 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 534 
     | 
    
         
            +
                },
         
     | 
| 
      
 535 
     | 
    
         
            +
                {
         
     | 
| 
      
 536 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 537 
     | 
    
         
            +
                    {
         
     | 
| 
      
 538 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 539 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 540 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 541 
     | 
    
         
            +
                    }
         
     | 
| 
      
 542 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 543 
     | 
    
         
            +
                  "name": "ownerOf",
         
     | 
| 
      
 544 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 545 
     | 
    
         
            +
                    {
         
     | 
| 
      
 546 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 547 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 548 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 549 
     | 
    
         
            +
                    }
         
     | 
| 
      
 550 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 551 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 552 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 553 
     | 
    
         
            +
                },
         
     | 
| 
      
 554 
     | 
    
         
            +
                {
         
     | 
| 
      
 555 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 556 
     | 
    
         
            +
                    {
         
     | 
| 
      
 557 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 558 
     | 
    
         
            +
                        {
         
     | 
| 
      
 559 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 560 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 561 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 562 
     | 
    
         
            +
                        },
         
     | 
| 
      
 563 
     | 
    
         
            +
                        {
         
     | 
| 
      
 564 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 565 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 566 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 567 
     | 
    
         
            +
                        },
         
     | 
| 
      
 568 
     | 
    
         
            +
                        {
         
     | 
| 
      
 569 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 570 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 571 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 572 
     | 
    
         
            +
                        },
         
     | 
| 
      
 573 
     | 
    
         
            +
                        {
         
     | 
| 
      
 574 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 575 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 576 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 577 
     | 
    
         
            +
                        },
         
     | 
| 
      
 578 
     | 
    
         
            +
                        {
         
     | 
| 
      
 579 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 580 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 581 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 582 
     | 
    
         
            +
                        },
         
     | 
| 
      
 583 
     | 
    
         
            +
                        {
         
     | 
| 
      
 584 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 585 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 586 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 587 
     | 
    
         
            +
                        },
         
     | 
| 
      
 588 
     | 
    
         
            +
                        {
         
     | 
| 
      
 589 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 590 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 591 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 592 
     | 
    
         
            +
                        }
         
     | 
| 
      
 593 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 594 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 595 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 596 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 597 
     | 
    
         
            +
                    }
         
     | 
| 
      
 598 
     | 
    
         
            +
                  ],
         
     | 
| 
       234 
599 
     | 
    
         
             
                  "name": "register",
         
     | 
| 
       235 
600 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       236 
601 
     | 
    
         
             
                    {
         
     | 
| 
       237 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 602 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
       238 
603 
     | 
    
         
             
                      "name": "nftId",
         
     | 
| 
       239 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 604 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       240 
605 
     | 
    
         
             
                    }
         
     | 
| 
       241 
606 
     | 
    
         
             
                  ],
         
     | 
| 
       242 
607 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
         @@ -245,31 +610,143 @@ 
     | 
|
| 
       245 
610 
     | 
    
         
             
                {
         
     | 
| 
       246 
611 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       247 
612 
     | 
    
         
             
                    {
         
     | 
| 
       248 
     | 
    
         
            -
                      " 
     | 
| 
       249 
     | 
    
         
            -
             
     | 
| 
       250 
     | 
    
         
            -
             
     | 
| 
      
 613 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 614 
     | 
    
         
            +
                        {
         
     | 
| 
      
 615 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 616 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 617 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 618 
     | 
    
         
            +
                        },
         
     | 
| 
      
 619 
     | 
    
         
            +
                        {
         
     | 
| 
      
 620 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 621 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 622 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 623 
     | 
    
         
            +
                        },
         
     | 
| 
      
 624 
     | 
    
         
            +
                        {
         
     | 
| 
      
 625 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 626 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 627 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 628 
     | 
    
         
            +
                        },
         
     | 
| 
      
 629 
     | 
    
         
            +
                        {
         
     | 
| 
      
 630 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 631 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 632 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 633 
     | 
    
         
            +
                        },
         
     | 
| 
      
 634 
     | 
    
         
            +
                        {
         
     | 
| 
      
 635 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 636 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 637 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 638 
     | 
    
         
            +
                        },
         
     | 
| 
      
 639 
     | 
    
         
            +
                        {
         
     | 
| 
      
 640 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 641 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 642 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 643 
     | 
    
         
            +
                        },
         
     | 
| 
      
 644 
     | 
    
         
            +
                        {
         
     | 
| 
      
 645 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 646 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 647 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 648 
     | 
    
         
            +
                        }
         
     | 
| 
      
 649 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 650 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 651 
     | 
    
         
            +
                      "name": "serviceInfo",
         
     | 
| 
      
 652 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
       251 
653 
     | 
    
         
             
                    },
         
     | 
| 
       252 
654 
     | 
    
         
             
                    {
         
     | 
| 
       253 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       254 
     | 
    
         
            -
                      "name": " 
     | 
| 
       255 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 655 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 656 
     | 
    
         
            +
                      "name": "serviceVersion",
         
     | 
| 
      
 657 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       256 
658 
     | 
    
         
             
                    },
         
     | 
| 
       257 
659 
     | 
    
         
             
                    {
         
     | 
| 
       258 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       259 
     | 
    
         
            -
                      "name": " 
     | 
| 
       260 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 660 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 661 
     | 
    
         
            +
                      "name": "serviceDomain",
         
     | 
| 
      
 662 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       261 
663 
     | 
    
         
             
                    }
         
     | 
| 
       262 
664 
     | 
    
         
             
                  ],
         
     | 
| 
       263 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 665 
     | 
    
         
            +
                  "name": "registerService",
         
     | 
| 
       264 
666 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       265 
667 
     | 
    
         
             
                    {
         
     | 
| 
       266 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 668 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
       267 
669 
     | 
    
         
             
                      "name": "nftId",
         
     | 
| 
       268 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 670 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 671 
     | 
    
         
            +
                    }
         
     | 
| 
      
 672 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 673 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 674 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 675 
     | 
    
         
            +
                },
         
     | 
| 
      
 676 
     | 
    
         
            +
                {
         
     | 
| 
      
 677 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 678 
     | 
    
         
            +
                    {
         
     | 
| 
      
 679 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 680 
     | 
    
         
            +
                        {
         
     | 
| 
      
 681 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 682 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 683 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 684 
     | 
    
         
            +
                        },
         
     | 
| 
      
 685 
     | 
    
         
            +
                        {
         
     | 
| 
      
 686 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 687 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 688 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 689 
     | 
    
         
            +
                        },
         
     | 
| 
      
 690 
     | 
    
         
            +
                        {
         
     | 
| 
      
 691 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 692 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 693 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 694 
     | 
    
         
            +
                        },
         
     | 
| 
      
 695 
     | 
    
         
            +
                        {
         
     | 
| 
      
 696 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 697 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 698 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 699 
     | 
    
         
            +
                        },
         
     | 
| 
      
 700 
     | 
    
         
            +
                        {
         
     | 
| 
      
 701 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 702 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 703 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 704 
     | 
    
         
            +
                        },
         
     | 
| 
      
 705 
     | 
    
         
            +
                        {
         
     | 
| 
      
 706 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 707 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 708 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 709 
     | 
    
         
            +
                        },
         
     | 
| 
      
 710 
     | 
    
         
            +
                        {
         
     | 
| 
      
 711 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 712 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 713 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 714 
     | 
    
         
            +
                        }
         
     | 
| 
      
 715 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 716 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 717 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 718 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 719 
     | 
    
         
            +
                    }
         
     | 
| 
      
 720 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 721 
     | 
    
         
            +
                  "name": "registerWithCustomType",
         
     | 
| 
      
 722 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 723 
     | 
    
         
            +
                    {
         
     | 
| 
      
 724 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 725 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 726 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       269 
727 
     | 
    
         
             
                    }
         
     | 
| 
       270 
728 
     | 
    
         
             
                  ],
         
     | 
| 
       271 
729 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       272 
730 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
      
 731 
     | 
    
         
            +
                },
         
     | 
| 
      
 732 
     | 
    
         
            +
                {
         
     | 
| 
      
 733 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 734 
     | 
    
         
            +
                    {
         
     | 
| 
      
 735 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 736 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 737 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 738 
     | 
    
         
            +
                    }
         
     | 
| 
      
 739 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 740 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 741 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 742 
     | 
    
         
            +
                    {
         
     | 
| 
      
 743 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 744 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 745 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 746 
     | 
    
         
            +
                    }
         
     | 
| 
      
 747 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 748 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 749 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       273 
750 
     | 
    
         
             
                }
         
     | 
| 
       274 
751 
     | 
    
         
             
              ],
         
     | 
| 
       275 
752 
     | 
    
         
             
              "bytecode": "0x",
         
     |