@etherisc/gif-next 0.0.2-e9148e0-933 → 0.0.2-e94f4c7-084
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 +71 -14
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/components/Component.sol/Component.json +842 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +946 -219
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → components/IComponent.sol/IComponent.json} +303 -164
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +848 -31
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +864 -49
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +825 -231
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +638 -190
 - 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/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +91 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2137 -457
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +321 -168
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +1002 -1278
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +593 -180
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +262 -247
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +501 -292
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +331 -98
 - 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/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +247 -180
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +71 -45
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - 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 +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.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 +1289 -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 +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1273 -215
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +428 -79
 - 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 +709 -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 +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +804 -160
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +969 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +544 -145
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +90 -391
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1543 -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 +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +848 -238
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +346 -85
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +284 -502
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +304 -99
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +261 -131
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +149 -230
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +275 -226
 - 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 +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +200 -335
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -141
 - 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 +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +86 -172
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
 - 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 +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
 - 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 +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +191 -163
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +210 -214
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +209 -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 +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
 - 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 +1 -1
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
 - 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 +38 -7
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
 - package/contracts/components/Component.sol +253 -0
 - package/contracts/components/Distribution.sol +204 -79
 - package/contracts/components/IComponent.sol +76 -0
 - package/contracts/components/IDistributionComponent.sol +44 -17
 - package/contracts/components/IPoolComponent.sol +88 -37
 - package/contracts/components/IProductComponent.sol +10 -5
 - package/contracts/components/Pool.sol +220 -160
 - package/contracts/components/Product.sol +247 -160
 - 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 +75 -14
 - package/contracts/instance/IInstanceService.sol +46 -8
 - package/contracts/instance/Instance.sol +151 -284
 - package/contracts/instance/InstanceAccessManager.sol +414 -175
 - package/contracts/instance/InstanceReader.sol +47 -36
 - package/contracts/instance/InstanceService.sol +405 -119
 - package/contracts/instance/InstanceServiceManager.sol +6 -9
 - package/contracts/instance/ObjectManager.sol +82 -0
 - package/contracts/instance/base/ComponentService.sol +121 -0
 - package/contracts/instance/base/KeyValueStore.sol +13 -5
 - package/contracts/instance/base/Lifecycle.sol +23 -6
 - package/contracts/instance/module/IAccess.sol +36 -20
 - package/contracts/instance/module/IBundle.sol +8 -5
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +2 -0
 - package/contracts/instance/module/IPolicy.sol +41 -9
 - package/contracts/instance/module/ISetup.sol +9 -20
 - package/contracts/instance/service/ApplicationService.sol +355 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +443 -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 +374 -31
 - package/contracts/instance/service/DistributionServiceManager.sol +7 -10
 - package/contracts/instance/service/IApplicationService.sol +78 -0
 - package/contracts/instance/service/IBundleService.sol +102 -0
 - package/contracts/instance/service/IClaimService.sol +92 -0
 - package/contracts/instance/service/IDistributionService.sol +87 -0
 - package/contracts/instance/service/IPolicyService.sol +139 -0
 - package/contracts/instance/service/IPoolService.sol +82 -17
 - package/contracts/instance/service/IProductService.sol +6 -73
 - package/contracts/instance/service/PolicyService.sol +571 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +248 -106
 - package/contracts/instance/service/PoolServiceManager.sol +6 -9
 - package/contracts/instance/service/ProductService.sol +114 -452
 - package/contracts/instance/service/ProductServiceManager.sol +2 -2
 - package/contracts/registry/ChainNft.sol +9 -1
 - package/contracts/registry/IRegistry.sol +41 -19
 - package/contracts/registry/IRegistryService.sol +31 -13
 - package/contracts/registry/ITransferInterceptor.sol +1 -0
 - package/contracts/registry/Registry.sol +245 -222
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +97 -173
 - package/contracts/registry/RegistryServiceManager.sol +21 -39
 - package/contracts/registry/ReleaseManager.sol +324 -0
 - package/contracts/registry/TokenRegistry.sol +22 -17
 - package/contracts/shared/ERC165.sol +14 -12
 - package/contracts/shared/INftOwnable.sol +11 -10
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +4 -6
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +5 -4
 - package/contracts/shared/IVersionable.sol +4 -47
 - package/contracts/shared/NftOwnable.sol +66 -80
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +100 -25
 - package/contracts/shared/Registerable.sol +16 -32
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +41 -24
 - package/contracts/shared/TokenHandler.sol +11 -5
 - package/contracts/shared/Versionable.sol +4 -92
 - package/contracts/test/TestRegisterable.sol +1 -1
 - package/contracts/test/TestService.sol +4 -3
 - package/contracts/types/Amount.sol +70 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/ClaimId.sol +75 -0
 - package/contracts/types/DistributorType.sol +2 -2
 - package/contracts/types/Fee.sol +13 -5
 - package/contracts/types/NftId.sol +8 -0
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/ObjectType.sol +11 -6
 - package/contracts/types/PayoutId.sol +82 -0
 - package/contracts/types/Referral.sol +4 -0
 - package/contracts/types/RoleId.sol +26 -19
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/StateId.sol +7 -2
 - package/contracts/types/Timestamp.sol +18 -13
 - package/contracts/types/UFixed.sol +1 -0
 - package/contracts/types/Version.sol +1 -0
 - package/package.json +3 -3
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
 - 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/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
 - package/contracts/components/BaseComponent.sol +0 -91
 - package/contracts/components/IBaseComponent.sol +0 -25
 - package/contracts/experiment/cloning/Cloner.sol +0 -47
 - 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/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/AccessManagedSimple.sol +0 -115
 - package/contracts/instance/AccessManagerSimple.sol +0 -692
 - package/contracts/instance/IAccessManagerSimple.sol +0 -391
 - package/contracts/instance/base/ComponentServiceBase.sol +0 -124
 - package/contracts/instance/base/IInstanceBase.sol +0 -23
 - package/contracts/instance/service/ComponentOwnerService.sol +0 -317
 - package/contracts/instance/service/IComponentOwnerService.sol +0 -20
 - package/contracts/shared/RegisterableUpgradable.sol +0 -16
 
| 
         @@ -7,156 +7,188 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
8 
     | 
    
         
             
                    {
         
     | 
| 
       9 
9 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       10 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
       11 
11 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       12 
     | 
    
         
            -
                    } 
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       18 
19 
     | 
    
         
             
                    {
         
     | 
| 
       19 
20 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       20 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       21 
22 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       22 
23 
     | 
    
         
             
                    },
         
     | 
| 
       23 
24 
     | 
    
         
             
                    {
         
     | 
| 
       24 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       25 
     | 
    
         
            -
                      "name": " 
     | 
| 
       26 
     | 
    
         
            -
                      "type": " 
     | 
| 
       27 
     | 
    
         
            -
                    } 
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       28 
35 
     | 
    
         
             
                    {
         
     | 
| 
       29 
36 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       30 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       31 
38 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       32 
     | 
    
         
            -
                    } 
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       33 
46 
     | 
    
         
             
                    {
         
     | 
| 
       34 
47 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       35 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
       36 
49 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       37 
     | 
    
         
            -
                    } 
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
             
     | 
| 
       40 
     | 
    
         
            -
             
     | 
| 
       41 
     | 
    
         
            -
             
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
       44 
     | 
    
         
            -
                        },
         
     | 
| 
       45 
     | 
    
         
            -
                        {
         
     | 
| 
       46 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       47 
     | 
    
         
            -
                          "name": "fixedFee",
         
     | 
| 
       48 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       49 
     | 
    
         
            -
                        }
         
     | 
| 
       50 
     | 
    
         
            -
                      ],
         
     | 
| 
       51 
     | 
    
         
            -
                      "internalType": "struct Fee",
         
     | 
| 
       52 
     | 
    
         
            -
                      "name": "productFee",
         
     | 
| 
       53 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       54 
     | 
    
         
            -
                    },
         
     | 
| 
       55 
     | 
    
         
            -
                    {
         
     | 
| 
       56 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       57 
     | 
    
         
            -
                        {
         
     | 
| 
       58 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       59 
     | 
    
         
            -
                          "name": "fractionalFee",
         
     | 
| 
       60 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       61 
     | 
    
         
            -
                        },
         
     | 
| 
       62 
     | 
    
         
            -
                        {
         
     | 
| 
       63 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       64 
     | 
    
         
            -
                          "name": "fixedFee",
         
     | 
| 
       65 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       66 
     | 
    
         
            -
                        }
         
     | 
| 
       67 
     | 
    
         
            -
                      ],
         
     | 
| 
       68 
     | 
    
         
            -
                      "internalType": "struct Fee",
         
     | 
| 
       69 
     | 
    
         
            -
                      "name": "processingFee",
         
     | 
