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