| 
       70 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       71 
     | 
    
         
            -
                    },
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "AddressEmptyCode",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       72 
57 
     | 
    
         
             
                    {
         
     | 
| 
       73 
58 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       74 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
       75 
60 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       76 
61 
     | 
    
         
             
                    }
         
     | 
| 
       77 
62 
     | 
    
         
             
                  ],
         
     | 
| 
       78 
     | 
    
         
            -
                  " 
     | 
| 
       79 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "AddressInsufficientBalance",
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
       80 
65 
     | 
    
         
             
                },
         
     | 
| 
       81 
66 
     | 
    
         
             
                {
         
     | 
| 
       82 
67 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       83 
68 
     | 
    
         
             
                    {
         
     | 
| 
       84 
69 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       85 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 70 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       86 
71 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       87 
     | 
    
         
            -
                    } 
     | 
| 
      
 72 
     | 
    
         
            +
                    }
         
     | 
| 
      
 73 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "name": "ErrorComponentNotChainNft",
         
     | 
| 
      
 75 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 76 
     | 
    
         
            +
                },
         
     | 
| 
      
 77 
     | 
    
         
            +
                {
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       88 
79 
     | 
    
         
             
                    {
         
     | 
| 
       89 
80 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       90 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 81 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
       91 
82 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       92 
83 
     | 
    
         
             
                    }
         
     | 
| 
       93 
84 
     | 
    
         
             
                  ],
         
     | 
| 
       94 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 85 
     | 
    
         
            +
                  "name": "ErrorComponentNotInstance",
         
     | 
| 
       95 
86 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       96 
87 
     | 
    
         
             
                },
         
     | 
| 
       97 
88 
     | 
    
         
             
                {
         
     | 
| 
       98 
89 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       99 
90 
     | 
    
         
             
                    {
         
     | 
| 
       100 
91 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       101 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 92 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       102 
93 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       103 
94 
     | 
    
         
             
                    }
         
     | 
| 
       104 
95 
     | 
    
         
             
                  ],
         
     | 
| 
       105 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 96 
     | 
    
         
            +
                  "name": "ErrorComponentNotProductService",
         
     | 
| 
      
 97 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 98 
     | 
    
         
            +
                },
         
     | 
| 
      
 99 
     | 
    
         
            +
                {
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         
     | 
| 
      
 102 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 103 
     | 
    
         
            +
                },
         
     | 
| 
      
 104 
     | 
    
         
            +
                {
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 106 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         
     | 
| 
      
 107 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 108 
     | 
    
         
            +
                },
         
     | 
| 
      
 109 
     | 
    
         
            +
                {
         
     | 
| 
      
 110 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 111 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressZero",
         
     | 
| 
       106 
112 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       107 
113 
     | 
    
         
             
                },
         
     | 
| 
       108 
114 
     | 
    
         
             
                {
         
     | 
| 
       109 
115 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       110 
116 
     | 
    
         
             
                    {
         
     | 
| 
       111 
117 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       112 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 118 
     | 
    
         
            +
                      "name": "oldWallet",
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 120 
     | 
    
         
            +
                    },
         
     | 
| 
      
 121 
     | 
    
         
            +
                    {
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
       113 
124 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 125 
     | 
    
         
            +
                    },
         
     | 
| 
      
 126 
     | 
    
         
            +
                    {
         
     | 
| 
      
 127 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "name": "allowance",
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 130 
     | 
    
         
            +
                    },
         
     | 
| 
      
 131 
     | 
    
         
            +
                    {
         
     | 
| 
      
 132 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 133 
     | 
    
         
            +
                      "name": "balance",
         
     | 
| 
      
 134 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       114 
135 
     | 
    
         
             
                    }
         
     | 
| 
       115 
136 
     | 
    
         
             
                  ],
         
     | 
| 
       116 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 137 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         
     | 
| 
       117 
138 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       118 
139 
     | 
    
         
             
                },
         
     | 
| 
       119 
140 
     | 
    
         
             
                {
         
     | 
| 
       120 
141 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       121 
142 
     | 
    
         
             
                    {
         
     | 
| 
       122 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       123 
     | 
    
         
            -
                      "name": " 
     | 
| 
       124 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 143 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 145 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       125 
146 
     | 
    
         
             
                    }
         
     | 
| 
       126 
147 
     | 
    
         
             
                  ],
         
     | 
| 
       127 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 148 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
       128 
149 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       129 
150 
     | 
    
         
             
                },
         
     | 
| 
       130 
151 
     | 
    
         
             
                {
         
     | 
| 
       131 
152 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       132 
153 
     | 
    
         
             
                    {
         
     | 
| 
       133 
154 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       134 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 155 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
       135 
156 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       136 
157 
     | 
    
         
             
                    }
         
     | 
| 
       137 
158 
     | 
    
         
             
                  ],
         
     | 
| 
       138 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 159 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
       139 
160 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       140 
161 
     | 
    
         
             
                },
         
     | 
| 
       141 
162 
     | 
    
         
             
                {
         
     | 
| 
       142 
163 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       143 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 164 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
       144 
165 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       145 
166 
     | 
    
         
             
                },
         
     | 
| 
       146 
167 
     | 
    
         
             
                {
         
     | 
| 
       147 
168 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       148 
169 
     | 
    
         
             
                    {
         
     | 
| 
       149 
170 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       150 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 171 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 173 
     | 
    
         
            +
                    }
         
     | 
| 
      
 174 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 175 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 176 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 177 
     | 
    
         
            +
                },
         
     | 
| 
      
 178 
     | 
    
         
            +
                {
         
     | 
| 
      
 179 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 180 
     | 
    
         
            +
                    {
         
     | 
| 
      
 181 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 182 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
       151 
183 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       152 
184 
     | 
    
         
             
                    }
         
     | 
| 
       153 
185 
     | 
    
         
             
                  ],
         
     | 
| 
       154 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 186 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
       155 
187 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       156 
188 
     | 
    
         
             
                },
         
     | 
| 
       157 
189 
     | 
    
         
             
                {
         
     | 
| 
       158 
190 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       159 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 191 
     | 
    
         
            +
                  "name": "FailedInnerCall",
         
     | 
| 
       160 
192 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       161 
193 
     | 
    
         
             
                },
         
     | 
| 
       162 
194 
     | 
    
         
             
                {
         
     | 
| 
         @@ -169,6 +201,30 @@ 
     | 
|
| 
       169 
201 
     | 
    
         
             
                  "name": "NotInitializing",
         
     | 
| 
       170 
202 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       171 
203 
     | 
    
         
             
                },
         
     | 
| 
      
 204 
     | 
    
         
            +
                {
         
     | 
| 
      
 205 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 206 
     | 
    
         
            +
                    {
         
     | 
| 
      
 207 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 208 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 209 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 210 
     | 
    
         
            +
                    }
         
     | 
| 
      
 211 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 212 
     | 
    
         
            +
                  "name": "SafeERC20FailedOperation",
         
     | 
| 
      
 213 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 214 
     | 
    
         
            +
                },
         
     | 
| 
      
 215 
     | 
    
         
            +
                {
         
     | 
| 
      
 216 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 218 
     | 
    
         
            +
                    {
         
     | 
| 
      
 219 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 220 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 221 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 222 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 223 
     | 
    
         
            +
                    }
         
     | 
| 
      
 224 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 226 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 227 
     | 
    
         
            +
                },
         
     | 
| 
       172 
228 
     | 
    
         
             
                {
         
     | 
| 
       173 
229 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       174 
230 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
         @@ -182,6 +238,89 @@ 
     | 
|
| 
       182 
238 
     | 
    
         
             
                  "name": "Initialized",
         
     | 
| 
       183 
239 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       184 
240 
     | 
    
         
             
                },
         
     | 
| 
      
 241 
     | 
    
         
            +
                {
         
     | 
| 
      
 242 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 243 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 244 
     | 
    
         
            +
                    {
         
     | 
| 
      
 245 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 246 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 247 
     | 
    
         
            +
                      "name": "oldWallet",
         
     | 
| 
      
 248 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 249 
     | 
    
         
            +
                    },
         
     | 
| 
      
 250 
     | 
    
         
            +
                    {
         
     | 
| 
      
 251 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 252 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 253 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 254 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 255 
     | 
    
         
            +
                    }
         
     | 
| 
      
 256 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 257 
     | 
    
         
            +
                  "name": "LogComponentWalletAddressChanged",
         
     | 
| 
      
 258 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 259 
     | 
    
         
            +
                },
         
     | 
| 
      
 260 
     | 
    
         
            +
                {
         
     | 
| 
      
 261 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 262 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 263 
     | 
    
         
            +
                    {
         
     | 
| 
      
 264 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 265 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 266 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 267 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 268 
     | 
    
         
            +
                    },
         
     | 
| 
      
 269 
     | 
    
         
            +
                    {
         
     | 
| 
      
 270 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 271 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 272 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 273 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 274 
     | 
    
         
            +
                    },
         
     | 
| 
      
 275 
     | 
    
         
            +
                    {
         
     | 
| 
      
 276 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 277 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 278 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 279 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 280 
     | 
    
         
            +
                    }
         
     | 
| 
      
 281 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 282 
     | 
    
         
            +
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
      
 283 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 284 
     | 
    
         
            +
                },
         
     | 
| 
      
 285 
     | 
    
         
            +
                {
         
     | 
| 
      
 286 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 287 
     | 
    
         
            +
                  "name": "COMPONENT_LOCATION_V1",
         
     | 
| 
      
 288 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 289 
     | 
    
         
            +
                    {
         
     | 
| 
      
 290 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 291 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 292 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 293 
     | 
    
         
            +
                    }
         
     | 
| 
      
 294 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 296 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 297 
     | 
    
         
            +
                },
         
     | 
| 
      
 298 
     | 
    
         
            +
                {
         
     | 
| 
      
 299 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 300 
     | 
    
         
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         
     | 
| 
      
 301 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 302 
     | 
    
         
            +
                    {
         
     | 
| 
      
 303 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 304 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 305 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 306 
     | 
    
         
            +
                    }
         
     | 
| 
      
 307 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 308 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 309 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 310 
     | 
    
         
            +
                },
         
     | 
| 
      
 311 
     | 
    
         
            +
                {
         
     | 
| 
      
 312 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 313 
     | 
    
         
            +
                  "name": "PRODUCT_STORAGE_LOCATION_V1",
         
     | 
| 
      
 314 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 315 
     | 
    
         
            +
                    {
         
     | 
| 
      
 316 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 317 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 318 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 319 
     | 
    
         
            +
                    }
         
     | 
| 
      
 320 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 321 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 322 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 323 
     | 
    
         
            +
                },
         
     | 
| 
       185 
324 
     | 
    
         
             
                {
         
     | 
| 
       186 
325 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       187 
326 
     | 
    
         
             
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
         @@ -195,6 +334,19 @@ 
     | 
|
| 
       195 
334 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       196 
335 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       197 
336 
     | 
    
         
             
                },
         
     | 
| 
      
 337 
     | 
    
         
            +
                {
         
     | 
| 
      
 338 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 339 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 340 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 341 
     | 
    
         
            +
                    {
         
     | 
| 
      
 342 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 343 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 344 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 345 
     | 
    
         
            +
                    }
         
     | 
| 
      
 346 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 347 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 348 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 349 
     | 
    
         
            +
                },
         
     | 
| 
       198 
350 
     | 
    
         
             
                {
         
     | 
| 
       199 
351 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       200 
352 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -208,9 +360,9 @@ 
     | 
|
| 
       208 
360 
     | 
    
         
             
                      "type": "bytes8"
         
     | 
| 
       209 
361 
     | 
    
         
             
                    },
         
     | 
| 
       210 
362 
     | 
    
         
             
                    {
         
     | 
| 
       211 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 363 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
       212 
364 
     | 
    
         
             
                      "name": "lifetime",
         
     | 
| 
       213 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 365 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
       214 
366 
     | 
    
         
             
                    },
         
     | 
| 
       215 
367 
     | 
    
         
             
                    {
         
     | 
| 
       216 
368 
     | 
    
         
             
                      "internalType": "bytes",
         
     | 
| 
         @@ -242,24 +394,24 @@ 
     | 
|
| 
       242 
394 
     | 
    
         
             
                      "type": "bytes8"
         
     | 
| 
       243 
395 
     | 
    
         
             
                    },
         
     | 
| 
       244 
396 
     | 
    
         
             
                    {
         
     | 
| 
       245 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 397 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
       246 
398 
     | 
    
         
             
                      "name": "lifetime",
         
     | 
| 
       247 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 399 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
       248 
400 
     | 
    
         
             
                    },
         
     | 
| 
       249 
401 
     | 
    
         
             
                    {
         
     | 
| 
       250 
402 
     | 
    
         
             
                      "internalType": "bytes",
         
     | 
| 
       251 
403 
     | 
    
         
             
                      "name": "applicationData",
         
     | 
| 
       252 
404 
     | 
    
         
             
                      "type": "bytes"
         
     | 
| 
       253 
405 
     | 
    
         
             
                    },
         
     | 
| 
       254 
     | 
    
         
            -
                    {
         
     | 
| 
       255 
     | 
    
         
            -
                      "internalType": "ReferralId",
         
     | 
| 
       256 
     | 
    
         
            -
                      "name": "referralId",
         
     | 
| 
       257 
     | 
    
         
            -
                      "type": "bytes8"
         
     | 
| 
       258 
     | 
    
         
            -
                    },
         
     | 
| 
       259 
406 
     | 
    
         
             
                    {
         
     | 
| 
       260 
407 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       261 
408 
     | 
    
         
             
                      "name": "bundleNftId",
         
     | 
| 
       262 
409 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
      
 410 
     | 
    
         
            +
                    },
         
     | 
| 
      
 411 
     | 
    
         
            +
                    {
         
     | 
| 
      
 412 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 413 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 414 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
       263 
415 
     | 
    
         
             
                    }
         
     | 
| 
       264 
416 
     | 
    
         
             
                  ],
         
     | 
| 
       265 
417 
     | 
    
         
             
                  "name": "calculatePremium",
         
     | 
| 
         @@ -275,10 +427,60 @@ 
     | 
|
| 
       275 
427 
     | 
    
         
             
                },
         
     | 
| 
       276 
428 
     | 
    
         
             
                {
         
     | 
| 
       277 
429 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       278 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 430 
     | 
    
         
            +
                  "name": "getComponentInfo",
         
     | 
| 
       279 
431 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       280 
432 
     | 
    
         
             
                    {
         
     | 
| 
       281 
     | 
    
         
            -
                      " 
     | 
| 
      
 433 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 434 
     | 
    
         
            +
                        {
         
     | 
| 
      
 435 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 436 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 437 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 438 
     | 
    
         
            +
                        },
         
     | 
| 
      
 439 
     | 
    
         
            +
                        {
         
     | 
| 
      
 440 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 441 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 442 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 443 
     | 
    
         
            +
                        },
         
     | 
| 
      
 444 
     | 
    
         
            +
                        {
         
     | 
| 
      
 445 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 446 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 447 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 448 
     | 
    
         
            +
                        },
         
     | 
| 
      
 449 
     | 
    
         
            +
                        {
         
     | 
| 
      
 450 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 451 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 452 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 453 
     | 
    
         
            +
                        },
         
     | 
| 
      
 454 
     | 
    
         
            +
                        {
         
     | 
| 
      
 455 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 456 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 457 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 458 
     | 
    
         
            +
                        },
         
     | 
| 
      
 459 
     | 
    
         
            +
                        {
         
     | 
| 
      
 460 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 461 
     | 
    
         
            +
                          "name": "feeAmount",
         
     | 
| 
      
 462 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 463 
     | 
    
         
            +
                        },
         
     | 
| 
      
 464 
     | 
    
         
            +
                        {
         
     | 
| 
      
 465 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 466 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 467 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 468 
     | 
    
         
            +
                        }
         
     | 
| 
      
 469 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 470 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 471 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 473 
     | 
    
         
            +
                    }
         
     | 
| 
      
 474 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 476 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 477 
     | 
    
         
            +
                },
         
     | 
| 
      
 478 
     | 
    
         
            +
                {
         
     | 
| 
      
 479 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 480 
     | 
    
         
            +
                  "name": "getDistributionNftId",
         
     | 
| 
      
 481 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 482 
     | 
    
         
            +
                    {
         
     | 
| 
      
 483 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
       282 
484 
     | 
    
         
             
                      "name": "distributionNftId",
         
     | 
| 
       283 
485 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       284 
486 
     | 
    
         
             
                    }
         
     | 
| 
         @@ -329,13 +531,8 @@ 
     | 
|
| 
       329 
531 
     | 
    
         
             
                        }
         
     | 
| 
       330 
532 
     | 
    
         
             
                      ],
         
     | 
| 
       331 
533 
     | 
    
         
             
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
       332 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 534 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
       333 
535 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       334 
     | 
    
         
            -
                    },
         
     | 
| 
       335 
     | 
    
         
            -
                    {
         
     | 
| 
       336 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       337 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       338 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       339 
536 
     | 
    
         
             
                    }
         
     | 
| 
       340 
537 
     | 
    
         
             
                  ],
         
     | 
| 
       341 
538 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -354,6 +551,19 @@ 
     | 
|
| 
       354 
551 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       355 
552 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       356 
553 
     | 
    
         
             
                },
         
     | 
| 
      
 554 
     | 
    
         
            +
                {
         
     | 
| 
      
 555 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 556 
     | 
    
         
            +
                  "name": "getName",
         
     | 
| 
      
 557 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 558 
     | 
    
         
            +
                    {
         
     | 
| 
      
 559 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 560 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 561 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 562 
     | 
    
         
            +
                    }
         
     | 
| 
      
 563 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 564 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 565 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 566 
     | 
    
         
            +
                },
         
     | 
| 
       357 
567 
     | 
    
         
             
                {
         
     | 
| 
       358 
568 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       359 
569 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
         @@ -419,6 +629,19 @@ 
     | 
|
| 
       419 
629 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       420 
630 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       421 
631 
     | 
    
         
             
                },
         
     | 
| 
      
 632 
     | 
    
         
            +
                {
         
     | 
| 
      
 633 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 634 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
      
 635 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 636 
     | 
    
         
            +
                    {
         
     | 
| 
      
 637 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 638 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 639 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 640 
     | 
    
         
            +
                    }
         
     | 
| 
      
 641 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 642 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 643 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 644 
     | 
    
         
            +
                },
         
     | 
| 
       422 
645 
     | 
    
         
             
                {
         
     | 
| 
       423 
646 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       424 
647 
     | 
    
         
             
                  "name": "getSetupInfo",
         
     | 
| 
         @@ -445,23 +668,6 @@ 
     | 
|
| 
       445 
668 
     | 
    
         
             
                          "name": "poolNftId",
         
     | 
| 
       446 
669 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       447 
670 
     | 
    
         
             
                        },
         
     | 
| 
       448 
     | 
    
         
            -
                        {
         
     | 
| 
       449 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       450 
     | 
    
         
            -
                            {
         
     | 
| 
       451 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       452 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       453 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       454 
     | 
    
         
            -
                            },
         
     | 
| 
       455 
     | 
    
         
            -
                            {
         
     | 
| 
       456 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       457 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       458 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       459 
     | 
    
         
            -
                            }
         
     | 
| 
       460 
     | 
    
         
            -
                          ],
         
     | 
| 
       461 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       462 
     | 
    
         
            -
                          "name": "distributionFee",
         
     | 
| 
       463 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       464 
     | 
    
         
            -
                        },
         
     | 
| 
       465 
671 
     | 
    
         
             
                        {
         
     | 
| 
       466 
672 
     | 
    
         
             
                          "components": [
         
     | 
| 
       467 
673 
     | 
    
         
             
                            {
         
     | 
| 
         @@ -497,55 +703,14 @@ 
     | 
|
| 
       497 
703 
     | 
    
         
             
                          "type": "tuple"
         
     | 
| 
       498 
704 
     | 
    
         
             
                        },
         
     | 
| 
       499 
705 
     | 
    
         
             
                        {
         
     | 
| 
       500 
     | 
    
         
            -
                          " 
     | 
| 
       501 
     | 
    
         
            -
             
     | 
| 
       502 
     | 
    
         
            -
             
     | 
| 
       503 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       504 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       505 
     | 
    
         
            -
                            },
         
     | 
| 
       506 
     | 
    
         
            -
                            {
         
     | 
| 
       507 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       508 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       509 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       510 
     | 
    
         
            -
                            }
         
     | 
| 
       511 
     | 
    
         
            -
                          ],
         
     | 
| 
       512 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       513 
     | 
    
         
            -
                          "name": "poolFee",
         
     | 
| 
       514 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       515 
     | 
    
         
            -
                        },
         
     | 
| 
       516 
     | 
    
         
            -
                        {
         
     | 
| 
       517 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       518 
     | 
    
         
            -
                            {
         
     | 
| 
       519 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       520 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       521 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       522 
     | 
    
         
            -
                            },
         
     | 
| 
       523 
     | 
    
         
            -
                            {
         
     | 
| 
       524 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       525 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       526 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       527 
     | 
    
         
            -
                            }
         
     | 
| 
       528 
     | 
    
         
            -
                          ],
         
     | 
| 
       529 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       530 
     | 
    
         
            -
                          "name": "stakingFee",
         
     | 
| 
       531 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 706 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 707 
     | 
    
         
            +
                          "name": "isIntercepting",
         
     | 
| 
      
 708 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
       532 
709 
     | 
    
         
             
                        },
         
     | 
| 
       533 
710 
     | 
    
         
             
                        {
         
     | 
| 
       534 
     | 
    
         
            -
                          " 
     | 
| 
       535 
     | 
    
         
            -
             
     | 
| 
       536 
     | 
    
         
            -
             
     | 
| 
       537 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       538 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       539 
     | 
    
         
            -
                            },
         
     | 
| 
       540 
     | 
    
         
            -
                            {
         
     | 
| 
       541 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       542 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       543 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       544 
     | 
    
         
            -
                            }
         
     | 
| 
       545 
     | 
    
         
            -
                          ],
         
     | 
| 
       546 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       547 
     | 
    
         
            -
                          "name": "performanceFee",
         
     | 
| 
       548 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
      
 711 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 712 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 713 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
       549 
714 
     | 
    
         
             
                        }
         
     | 
| 
       550 
715 
     | 
    
         
             
                      ],
         
     | 
| 
       551 
716 
     | 
    
         
             
                      "internalType": "struct ISetup.ProductSetupInfo",
         
     | 
| 
         @@ -583,21 +748,115 @@ 
     | 
|
| 
       583 
748 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       584 
749 
     | 
    
         
             
                },
         
     | 
| 
       585 
750 
     | 
    
         
             
                {
         
     | 
| 
       586 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       587 
     | 
    
         
            -
             
     | 
| 
      
 751 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 752 
     | 
    
         
            +
                    {
         
     | 
| 
      
 753 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 754 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 755 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 756 
     | 
    
         
            +
                    },
         
     | 
| 
      
 757 
     | 
    
         
            +
                    {
         
     | 
| 
      
 758 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 759 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 760 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 761 
     | 
    
         
            +
                    },
         
     | 
| 
      
 762 
     | 
    
         
            +
                    {
         
     | 
| 
      
 763 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 764 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 765 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 766 
     | 
    
         
            +
                    },
         
     | 
| 
      
 767 
     | 
    
         
            +
                    {
         
     | 
| 
      
 768 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 769 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 770 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 771 
     | 
    
         
            +
                    },
         
     | 
| 
      
 772 
     | 
    
         
            +
                    {
         
     | 
| 
      
 773 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 774 
     | 
    
         
            +
                      "name": "componentType",
         
     | 
| 
      
 775 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 776 
     | 
    
         
            +
                    },
         
     | 
| 
      
 777 
     | 
    
         
            +
                    {
         
     | 
| 
      
 778 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 779 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 780 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 781 
     | 
    
         
            +
                    },
         
     | 
| 
      
 782 
     | 
    
         
            +
                    {
         
     | 
| 
      
 783 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 784 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 785 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 786 
     | 
    
         
            +
                    },
         
     | 
| 
      
 787 
     | 
    
         
            +
                    {
         
     | 
| 
      
 788 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 789 
     | 
    
         
            +
                      "name": "registryData",
         
     | 
| 
      
 790 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 791 
     | 
    
         
            +
                    }
         
     | 
| 
      
 792 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 793 
     | 
    
         
            +
                  "name": "initializeComponent",
         
     | 
| 
       588 
794 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       589 
795 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       590 
796 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       591 
797 
     | 
    
         
             
                },
         
     | 
| 
       592 
798 
     | 
    
         
             
                {
         
     | 
| 
       593 
799 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       594 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 800 
     | 
    
         
            +
                  "name": "initializeERC165",
         
     | 
| 
       595 
801 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       596 
802 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       597 
803 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       598 
804 
     | 
    
         
             
                },
         
     | 
| 
       599 
805 
     | 
    
         
             
                {
         
     | 
| 
       600 
806 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 807 
     | 
    
         
            +
                    {
         
     | 
| 
      
 808 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 809 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 810 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 811 
     | 
    
         
            +
                    },
         
     | 
| 
      
 812 
     | 
    
         
            +
                    {
         
     | 
| 
      
 813 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 814 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 815 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 816 
     | 
    
         
            +
                    }
         
     | 
| 
      
 817 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 818 
     | 
    
         
            +
                  "name": "initializeNftOwnable",
         
     | 
| 
      
 819 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 820 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 821 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 822 
     | 
    
         
            +
                },
         
     | 
| 
      
 823 
     | 
    
         
            +
                {
         
     | 
| 
      
 824 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 825 
     | 
    
         
            +
                    {
         
     | 
| 
      
 826 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 827 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 828 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 829 
     | 
    
         
            +
                    },
         
     | 
| 
      
 830 
     | 
    
         
            +
                    {
         
     | 
| 
      
 831 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 832 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 833 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 834 
     | 
    
         
            +
                    },
         
     | 
| 
      
 835 
     | 
    
         
            +
                    {
         
     | 
| 
      
 836 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 837 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 838 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 839 
     | 
    
         
            +
                    },
         
     | 
| 
      
 840 
     | 
    
         
            +
                    {
         
     | 
| 
      
 841 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 842 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 843 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 844 
     | 
    
         
            +
                    },
         
     | 
| 
      
 845 
     | 
    
         
            +
                    {
         
     | 
| 
      
 846 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 847 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 848 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 849 
     | 
    
         
            +
                    },
         
     | 
| 
      
 850 
     | 
    
         
            +
                    {
         
     | 
| 
      
 851 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 852 
     | 
    
         
            +
                      "name": "pool",
         
     | 
| 
      
 853 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 854 
     | 
    
         
            +
                    },
         
     | 
| 
      
 855 
     | 
    
         
            +
                    {
         
     | 
| 
      
 856 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 857 
     | 
    
         
            +
                      "name": "distribution",
         
     | 
| 
      
 858 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 859 
     | 
    
         
            +
                    },
         
     | 
| 
       601 
860 
     | 
    
         
             
                    {
         
     | 
| 
       602 
861 
     | 
    
         
             
                      "components": [
         
     | 
| 
       603 
862 
     | 
    
         
             
                        {
         
     | 
| 
         @@ -631,39 +890,94 @@ 
     | 
|
| 
       631 
890 
     | 
    
         
             
                      "internalType": "struct Fee",
         
     | 
| 
       632 
891 
     | 
    
         
             
                      "name": "processingFee",
         
     | 
| 
       633 
892 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
      
 893 
     | 
    
         
            +
                    },
         
     | 
| 
      
 894 
     | 
    
         
            +
                    {
         
     | 
| 
      
 895 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 896 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 897 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 898 
     | 
    
         
            +
                    },
         
     | 
| 
      
 899 
     | 
    
         
            +
                    {
         
     | 
| 
      
 900 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 901 
     | 
    
         
            +
                      "name": "registryData",
         
     | 
| 
      
 902 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
       634 
903 
     | 
    
         
             
                    }
         
     | 
| 
       635 
904 
     | 
    
         
             
                  ],
         
     | 
| 
       636 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 905 
     | 
    
         
            +
                  "name": "initializeProduct",
         
     | 
| 
       637 
906 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       638 
907 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       639 
908 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       640 
909 
     | 
    
         
             
                },
         
     | 
| 
       641 
910 
     | 
    
         
             
                {
         
     | 
| 
       642 
911 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 912 
     | 
    
         
            +
                    {
         
     | 
| 
      
 913 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 914 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 915 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 916 
     | 
    
         
            +
                    },
         
     | 
| 
       643 
917 
     | 
    
         
             
                    {
         
     | 
| 
       644 
918 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       645 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 919 
     | 
    
         
            +
                      "name": "parentNftId",
         
     | 
| 
       646 
920 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
      
 921 
     | 
    
         
            +
                    },
         
     | 
| 
      
 922 
     | 
    
         
            +
                    {
         
     | 
| 
      
 923 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 924 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 925 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 926 
     | 
    
         
            +
                    },
         
     | 
| 
      
 927 
     | 
    
         
            +
                    {
         
     | 
| 
      
 928 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 929 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 930 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 931 
     | 
    
         
            +
                    },
         
     | 
| 
      
 932 
     | 
    
         
            +
                    {
         
     | 
| 
      
 933 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 934 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 935 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 936 
     | 
    
         
            +
                    },
         
     | 
| 
      
 937 
     | 
    
         
            +
                    {
         
     | 
| 
      
 938 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 939 
     | 
    
         
            +
                      "name": "registryData",
         
     | 
| 
      
 940 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
       647 
941 
     | 
    
         
             
                    }
         
     | 
| 
       648 
942 
     | 
    
         
             
                  ],
         
     | 
| 
       649 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 943 
     | 
    
         
            +
                  "name": "initializeRegisterable",
         
     | 
| 
       650 
944 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       651 
945 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       652 
946 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       653 
947 
     | 
    
         
             
                },
         
     | 
| 
       654 
948 
     | 
    
         
             
                {
         
     | 
| 
       655 
949 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 950 
     | 
    
         
            +
                    {
         
     | 
| 
      
 951 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 952 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 953 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 954 
     | 
    
         
            +
                    }
         
     | 
| 
      
 955 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 956 
     | 
    
         
            +
                  "name": "initializeRegistryLinked",
         
     | 
| 
      
 957 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 958 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 959 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 960 
     | 
    
         
            +
                },
         
     | 
| 
      
 961 
     | 
    
         
            +
                {
         
     | 
| 
      
 962 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 963 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 964 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       656 
965 
     | 
    
         
             
                    {
         
     | 
| 
       657 
966 
     | 
    
         
             
                      "internalType": "bytes4",
         
     | 
| 
       658 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 967 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       659 
968 
     | 
    
         
             
                      "type": "bytes4"
         
     | 
| 
       660 
969 
     | 
    
         
             
                    }
         
     | 
| 
       661 
970 
     | 
    
         
             
                  ],
         
     | 
| 
       662 
     | 
    
         
            -
                  " 
     | 
| 
      
 971 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 972 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 973 
     | 
    
         
            +
                },
         
     | 
| 
      
 974 
     | 
    
         
            +
                {
         
     | 
| 
      
 975 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 976 
     | 
    
         
            +
                  "name": "isNftInterceptor",
         
     | 
| 
       663 
977 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       664 
978 
     | 
    
         
             
                    {
         
     | 
| 
       665 
979 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
       666 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 980 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
       667 
981 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
       668 
982 
     | 
    
         
             
                    }
         
     | 
| 
       669 
983 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -672,48 +986,182 @@ 
     | 
|
| 
       672 
986 
     | 
    
         
             
                },
         
     | 
| 
       673 
987 
     | 
    
         
             
                {
         
     | 
| 
       674 
988 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       675 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 989 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
       676 
990 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       677 
991 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       678 
992 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       679 
     | 
    
         
            -
                }
         
     | 
| 
       680 
     | 
    
         
            -
             
     | 
| 
       681 
     | 
    
         
            -
              "bytecode": "0x60806040523480156200001157600080fd5b506040516200281e3803806200281e83398101604081905262000034916200094a565b888888606e89856200006c6301ffc9a760e01b6000908152602052600080516020620027fe833981519152805460ff19166001179055565b600280546001600160a01b031916331790556040805160208101909152600081526200009d8787868686866200053f565b6000620000b26001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000102573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200012c919081019062000ab4565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b81526367a9cb5360e01b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000b9a565b620001e65760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000bbf565b600380546001600160a01b03199081166001600160a01b0393841617909155600580543090831617905560068054909116918816919091179055634c0cba3d60e11b60009081526020527f8605f84a1fdbc6ff75d8a06315d161884729b429561b502d19c5a33135142c3a805460ff191660011790555050505050505050600760009054906101000a90046001600160a01b03166001600160a01b0316634288121d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000332573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000358919062000bbf565b600880546001600160a01b03199081166001600160a01b0393841617909155600980548216888416179055600a80549091168683161790558351600b55602080850151600c558351600d55830151600e5560015416600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa158015620003f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200041d919062000bdf565b600f80546001600160601b0319166001600160601b0392909216919091179055620004506001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401602060405180830381865afa1580156200049a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c0919062000bdf565b600f80546001600160601b03929092166c0100000000000000000000000002600160601b600160c01b0319909216919091179055633ad74e8160e01b60009081526020527f6d6f21c9f977ce279ee1b58c3ce3ac0b612bbc5256f6c821ab515558c7e6a0a8805460ff1916600117905550505050505050505062000d58565b620005706301ffc9a760e01b6000908152602052600080516020620027fe833981519152805460ff19166001179055565b6200057c828762000641565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d010000000000000000000000000086151502178155905060018101620005fb838262000c8c565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b6001600160a01b038216620006995760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401620001dd565b600280546001600160a01b0319166001600160a01b038416179055620006bf81620006c3565b5050565b6001546001600160a01b031615620006fe5760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001dd565b6001600160a01b038116620007265760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036200075e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001dd565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526376ceea7360e01b60048201526301ffc9a790602401602060405180830381865afa925050508015620007db575060408051601f3d908101601f19168201909252620007d89181019062000b9a565b60015b620008055760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001dd565b80620006bf5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001dd565b50565b6001600160a01b03811681146200083057600080fd5b8051620008568162000833565b919050565b80516001600160601b03811681146200085657600080fd5b805180151581146200085657600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715620008bf57620008bf62000884565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620008f057620008f062000884565b604052919050565b6000604082840312156200090b57600080fd5b604080519081016001600160401b038111828210171562000930576200093062000884565b604052825181526020928301519281019290925250919050565b60008060008060008060008060006101608a8c0312156200096a57600080fd5b8951620009778162000833565b98506200098760208b016200085b565b975060408a0151620009998162000833565b9650620009a960608b0162000873565b955060808a0151620009bb8162000833565b60a08b0151909550620009ce8162000833565b9350620009df8b60c08c01620008f8565b9250620009f18b6101008c01620008f8565b91506101408a015162000a048162000833565b809150509295985092959850929598565b805160ff811681146200085657600080fd5b600082601f83011262000a3957600080fd5b81516001600160401b0381111562000a555762000a5562000884565b602062000a6b601f8301601f19168201620008c5565b828152858284870101111562000a8057600080fd5b60005b8381101562000aa057858101830151828201840152820162000a83565b506000928101909101919091529392505050565b60006020828403121562000ac757600080fd5b81516001600160401b038082111562000adf57600080fd5b9083019060e0828603121562000af457600080fd5b62000afe6200089a565b62000b09836200085b565b815262000b19602084016200085b565b602082015262000b2c6040840162000a15565b604082015262000b3f6060840162000873565b606082015262000b526080840162000849565b608082015262000b6560a0840162000849565b60a082015260c08301518281111562000b7d57600080fd5b62000b8b8782860162000a27565b60c08301525095945050505050565b60006020828403121562000bad57600080fd5b62000bb88262000873565b9392505050565b60006020828403121562000bd257600080fd5b815162000bb88162000833565b60006020828403121562000bf257600080fd5b62000bb8826200085b565b600181811c9082168062000c1257607f821691505b60208210810362000c3357634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000c8757600081815260208120601f850160051c8101602086101562000c625750805b601f850160051c820191505b8181101562000c835782815560010162000c6e565b5050505b505050565b81516001600160401b0381111562000ca85762000ca862000884565b62000cc08162000cb9845462000bfd565b8462000c39565b602080601f83116001811462000cf8576000841562000cdf5750858301515b600019600386901b1c1916600185901b17855562000c83565b600085815260208120601f198616915b8281101562000d295788860151825594840194600190910190840162000d08565b508582101562000d485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611a968062000d686000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c80635ab1bd53116100ad578063b6b412ba11610071578063b6b412ba146102a3578063c200b809146102b6578063db6dcc95146102cb578063de7b5d14146102d3578063f83d08ba146102e457600080fd5b80635ab1bd53146102575780635e78426b14610268578063644c45e01461027b578063893d20e814610293578063a69df4b51461029b57600080fd5b8063138461e0116100f4578063138461e0146101fa5780631bdd6b76146102045780631eff4b221461020c57806321df0da7146102335780632a65c6881461024457600080fd5b806251884a1461013057806301ffc9a7146101615780630fec111c1461019e57806312abb9b3146101b457806313299604146101d5575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b61018e61016f36600461100a565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610158565b6101a66102ec565b60405161015892919061108b565b6101c76101c23660046112b0565b610531565b604051908152602001610158565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610158565b6102026105bd565b005b6101446107df565b6101c77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6006546001600160a01b03166101e2565b610202610252366004611339565b610866565b6001546001600160a01b03166101e2565b6101c7610276366004611356565b6109b5565b600154600160a01b90046001600160601b0316610144565b6101e26109cb565b610202610ae4565b6102026102b13660046113e9565b610b7f565b6102be610c22565b604051610158919061141e565b610144610dd4565b6007546001600160a01b03166101e2565b610202610e19565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201819052909180610330610e84565b915091506000600960009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610389573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103b191908101906115c1565b9150506000818060200190518101906103ca91906116ea565b90506000600a60009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610421573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261044991908101906115c1565b915050600081806020019051810190610462919061178c565b60408051610140810182526006546001600160a01b0316808252602080830191909152600f546001600160601b03600160601b8204811684860152166060808401919091528385015160808085019190915284518086018652600b548152600c548185015260a08086019190915285518087018752600d548152600e548186015260c08601529189015160e085015288015161010084015287015161012083015291519293508892610514920161141e565b604051602081830303815290604052975097505050505050509091565b600854604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f99061056c9089908b908a908a9089908b90600401611821565b60a060405180830381865afa158015610589573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ad9190611878565b50929a9950505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561061f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064391906118b8565b1561068a576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166106b35760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156106fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072091906118b8565b610748576040516372657a5160e01b81526001600160a01b0382166004820152602401610681565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b691906118d3565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60006107f36001546001600160a01b031690565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa15801561083d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086191906118d3565b905090565b61086e6109cb565b6001600160a01b0316336001600160a01b0316146108a15760405163700dd81160e01b8152336004820152602401610681565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af415801561091d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094191906118b8565b61098d5760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c7265616479207365740000000000006044820152606401610681565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b60006109c2600a866118f0565b95945050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610a30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5491906118b8565b15610ad457600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610ab0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108619190611912565b506002546001600160a01b031690565b610aec6109cb565b6001600160a01b0316336001600160a01b031614610b1f5760405163700dd81160e01b8152336004820152602401610681565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b158015610b6557600080fd5b505af1158015610b79573d6000803e3d6000fd5b50505050565b610b876109cb565b6001600160a01b0316336001600160a01b031614610bba5760405163700dd81160e01b8152336004820152602401610681565b600854604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba90610bec908590859060040161192f565b600060405180830381600087803b158015610c0657600080fd5b505af1158015610c1a573d6000803e3d6000fd5b505050505050565b610ccc604080516101408101825260008082526020808301829052828401829052606083018290528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e08401528351808501855282815280820183905261010084015283518085019094528184528301529061012082015290565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190611912565b9050806001600160a01b03166390af7064610d656001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161020060405180830381865afa158015610daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dce9190611955565b91505090565b6000610de86001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401610820565b610e216109cb565b6001600160a01b0316336001600160a01b031614610e545760405163700dd81160e01b8152336004820152602401610681565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610b4b565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610f0b6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610f536109cb565b6001600160a01b03168152602001826001018054610f7090611a26565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90611a26565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b60006020828403121561101c57600080fd5b81356001600160e01b03198116811461103457600080fd5b9392505050565b60005b8381101561105657818101518382015260200161103e565b50506000910152565b6000815180845261107781602086016020860161103b565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516110cf60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261111561012084018261105f565b905082810360208401526109c2818561105f565b6001600160c01b03198116811461113f57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff8111828210171561117b5761117b611142565b60405290565b60405160e0810167ffffffffffffffff8111828210171561117b5761117b611142565b604051610100810167ffffffffffffffff8111828210171561117b5761117b611142565b604051610140810167ffffffffffffffff8111828210171561117b5761117b611142565b604051601f8201601f1916810167ffffffffffffffff8111828210171561121557611215611142565b604052919050565b600067ffffffffffffffff82111561123757611237611142565b50601f01601f191660200190565b600082601f83011261125657600080fd5b81356112696112648261121d565b6111ec565b81815284602083860101111561127e57600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b038116811461113f57600080fd5b60008060008060008060c087890312156112c957600080fd5b8635955060208701356112db81611129565b945060408701359350606087013567ffffffffffffffff8111156112fe57600080fd5b61130a89828a01611245565b935050608087013561131b81611129565b915060a087013561132b8161129b565b809150509295509295509295565b60006020828403121561134b57600080fd5b81356110348161129b565b6000806000806080858703121561136c57600080fd5b84359350602085013561137e81611129565b925060408501359150606085013567ffffffffffffffff8111156113a157600080fd5b6113ad87828801611245565b91505092959194509250565b6000604082840312156113cb57600080fd5b6113d3611158565b9050813581526020820135602082015292915050565b600080608083850312156113fc57600080fd5b61140684846113b9565b915061141584604085016113b9565b90509250929050565b81516001600160a01b031681526102008101602083015161144a60208401826001600160a01b03169052565b50604083015161146560408401826001600160601b03169052565b50606083015161148060608401826001600160601b03169052565b50608083015161149d608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006114d38185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a08501526101209094015180516101c0850152909301516101e090920191909152919050565b805161152e8161129b565b919050565b805160ff8116811461152e57600080fd5b8051801515811461152e57600080fd5b6001600160a01b038116811461113f57600080fd5b805161152e81611554565b600082601f83011261158557600080fd5b81516115936112648261121d565b8181528460208386010111156115a857600080fd5b6115b982602083016020870161103b565b949350505050565b600080604083850312156115d457600080fd5b825167ffffffffffffffff808211156115ec57600080fd5b9084019060e0828703121561160057600080fd5b611608611181565b61161183611523565b815261161f60208401611523565b602082015261163060408401611533565b604082015261164160608401611544565b606082015261165260808401611569565b608082015261166360a08401611569565b60a082015260c08301518281111561167a57600080fd5b61168688828601611574565b60c08301525060208601519094509150808211156116a357600080fd5b506116b085828601611574565b9150509250929050565b6000604082840312156116cc57600080fd5b6116d4611158565b9050815181526020820151602082015292915050565b600061016082840312156116fd57600080fd5b6117056111a4565b61170e83611523565b815261171c60208401611569565b60208201526040830151604082015261173884606085016116ba565b606082015261174a8460a085016116ba565b608082015261175c8460e085016116ba565b60a082015261176e6101208401611544565b60c08201526117806101408401611569565b60e08201529392505050565b600060c0828403121561179e57600080fd5b60405160a0810181811067ffffffffffffffff821117156117c1576117c1611142565b60405282516117cf8161129b565b815260208301516117df81611554565b60208201526117f184604085016116ba565b604082015261180260808401611544565b606082015260a083015161181581611554565b60808201529392505050565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c0606084015261185460c084018761105f565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a0868803121561189057600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b6000602082840312156118ca57600080fd5b61103482611544565b6000602082840312156118e557600080fd5b81516110348161129b565b60008261190d57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561192457600080fd5b815161103481611554565b825181526020808401518183015282516040830152820151606082015260808101611034565b6000610200828403121561196857600080fd5b6119706111c8565b61197983611569565b815261198760208401611569565b602082015261199860408401611523565b60408201526119a960608401611523565b60608201526119bb84608085016116ba565b60808201526119cd8460c085016116ba565b60a08201526101006119e1858286016116ba565b60c08301526119f48561014086016116ba565b60e0830152611a078561018086016116ba565b90820152611a19846101c085016116ba565b6101208201529392505050565b600181811c90821680611a3a57607f821691505b602082108103611a5a57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122004dddcdb612c2e1f7780ac8547681c3c651a0c7753d7520092240181de23f22d64736f6c6343000814003367be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5",
         
     | 
| 
       682 
     | 
    
         
            -
              "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061012b5760003560e01c80635ab1bd53116100ad578063b6b412ba11610071578063b6b412ba146102a3578063c200b809146102b6578063db6dcc95146102cb578063de7b5d14146102d3578063f83d08ba146102e457600080fd5b80635ab1bd53146102575780635e78426b14610268578063644c45e01461027b578063893d20e814610293578063a69df4b51461029b57600080fd5b8063138461e0116100f4578063138461e0146101fa5780631bdd6b76146102045780631eff4b221461020c57806321df0da7146102335780632a65c6881461024457600080fd5b806251884a1461013057806301ffc9a7146101615780630fec111c1461019e57806312abb9b3146101b457806313299604146101d5575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b61018e61016f36600461100a565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610158565b6101a66102ec565b60405161015892919061108b565b6101c76101c23660046112b0565b610531565b604051908152602001610158565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610158565b6102026105bd565b005b6101446107df565b6101c77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6006546001600160a01b03166101e2565b610202610252366004611339565b610866565b6001546001600160a01b03166101e2565b6101c7610276366004611356565b6109b5565b600154600160a01b90046001600160601b0316610144565b6101e26109cb565b610202610ae4565b6102026102b13660046113e9565b610b7f565b6102be610c22565b604051610158919061141e565b610144610dd4565b6007546001600160a01b03166101e2565b610202610e19565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201819052909180610330610e84565b915091506000600960009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610389573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103b191908101906115c1565b9150506000818060200190518101906103ca91906116ea565b90506000600a60009054906101000a90046001600160a01b03166001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610421573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261044991908101906115c1565b915050600081806020019051810190610462919061178c565b60408051610140810182526006546001600160a01b0316808252602080830191909152600f546001600160601b03600160601b8204811684860152166060808401919091528385015160808085019190915284518086018652600b548152600c548185015260a08086019190915285518087018752600d548152600e548186015260c08601529189015160e085015288015161010084015287015161012083015291519293508892610514920161141e565b604051602081830303815290604052975097505050505050509091565b600854604051639cdaa7f960e01b81526000916001600160a01b031690639cdaa7f99061056c9089908b908a908a9089908b90600401611821565b60a060405180830381865afa158015610589573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ad9190611878565b50929a9950505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561061f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064391906118b8565b1561068a576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166106b35760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156106fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072091906118b8565b610748576040516372657a5160e01b81526001600160a01b0382166004820152602401610681565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b691906118d3565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60006107f36001546001600160a01b031690565b600954604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e906024015b602060405180830381865afa15801561083d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086191906118d3565b905090565b61086e6109cb565b6001600160a01b0316336001600160a01b0316146108a15760405163700dd81160e01b8152336004820152602401610681565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af415801561091d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094191906118b8565b61098d5760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c7265616479207365740000000000006044820152606401610681565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b60006109c2600a866118f0565b95945050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610a30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5491906118b8565b15610ad457600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610ab0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108619190611912565b506002546001600160a01b031690565b610aec6109cb565b6001600160a01b0316336001600160a01b031614610b1f5760405163700dd81160e01b8152336004820152602401610681565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b158015610b6557600080fd5b505af1158015610b79573d6000803e3d6000fd5b50505050565b610b876109cb565b6001600160a01b0316336001600160a01b031614610bba5760405163700dd81160e01b8152336004820152602401610681565b600854604051635b5a095d60e11b81526001600160a01b039091169063b6b412ba90610bec908590859060040161192f565b600060405180830381600087803b158015610c0657600080fd5b505af1158015610c1a573d6000803e3d6000fd5b505050505050565b610ccc604080516101408101825260008082526020808301829052828401829052606083018290528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e08401528351808501855282815280820183905261010084015283518085019094528184528301529061012082015290565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190611912565b9050806001600160a01b03166390af7064610d656001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161020060405180830381865afa158015610daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dce9190611955565b91505090565b6000610de86001546001600160a01b031690565b600a54604051636939560f60e11b81526001600160a01b03918216600482015291169063d272ac1e90602401610820565b610e216109cb565b6001600160a01b0316336001600160a01b031614610e545760405163700dd81160e01b8152336004820152602401610681565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610b4b565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610f0b6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610f536109cb565b6001600160a01b03168152602001826001018054610f7090611a26565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90611a26565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b60006020828403121561101c57600080fd5b81356001600160e01b03198116811461103457600080fd5b9392505050565b60005b8381101561105657818101518382015260200161103e565b50506000910152565b6000815180845261107781602086016020860161103b565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516110cf60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261111561012084018261105f565b905082810360208401526109c2818561105f565b6001600160c01b03198116811461113f57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff8111828210171561117b5761117b611142565b60405290565b60405160e0810167ffffffffffffffff8111828210171561117b5761117b611142565b604051610100810167ffffffffffffffff8111828210171561117b5761117b611142565b604051610140810167ffffffffffffffff8111828210171561117b5761117b611142565b604051601f8201601f1916810167ffffffffffffffff8111828210171561121557611215611142565b604052919050565b600067ffffffffffffffff82111561123757611237611142565b50601f01601f191660200190565b600082601f83011261125657600080fd5b81356112696112648261121d565b6111ec565b81815284602083860101111561127e57600080fd5b816020850160208301376000918101602001919091529392505050565b6001600160601b038116811461113f57600080fd5b60008060008060008060c087890312156112c957600080fd5b8635955060208701356112db81611129565b945060408701359350606087013567ffffffffffffffff8111156112fe57600080fd5b61130a89828a01611245565b935050608087013561131b81611129565b915060a087013561132b8161129b565b809150509295509295509295565b60006020828403121561134b57600080fd5b81356110348161129b565b6000806000806080858703121561136c57600080fd5b84359350602085013561137e81611129565b925060408501359150606085013567ffffffffffffffff8111156113a157600080fd5b6113ad87828801611245565b91505092959194509250565b6000604082840312156113cb57600080fd5b6113d3611158565b9050813581526020820135602082015292915050565b600080608083850312156113fc57600080fd5b61140684846113b9565b915061141584604085016113b9565b90509250929050565b81516001600160a01b031681526102008101602083015161144a60208401826001600160a01b03169052565b50604083015161146560408401826001600160601b03169052565b50606083015161148060608401826001600160601b03169052565b50608083015161149d608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006114d38185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a08501526101209094015180516101c0850152909301516101e090920191909152919050565b805161152e8161129b565b919050565b805160ff8116811461152e57600080fd5b8051801515811461152e57600080fd5b6001600160a01b038116811461113f57600080fd5b805161152e81611554565b600082601f83011261158557600080fd5b81516115936112648261121d565b8181528460208386010111156115a857600080fd5b6115b982602083016020870161103b565b949350505050565b600080604083850312156115d457600080fd5b825167ffffffffffffffff808211156115ec57600080fd5b9084019060e0828703121561160057600080fd5b611608611181565b61161183611523565b815261161f60208401611523565b602082015261163060408401611533565b604082015261164160608401611544565b606082015261165260808401611569565b608082015261166360a08401611569565b60a082015260c08301518281111561167a57600080fd5b61168688828601611574565b60c08301525060208601519094509150808211156116a357600080fd5b506116b085828601611574565b9150509250929050565b6000604082840312156116cc57600080fd5b6116d4611158565b9050815181526020820151602082015292915050565b600061016082840312156116fd57600080fd5b6117056111a4565b61170e83611523565b815261171c60208401611569565b60208201526040830151604082015261173884606085016116ba565b606082015261174a8460a085016116ba565b608082015261175c8460e085016116ba565b60a082015261176e6101208401611544565b60c08201526117806101408401611569565b60e08201529392505050565b600060c0828403121561179e57600080fd5b60405160a0810181811067ffffffffffffffff821117156117c1576117c1611142565b60405282516117cf8161129b565b815260208301516117df81611554565b60208201526117f184604085016116ba565b604082015261180260808401611544565b606082015260a083015161181581611554565b60808201529392505050565b600067ffffffffffffffff60c01b808916835287602084015286604084015260c0606084015261185460c084018761105f565b6001600160601b039590951660808401529290921660a09091015250949350505050565b600080600080600060a0868803121561189057600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b6000602082840312156118ca57600080fd5b61103482611544565b6000602082840312156118e557600080fd5b81516110348161129b565b60008261190d57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561192457600080fd5b815161103481611554565b825181526020808401518183015282516040830152820151606082015260808101611034565b6000610200828403121561196857600080fd5b6119706111c8565b61197983611569565b815261198760208401611569565b602082015261199860408401611523565b60408201526119a960608401611523565b60608201526119bb84608085016116ba565b60808201526119cd8460c085016116ba565b60a08201526101006119e1858286016116ba565b60c08301526119f48561014086016116ba565b60e0830152611a078561018086016116ba565b90820152611a19846101c085016116ba565b6101208201529392505050565b600181811c90821680611a3a57607f821691505b602082108103611a5a57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122004dddcdb612c2e1f7780ac8547681c3c651a0c7753d7520092240181de23f22d64736f6c63430008140033",
         
     | 
| 
       683 
     | 
    
         
            -
             
     | 
| 
       684 
     | 
    
         
            -
             
     | 
| 
       685 
     | 
    
         
            -
                  " 
     | 
| 
      
 993 
     | 
    
         
            +
                },
         
     | 
| 
      
 994 
     | 
    
         
            +
                {
         
     | 
| 
      
 995 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 996 
     | 
    
         
            +
                  "name": "lock",
         
     | 
| 
      
 997 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 998 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 999 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1000 
     | 
    
         
            +
                },
         
     | 
| 
      
 1001 
     | 
    
         
            +
                {
         
     | 
| 
      
 1002 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       686 
1003 
     | 
    
         
             
                    {
         
     | 
| 
       687 
     | 
    
         
            -
                      " 
     | 
| 
       688 
     | 
    
         
            -
                      " 
     | 
| 
      
 1004 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1005 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       689 
1007 
     | 
    
         
             
                    },
         
     | 
| 
       690 
1008 
     | 
    
         
             
                    {
         
     | 
| 
       691 
     | 
    
         
            -
                      " 
     | 
| 
       692 
     | 
    
         
            -
                      " 
     | 
| 
      
 1009 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1010 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 1011 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1012 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1013 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1014 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
      
 1015 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1016 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1017 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1018 
     | 
    
         
            +
                },
         
     | 
| 
      
 1019 
     | 
    
         
            +
                {
         
     | 
| 
      
 1020 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1021 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1022 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1023 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 1024 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1025 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1026 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1027 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1028 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 1029 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       693 
1030 
     | 
    
         
             
                    },
         
     | 
| 
       694 
1031 
     | 
    
         
             
                    {
         
     | 
| 
       695 
     | 
    
         
            -
                      " 
     | 
| 
       696 
     | 
    
         
            -
                      " 
     | 
| 
      
 1032 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1033 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 1034 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       697 
1035 
     | 
    
         
             
                    }
         
     | 
| 
       698 
     | 
    
         
            -
                  ]
         
     | 
| 
       699 
     | 
    
         
            -
             
     | 
| 
       700 
     | 
    
         
            -
             
     | 
| 
       701 
     | 
    
         
            -
             
     | 
| 
       702 
     | 
    
         
            -
             
     | 
| 
       703 
     | 
    
         
            -
             
     | 
| 
      
 1036 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1037 
     | 
    
         
            +
                  "name": "nftTransferFrom",
         
     | 
| 
      
 1038 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1039 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1040 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1041 
     | 
    
         
            +
                },
         
     | 
| 
      
 1042 
     | 
    
         
            +
                {
         
     | 
| 
      
 1043 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       704 
1044 
     | 
    
         
             
                    {
         
     | 
| 
       705 
     | 
    
         
            -
                      " 
     | 
| 
       706 
     | 
    
         
            -
                      " 
     | 
| 
       707 
     | 
    
         
            -
             
     | 
| 
      
 1045 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1046 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 1047 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1048 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1049 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1050 
     | 
    
         
            +
                  "name": "registerInterface",
         
     | 
| 
      
 1051 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1052 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1053 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1054 
     | 
    
         
            +
                },
         
     | 
| 
      
 1055 
     | 
    
         
            +
                {
         
     | 
| 
      
 1056 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       708 
1057 
     | 
    
         
             
                    {
         
     | 
| 
       709 
     | 
    
         
            -
                      " 
     | 
| 
       710 
     | 
    
         
            -
                      " 
     | 
| 
      
 1058 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1059 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 1060 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1061 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1062 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1063 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 1064 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1065 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1066 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1067 
     | 
    
         
            +
                },
         
     | 
| 
      
 1068 
     | 
    
         
            +
                {
         
     | 
| 
      
 1069 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1070 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1071 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1072 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1073 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1074 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 1075 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1076 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1077 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1078 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1079 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 1080 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1081 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1082 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1083 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 1084 
     | 
    
         
            +
                      "name": "productFee",
         
     | 
| 
      
 1085 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
       711 
1086 
     | 
    
         
             
                    },
         
     | 
| 
       712 
1087 
     | 
    
         
             
                    {
         
     | 
| 
       713 
     | 
    
         
            -
                      " 
     | 
| 
       714 
     | 
    
         
            -
             
     | 
| 
      
 1088 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1089 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1090 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1091 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 1092 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1093 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1094 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1095 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1096 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 1097 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1098 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1099 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1100 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 1101 
     | 
    
         
            +
                      "name": "processingFee",
         
     | 
| 
      
 1102 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1103 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1104 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1105 
     | 
    
         
            +
                  "name": "setFees",
         
     | 
| 
      
 1106 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1107 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1108 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1109 
     | 
    
         
            +
                },
         
     | 
| 
      
 1110 
     | 
    
         
            +
                {
         
     | 
| 
      
 1111 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1112 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1113 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1114 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 1115 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       715 
1116 
     | 
    
         
             
                    }
         
     | 
| 
       716 
     | 
    
         
            -
                  ]
         
     | 
| 
      
 1117 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1118 
     | 
    
         
            +
                  "name": "setProductNftId",
         
     | 
| 
      
 1119 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1120 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1121 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1122 
     | 
    
         
            +
                },
         
     | 
| 
      
 1123 
     | 
    
         
            +
                {
         
     | 
| 
      
 1124 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1125 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1126 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1127 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 1128 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1129 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1130 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1131 
     | 
    
         
            +
                  "name": "setWallet",
         
     | 
| 
      
 1132 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1133 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1134 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1135 
     | 
    
         
            +
                },
         
     | 
| 
      
 1136 
     | 
    
         
            +
                {
         
     | 
| 
      
 1137 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1138 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1139 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1140 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 1141 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1142 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1143 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1144 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 1145 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1146 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1147 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1148 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1149 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1150 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1151 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1152 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1153 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1154 
     | 
    
         
            +
                },
         
     | 
| 
      
 1155 
     | 
    
         
            +
                {
         
     | 
| 
      
 1156 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1157 
     | 
    
         
            +
                  "name": "unlock",
         
     | 
| 
      
 1158 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1159 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1160 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       717 
1161 
     | 
    
         
             
                }
         
     | 
| 
       718 
     | 
    
         
            -
               
     | 
| 
      
 1162 
     | 
    
         
            +
              ],
         
     | 
| 
      
 1163 
     | 
    
         
            +
              "bytecode": "0x",
         
     | 
| 
      
 1164 
     | 
    
         
            +
              "deployedBytecode": "0x",
         
     | 
| 
      
 1165 
     | 
    
         
            +
              "linkReferences": {},
         
     | 
| 
      
 1166 
     | 
    
         
            +
              "deployedLinkReferences": {}
         
     | 
| 
       719 
1167 
     | 
    
         
             
            }
         
     |