@etherisc/gif-next 0.0.2-e922e07-736 → 0.0.2-e964d24-516
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 +6 -83
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +129 -14
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1556 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +780 -0
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +203 -14
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +110 -283
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +68 -54
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +309 -2078
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +183 -76
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +434 -2823
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +493 -129
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +406 -192
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +224 -291
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +45 -82
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
 - 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 +44 -14
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +38 -13
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +56 -73
 - 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/pool/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1288 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +696 -0
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +291 -189
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +231 -165
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1077 -0
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
 - package/artifacts/contracts/{components → pool}/Pool.sol/Pool.json +160 -204
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1622 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +708 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +918 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +648 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1376 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +748 -0
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → product/IApplicationService.sol/IApplicationService.json} +184 -100
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +743 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IPolicyService.sol/IPolicyService.json +211 -100
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +120 -166
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +210 -21
 - package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +86 -28
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1281 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +740 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +1004 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +688 -0
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
 - package/artifacts/contracts/{components → product}/Product.sol/Product.json +121 -22
 - package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductService.sol/ProductService.json +864 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +640 -0
 - 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 +19 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +5 -37
 - 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 +35 -16
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +4 -4
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +26 -53
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +27 -40
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +30 -18
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +14 -27
 - package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/Component.sol/Component.json +106 -7
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/ComponentService.sol/ComponentService.json +114 -35
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +196 -7
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +0 -13
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +85 -27
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +8 -21
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +20 -33
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +8 -21
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +91 -28
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -6
 - 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/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +523 -0
 - package/artifacts/contracts/staking/StakeingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakeingServiceManager.sol/StakingServiceManager.json +628 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +767 -0
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
 - package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Amount.sol/AmountLib.json +281 -0
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Blocknumber.sol/BlocknumberLib.json +3 -3
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/DistributorType.sol/DistributorTypeLib.json +5 -5
 - package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Key32.sol/Key32Lib.json +3 -3
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +166 -0
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/NftIdSet.sol/LibNftIdSet.json +3 -3
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/ObjectType.sol/ObjectTypeLib.json +3 -3
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Referral.sol/ReferralLib.json +5 -5
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/RiskId.sol/RiskIdLib.json +5 -5
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/RoleId.sol/RoleIdLib.json +5 -5
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Seconds.sol/SecondsLib.json +3 -3
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +20 -7
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/UFixed.sol/MathLib.json +3 -3
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/UFixed.sol/UFixedLib.json +3 -3
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Version.sol/VersionLib.json +3 -3
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Version.sol/VersionPartLib.json +3 -3
 - package/contracts/{components → distribution}/Distribution.sol +21 -16
 - package/contracts/distribution/DistributionService.sol +348 -0
 - package/contracts/{instance/service → distribution}/DistributionServiceManager.sol +5 -5
 - package/contracts/{components → distribution}/IDistributionComponent.sol +7 -7
 - package/contracts/{instance/service → distribution}/IDistributionService.sol +19 -30
 - package/contracts/instance/BundleManager.sol +13 -12
 - package/contracts/instance/Cloneable.sol +7 -2
 - package/contracts/instance/IInstance.sol +48 -63
 - package/contracts/instance/IInstanceService.sol +31 -17
 - package/contracts/instance/Instance.sol +131 -193
 - package/contracts/instance/InstanceAccessManager.sol +405 -161
 - package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
 - package/contracts/instance/InstanceReader.sol +101 -26
 - package/contracts/instance/InstanceService.sol +173 -354
 - package/contracts/instance/InstanceServiceManager.sol +1 -1
 - package/contracts/instance/InstanceStore.sol +211 -0
 - package/contracts/instance/ObjectManager.sol +9 -11
 - package/contracts/instance/base/IKeyValueStore.sol +5 -5
 - package/contracts/instance/base/ILifecycle.sol +3 -3
 - package/contracts/instance/base/KeyValueStore.sol +18 -41
 - package/contracts/instance/base/Lifecycle.sol +27 -7
 - package/contracts/instance/module/IAccess.sol +23 -16
 - package/contracts/instance/module/IBundle.sol +10 -8
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +7 -6
 - package/contracts/instance/module/IPolicy.sol +19 -14
 - package/contracts/instance/module/IRisk.sol +1 -1
 - package/contracts/instance/module/ISetup.sol +5 -18
 - package/contracts/instance/module/ITreasury.sol +2 -2
 - package/contracts/pool/BundleService.sol +382 -0
 - package/contracts/{instance/service → pool}/BundleServiceManager.sol +5 -5
 - package/contracts/pool/IBundleService.sol +118 -0
 - package/contracts/{components → pool}/IPoolComponent.sol +19 -56
 - package/contracts/pool/IPoolService.sol +114 -0
 - package/contracts/{components → pool}/Pool.sol +62 -138
 - package/contracts/pool/PoolService.sol +403 -0
 - package/contracts/{instance/service → pool}/PoolServiceManager.sol +5 -5
 - package/contracts/product/ApplicationService.sol +186 -0
 - package/contracts/{instance/service → product}/ApplicationServiceManager.sol +2 -2
 - package/contracts/product/ClaimService.sol +437 -0
 - package/contracts/{instance/service → product}/ClaimServiceManager.sol +2 -2
 - package/contracts/{instance/service → product}/IApplicationService.sol +14 -34
 - package/contracts/product/IClaimService.sol +90 -0
 - package/contracts/{instance/service → product}/IPolicyService.sol +34 -26
 - package/contracts/product/IPricingService.sol +37 -0
 - package/contracts/{components → product}/IProductComponent.sol +11 -10
 - package/contracts/{instance/service → product}/IProductService.sol +10 -10
 - package/contracts/product/PolicyService.sol +376 -0
 - package/contracts/{instance/service → product}/PolicyServiceManager.sol +5 -5
 - package/contracts/product/PricingService.sol +275 -0
 - package/contracts/product/PricingServiceManager.sol +51 -0
 - package/contracts/{components → product}/Product.sol +160 -74
 - package/contracts/product/ProductService.sol +210 -0
 - package/contracts/{instance/service → product}/ProductServiceManager.sol +5 -5
 - package/contracts/registry/ChainNft.sol +8 -0
 - package/contracts/registry/IRegistry.sol +6 -4
 - package/contracts/registry/IRegistryService.sol +6 -7
 - package/contracts/registry/ITransferInterceptor.sol +1 -0
 - package/contracts/registry/Registry.sol +26 -23
 - package/contracts/registry/RegistryAccessManager.sol +1 -1
 - package/contracts/registry/RegistryService.sol +33 -31
 - package/contracts/registry/RegistryServiceManager.sol +0 -2
 - package/contracts/registry/ReleaseManager.sol +24 -22
 - package/contracts/registry/TokenRegistry.sol +2 -2
 - package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/{components → shared}/Component.sol +68 -18
 - package/contracts/shared/ComponentService.sol +150 -0
 - package/contracts/{components → shared}/IComponent.sol +28 -6
 - package/contracts/shared/INftOwnable.sol +1 -1
 - package/contracts/shared/IPolicyHolder.sol +24 -10
 - package/contracts/shared/IRegistryLinked.sol +0 -1
 - package/contracts/shared/IService.sol +6 -6
 - package/contracts/shared/IVersionable.sol +1 -1
 - package/contracts/shared/NftOwnable.sol +1 -3
 - package/contracts/shared/PolicyHolder.sol +31 -18
 - package/contracts/shared/ProxyManager.sol +3 -3
 - package/contracts/shared/Registerable.sol +12 -11
 - package/contracts/shared/RegistryLinked.sol +0 -5
 - package/contracts/shared/Service.sol +23 -9
 - package/contracts/shared/TokenHandler.sol +14 -6
 - package/contracts/shared/Versionable.sol +1 -1
 - package/contracts/staking/IStakingService.sol +102 -0
 - package/contracts/staking/StakeingServiceManager.sol +37 -0
 - package/contracts/staking/StakingService.sol +166 -0
 - package/contracts/type/Amount.sol +109 -0
 - package/contracts/{types → type}/Blocknumber.sol +1 -0
 - package/contracts/{types → type}/ClaimId.sol +25 -2
 - package/contracts/{types → type}/Fee.sol +17 -8
 - package/contracts/{types → type}/NftId.sol +8 -0
 - package/contracts/{types → type}/NftIdSet.sol +1 -1
 - package/contracts/{types → type}/ObjectType.sol +10 -5
 - package/contracts/{types → type}/PayoutId.sol +33 -5
 - package/contracts/{types → type}/RoleId.sol +6 -4
 - package/contracts/{types → type}/StateId.sol +7 -2
 - package/contracts/{types → type}/Timestamp.sol +6 -0
 - package/contracts/{types → type}/UFixed.sol +1 -0
 - package/contracts/{types → type}/Version.sol +1 -0
 - package/package.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -968
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1096
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1724
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -801
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -347
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1021
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -727
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -649
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
 - package/artifacts/contracts/test/TestService.sol/TestService.json +0 -521
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
 - package/contracts/instance/base/ComponentService.sol +0 -134
 - package/contracts/instance/service/ApplicationService.sol +0 -349
 - package/contracts/instance/service/BundleService.sol +0 -299
 - package/contracts/instance/service/ClaimService.sol +0 -151
 - package/contracts/instance/service/DistributionService.sol +0 -450
 - package/contracts/instance/service/IBundleService.sol +0 -55
 - package/contracts/instance/service/IClaimService.sol +0 -61
 - package/contracts/instance/service/IPoolService.sol +0 -20
 - package/contracts/instance/service/PolicyService.sol +0 -394
 - package/contracts/instance/service/PoolService.sol +0 -109
 - package/contracts/instance/service/ProductService.sol +0 -233
 - package/contracts/shared/ContractDeployerLib.sol +0 -72
 - package/contracts/test/TestFee.sol +0 -25
 - package/contracts/test/TestRegisterable.sol +0 -18
 - package/contracts/test/TestRoleId.sol +0 -14
 - package/contracts/test/TestService.sol +0 -25
 - package/contracts/test/TestToken.sol +0 -26
 - package/contracts/test/TestVersion.sol +0 -44
 - package/contracts/test/TestVersionable.sol +0 -17
 - package/contracts/test/Usdc.sol +0 -26
 - package/contracts/types/ChainId.sol +0 -38
 - package/contracts/types/NumberId.sol +0 -52
 - /package/contracts/{types → type}/AddressSet.sol +0 -0
 - /package/contracts/{types → type}/DistributorType.sol +0 -0
 - /package/contracts/{types → type}/Key32.sol +0 -0
 - /package/contracts/{types → type}/Referral.sol +0 -0
 - /package/contracts/{types → type}/RiskId.sol +0 -0
 - /package/contracts/{types → type}/Seconds.sol +0 -0
 
| 
         @@ -44,237 +44,237 @@ 
     | 
|
| 
       44 
44 
     | 
    
         
             
                {
         
     | 
| 
       45 
45 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       46 
46 
     | 
    
         
             
                    {
         
     | 
| 
       47 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       48 
     | 
    
         
            -
                      "name": " 
     | 
| 
       49 
     | 
    
         
            -
                      "type": " 
     | 
| 
       50 
     | 
    
         
            -
                    } 
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "instanceBundleManager",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorInstanceBundleManagerAlreadySet",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       51 
57 
     | 
    
         
             
                    {
         
     | 
| 
       52 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       53 
     | 
    
         
            -
                      "name": " 
     | 
| 
       54 
     | 
    
         
            -
                      "type": " 
     | 
| 
       55 
     | 
    
         
            -
                    } 
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "instanceAuthority",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    }
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "ErrorInstanceBundleManagerAuthorityMismatch",
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 65 
     | 
    
         
            +
                },
         
     | 
| 
      
 66 
     | 
    
         
            +
                {
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       56 
68 
     | 
    
         
             
                    {
         
     | 
| 
       57 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       58 
     | 
    
         
            -
                      "name": " 
     | 
| 
       59 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 69 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       60 
72 
     | 
    
         
             
                    }
         
     | 
| 
       61 
73 
     | 
    
         
             
                  ],
         
     | 
| 
       62 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 74 
     | 
    
         
            +
                  "name": "ErrorInstanceBundleManagerInstanceMismatch",
         
     | 
| 
       63 
75 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       64 
76 
     | 
    
         
             
                },
         
     | 
| 
       65 
77 
     | 
    
         
             
                {
         
     | 
| 
       66 
78 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       67 
79 
     | 
    
         
             
                    {
         
     | 
| 
       68 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       69 
     | 
    
         
            -
                      "name": " 
     | 
| 
       70 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 80 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "name": "instanceAccessManager",
         
     | 
| 
      
 82 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       71 
83 
     | 
    
         
             
                    }
         
     | 
| 
       72 
84 
     | 
    
         
             
                  ],
         
     | 
| 
       73 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 85 
     | 
    
         
            +
                  "name": "ErrorInstanceInstanceAccessManagerAlreadySet",
         
     | 
| 
       74 
86 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       75 
87 
     | 
    
         
             
                },
         
     | 
| 
       76 
88 
     | 
    
         
             
                {
         
     | 
| 
       77 
89 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       78 
90 
     | 
    
         
             
                    {
         
     | 
| 
       79 
91 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       80 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 92 
     | 
    
         
            +
                      "name": "instanceAuthority",
         
     | 
| 
       81 
93 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       82 
94 
     | 
    
         
             
                    }
         
     | 
| 
       83 
95 
     | 
    
         
             
                  ],
         
     | 
| 
       84 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 96 
     | 
    
         
            +
                  "name": "ErrorInstanceInstanceAccessManagerAuthorityMismatch",
         
     | 
| 
       85 
97 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       86 
98 
     | 
    
         
             
                },
         
     | 
| 
       87 
99 
     | 
    
         
             
                {
         
     | 
| 
       88 
100 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       89 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 101 
     | 
    
         
            +
                  "name": "ErrorInstanceInstanceAccessManagerZero",
         
     | 
| 
       90 
102 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       91 
103 
     | 
    
         
             
                },
         
     | 
| 
       92 
104 
     | 
    
         
             
                {
         
     | 
| 
       93 
105 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       94 
106 
     | 
    
         
             
                    {
         
     | 
| 
       95 
107 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       96 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 108 
     | 
    
         
            +
                      "name": "instanceAuthority",
         
     | 
| 
       97 
109 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       98 
110 
     | 
    
         
             
                    }
         
     | 
| 
       99 
111 
     | 
    
         
             
                  ],
         
     | 
| 
       100 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 112 
     | 
    
         
            +
                  "name": "ErrorInstanceInstanceReaderInstanceMismatch",
         
     | 
| 
       101 
113 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       102 
114 
     | 
    
         
             
                },
         
     | 
| 
       103 
115 
     | 
    
         
             
                {
         
     | 
| 
       104 
116 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       105 
117 
     | 
    
         
             
                    {
         
     | 
| 
       106 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       107 
     | 
    
         
            -
                      "name": " 
     | 
| 
       108 
     | 
    
         
            -
                      "type": " 
     | 
| 
       109 
     | 
    
         
            -
                    },
         
     | 
| 
       110 
     | 
    
         
            -
                    {
         
     | 
| 
       111 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       112 
     | 
    
         
            -
                      "name": "objectType",
         
     | 
| 
       113 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "name": "instanceStore",
         
     | 
| 
      
 120 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       114 
121 
     | 
    
         
             
                    }
         
     | 
| 
       115 
122 
     | 
    
         
             
                  ],
         
     | 
| 
       116 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 123 
     | 
    
         
            +
                  "name": "ErrorInstanceInstanceStoreAlreadySet",
         
     | 
| 
       117 
124 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       118 
125 
     | 
    
         
             
                },
         
     | 
| 
       119 
126 
     | 
    
         
             
                {
         
     | 
| 
       120 
127 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       121 
128 
     | 
    
         
             
                    {
         
     | 
| 
       122 
129 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       123 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 130 
     | 
    
         
            +
                      "name": "instanceAuthority",
         
     | 
| 
       124 
131 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       125 
132 
     | 
    
         
             
                    }
         
     | 
| 
       126 
133 
     | 
    
         
             
                  ],
         
     | 
| 
       127 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 134 
     | 
    
         
            +
                  "name": "ErrorInstanceInstanceStoreAuthorityMismatch",
         
     | 
| 
      
 135 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 136 
     | 
    
         
            +
                },
         
     | 
| 
      
 137 
     | 
    
         
            +
                {
         
     | 
| 
      
 138 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 139 
     | 
    
         
            +
                    {
         
     | 
| 
      
 140 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 141 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 142 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 143 
     | 
    
         
            +
                    }
         
     | 
| 
      
 144 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 145 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
       128 
146 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       129 
147 
     | 
    
         
             
                },
         
     | 
| 
       130 
148 
     | 
    
         
             
                {
         
     | 
| 
       131 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       132 
149 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       133 
150 
     | 
    
         
             
                    {
         
     | 
| 
       134 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       135 
151 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       136 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 152 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
       137 
153 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       138 
154 
     | 
    
         
             
                    }
         
     | 
| 
       139 
155 
     | 
    
         
             
                  ],
         
     | 
| 
       140 
     | 
    
         
            -
                  "name": " 
     | 
| 
       141 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 156 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 157 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 158 
     | 
    
         
            +
                },
         
     | 
| 
      
 159 
     | 
    
         
            +
                {
         
     | 
| 
      
 160 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 161 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 162 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
       142 
163 
     | 
    
         
             
                },
         
     | 
| 
       143 
164 
     | 
    
         
             
                {
         
     | 
| 
       144 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       145 
165 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       146 
166 
     | 
    
         
             
                    {
         
     | 
| 
       147 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       148 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       149 
     | 
    
         
            -
                      "name": "objectType",
         
     | 
| 
       150 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       151 
     | 
    
         
            -
                    },
         
     | 
| 
       152 
     | 
    
         
            -
                    {
         
     | 
| 
       153 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       154 
     | 
    
         
            -
                      "internalType": "KeyId",
         
     | 
| 
       155 
     | 
    
         
            -
                      "name": "keyId",
         
     | 
| 
       156 
     | 
    
         
            -
                      "type": "bytes31"
         
     | 
| 
       157 
     | 
    
         
            -
                    },
         
     | 
| 
       158 
     | 
    
         
            -
                    {
         
     | 
| 
       159 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       160 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       161 
     | 
    
         
            -
                      "name": "state",
         
     | 
| 
       162 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       163 
     | 
    
         
            -
                    },
         
     | 
| 
       164 
     | 
    
         
            -
                    {
         
     | 
| 
       165 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       166 
167 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       167 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 168 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
       168 
169 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       169 
     | 
    
         
            -
                    } 
     | 
| 
      
 170 
     | 
    
         
            +
                    }
         
     | 
| 
      
 171 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 172 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 173 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 174 
     | 
    
         
            +
                },
         
     | 
| 
      
 175 
     | 
    
         
            +
                {
         
     | 
| 
      
 176 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       170 
177 
     | 
    
         
             
                    {
         
     | 
| 
       171 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       172 
178 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       173 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 179 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
       174 
180 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       175 
181 
     | 
    
         
             
                    }
         
     | 
| 
       176 
182 
     | 
    
         
             
                  ],
         
     | 
| 
       177 
     | 
    
         
            -
                  "name": " 
     | 
| 
       178 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 183 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 184 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
       179 
185 
     | 
    
         
             
                },
         
     | 
| 
       180 
186 
     | 
    
         
             
                {
         
     | 
| 
       181 
187 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       182 
188 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       183 
     | 
    
         
            -
                    {
         
     | 
| 
       184 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       185 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       186 
     | 
    
         
            -
                      "name": "objectType",
         
     | 
| 
       187 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       188 
     | 
    
         
            -
                    },
         
     | 
| 
       189 
     | 
    
         
            -
                    {
         
     | 
| 
       190 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       191 
     | 
    
         
            -
                      "internalType": "KeyId",
         
     | 
| 
       192 
     | 
    
         
            -
                      "name": "keyId",
         
     | 
| 
       193 
     | 
    
         
            -
                      "type": "bytes31"
         
     | 
| 
       194 
     | 
    
         
            -
                    },
         
     | 
| 
       195 
     | 
    
         
            -
                    {
         
     | 
| 
       196 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       197 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       198 
     | 
    
         
            -
                      "name": "state",
         
     | 
| 
       199 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       200 
     | 
    
         
            -
                    },
         
     | 
| 
       201 
189 
     | 
    
         
             
                    {
         
     | 
| 
       202 
190 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       203 
191 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       204 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 192 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
       205 
193 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       206 
     | 
    
         
            -
                    } 
     | 
| 
      
 194 
     | 
    
         
            +
                    }
         
     | 
| 
      
 195 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 197 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 198 
     | 
    
         
            +
                },
         
     | 
| 
      
 199 
     | 
    
         
            +
                {
         
     | 
| 
      
 200 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 201 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 202 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       207 
203 
     | 
    
         
             
                    {
         
     | 
| 
       208 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       209 
204 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       210 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 205 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       211 
206 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       212 
     | 
    
         
            -
                    },
         
     | 
| 
       213 
     | 
    
         
            -
                    {
         
     | 
| 
       214 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       215 
     | 
    
         
            -
                      "internalType": "Blocknumber",
         
     | 
| 
       216 
     | 
    
         
            -
                      "name": "lastUpdatedIn",
         
     | 
| 
       217 
     | 
    
         
            -
                      "type": "uint32"
         
     | 
| 
       218 
207 
     | 
    
         
             
                    }
         
     | 
| 
       219 
208 
     | 
    
         
             
                  ],
         
     | 
| 
       220 
     | 
    
         
            -
                  " 
     | 
| 
       221 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 209 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 210 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       222 
211 
     | 
    
         
             
                },
         
     | 
| 
       223 
212 
     | 
    
         
             
                {
         
     | 
| 
       224 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       225 
213 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       226 
214 
     | 
    
         
             
                    {
         
     | 
| 
       227 
     | 
    
         
            -
                      " 
     | 
| 
       228 
     | 
    
         
            -
                      " 
     | 
| 
       229 
     | 
    
         
            -
                      " 
     | 
| 
       230 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
      
 215 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 216 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
      
 217 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       231 
218 
     | 
    
         
             
                    },
         
     | 
| 
       232 
219 
     | 
    
         
             
                    {
         
     | 
| 
       233 
     | 
    
         
            -
                      " 
     | 
| 
       234 
     | 
    
         
            -
                      " 
     | 
| 
       235 
     | 
    
         
            -
                      " 
     | 
| 
       236 
     | 
    
         
            -
             
     | 
| 
       237 
     | 
    
         
            -
             
     | 
| 
      
 220 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 221 
     | 
    
         
            +
                      "name": "adminName",
         
     | 
| 
      
 222 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 223 
     | 
    
         
            +
                    }
         
     | 
| 
      
 224 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "name": "createRole",
         
     | 
| 
      
 226 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       238 
227 
     | 
    
         
             
                    {
         
     | 
| 
       239 
     | 
    
         
            -
                      " 
     | 
| 
       240 
     | 
    
         
            -
                      " 
     | 
| 
       241 
     | 
    
         
            -
                      " 
     | 
| 
       242 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
      
 228 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 230 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       243 
231 
     | 
    
         
             
                    },
         
     | 
| 
       244 
232 
     | 
    
         
             
                    {
         
     | 
| 
       245 
     | 
    
         
            -
                      " 
     | 
| 
       246 
     | 
    
         
            -
                      " 
     | 
| 
       247 
     | 
    
         
            -
                      " 
     | 
| 
       248 
     | 
    
         
            -
             
     | 
| 
       249 
     | 
    
         
            -
             
     | 
| 
      
 233 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 234 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 235 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 236 
     | 
    
         
            +
                    }
         
     | 
| 
      
 237 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 238 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 239 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 240 
     | 
    
         
            +
                },
         
     | 
| 
      
 241 
     | 
    
         
            +
                {
         
     | 
| 
      
 242 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       250 
243 
     | 
    
         
             
                    {
         
     | 
| 
       251 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       252 
244 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       253 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 245 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
       254 
246 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       255 
247 
     | 
    
         
             
                    },
         
     | 
| 
       256 
248 
     | 
    
         
             
                    {
         
     | 
| 
       257 
     | 
    
         
            -
                      " 
     | 
| 
       258 
     | 
    
         
            -
                      " 
     | 
| 
       259 
     | 
    
         
            -
                      " 
     | 
| 
       260 
     | 
    
         
            -
             
     | 
| 
       261 
     | 
    
         
            -
             
     | 
| 
      
 249 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 250 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 251 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 252 
     | 
    
         
            +
                    }
         
     | 
| 
      
 253 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 254 
     | 
    
         
            +
                  "name": "createTarget",
         
     | 
| 
      
 255 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 256 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 257 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 258 
     | 
    
         
            +
                },
         
     | 
| 
      
 259 
     | 
    
         
            +
                {
         
     | 
| 
      
 260 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 261 
     | 
    
         
            +
                  "name": "getBundleManager",
         
     | 
| 
      
 262 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       262 
263 
     | 
    
         
             
                    {
         
     | 
| 
       263 
     | 
    
         
            -
                      " 
     | 
| 
       264 
     | 
    
         
            -
                      " 
     | 
| 
       265 
     | 
    
         
            -
                      " 
     | 
| 
       266 
     | 
    
         
            -
                      "type": "uint32"
         
     | 
| 
      
 264 
     | 
    
         
            +
                      "internalType": "contract BundleManager",
         
     | 
| 
      
 265 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 266 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       267 
267 
     | 
    
         
             
                    }
         
     | 
| 
       268 
268 
     | 
    
         
             
                  ],
         
     | 
| 
       269 
     | 
    
         
            -
                  " 
     | 
| 
       270 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 269 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 270 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       271 
271 
     | 
    
         
             
                },
         
     | 
| 
       272 
272 
     | 
    
         
             
                {
         
     | 
| 
       273 
273 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       274 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 274 
     | 
    
         
            +
                  "name": "getBundleService",
         
     | 
| 
       275 
275 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       276 
276 
     | 
    
         
             
                    {
         
     | 
| 
       277 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 277 
     | 
    
         
            +
                      "internalType": "contract IBundleService",
         
     | 
| 
       278 
278 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       279 
279 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       280 
280 
     | 
    
         
             
                    }
         
     | 
| 
         @@ -283,1877 +283,232 @@ 
     | 
|
| 
       283 
283 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       284 
284 
     | 
    
         
             
                },
         
     | 
| 
       285 
285 
     | 
    
         
             
                {
         
     | 
| 
       286 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 286 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 287 
     | 
    
         
            +
                  "name": "getDistributionService",
         
     | 
| 
      
 288 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       287 
289 
     | 
    
         
             
                    {
         
     | 
| 
       288 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       289 
     | 
    
         
            -
                      "name": " 
     | 
| 
       290 
     | 
    
         
            -
                      "type": " 
     | 
| 
       291 
     | 
    
         
            -
                    } 
     | 
| 
      
 290 
     | 
    
         
            +
                      "internalType": "contract IDistributionService",
         
     | 
| 
      
 291 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 292 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 293 
     | 
    
         
            +
                    }
         
     | 
| 
      
 294 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 296 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 297 
     | 
    
         
            +
                },
         
     | 
| 
      
 298 
     | 
    
         
            +
                {
         
     | 
| 
      
 299 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 300 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 301 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       292 
302 
     | 
    
         
             
                    {
         
     | 
| 
       293 
303 
     | 
    
         
             
                      "components": [
         
     | 
| 
       294 
304 
     | 
    
         
             
                        {
         
     | 
| 
       295 
305 
     | 
    
         
             
                          "internalType": "NftId",
         
     | 
| 
       296 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 306 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
       297 
307 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       298 
308 
     | 
    
         
             
                        },
         
     | 
| 
       299 
309 
     | 
    
         
             
                        {
         
     | 
| 
       300 
310 
     | 
    
         
             
                          "internalType": "NftId",
         
     | 
| 
       301 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 311 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
       302 
312 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       303 
313 
     | 
    
         
             
                        },
         
     | 
| 
       304 
314 
     | 
    
         
             
                        {
         
     | 
| 
       305 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       306 
     | 
    
         
            -
                          "name": " 
     | 
| 
       307 
     | 
    
         
            -
                          "type": " 
     | 
| 
       308 
     | 
    
         
            -
                        },
         
     | 
| 
       309 
     | 
    
         
            -
                        {
         
     | 
| 
       310 
     | 
    
         
            -
                          "internalType": "RiskId",
         
     | 
| 
       311 
     | 
    
         
            -
                          "name": "riskId",
         
     | 
| 
       312 
     | 
    
         
            -
                          "type": "bytes8"
         
     | 
| 
       313 
     | 
    
         
            -
                        },
         
     | 
| 
       314 
     | 
    
         
            -
                        {
         
     | 
| 
       315 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       316 
     | 
    
         
            -
                          "name": "sumInsuredAmount",
         
     | 
| 
       317 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       318 
     | 
    
         
            -
                        },
         
     | 
| 
       319 
     | 
    
         
            -
                        {
         
     | 
| 
       320 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       321 
     | 
    
         
            -
                          "name": "premiumAmount",
         
     | 
| 
       322 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
      
 315 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 316 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 317 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
       323 
318 
     | 
    
         
             
                        },
         
     | 
| 
       324 
319 
     | 
    
         
             
                        {
         
     | 
| 
       325 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       326 
     | 
    
         
            -
                          "name": " 
     | 
| 
       327 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 320 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 321 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 322 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
       328 
323 
     | 
    
         
             
                        },
         
     | 
| 
       329 
324 
     | 
    
         
             
                        {
         
     | 
| 
       330 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       331 
     | 
    
         
            -
                          "name": " 
     | 
| 
       332 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 325 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 326 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 327 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
       333 
328 
     | 
    
         
             
                        },
         
     | 
| 
       334 
329 
     | 
    
         
             
                        {
         
     | 
| 
       335 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       336 
     | 
    
         
            -
                          "name": " 
     | 
| 
       337 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 330 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 331 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 332 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
       338 
333 
     | 
    
         
             
                        },
         
     | 
| 
       339 
334 
     | 
    
         
             
                        {
         
     | 
| 
       340 
335 
     | 
    
         
             
                          "internalType": "bytes",
         
     | 
| 
       341 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 336 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
       342 
337 
     | 
    
         
             
                          "type": "bytes"
         
     | 
| 
       343 
     | 
    
         
            -
                        },
         
     | 
| 
       344 
     | 
    
         
            -
                        {
         
     | 
| 
       345 
     | 
    
         
            -
                          "internalType": "uint16",
         
     | 
| 
       346 
     | 
    
         
            -
                          "name": "claimsCount",
         
     | 
| 
       347 
     | 
    
         
            -
                          "type": "uint16"
         
     | 
| 
       348 
     | 
    
         
            -
                        },
         
     | 
| 
       349 
     | 
    
         
            -
                        {
         
     | 
| 
       350 
     | 
    
         
            -
                          "internalType": "uint16",
         
     | 
| 
       351 
     | 
    
         
            -
                          "name": "openClaimsCount",
         
     | 
| 
       352 
     | 
    
         
            -
                          "type": "uint16"
         
     | 
| 
       353 
     | 
    
         
            -
                        },
         
     | 
| 
       354 
     | 
    
         
            -
                        {
         
     | 
| 
       355 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       356 
     | 
    
         
            -
                          "name": "payoutAmount",
         
     | 
| 
       357 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       358 
     | 
    
         
            -
                        },
         
     | 
| 
       359 
     | 
    
         
            -
                        {
         
     | 
| 
       360 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       361 
     | 
    
         
            -
                          "name": "activatedAt",
         
     | 
| 
       362 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       363 
     | 
    
         
            -
                        },
         
     | 
| 
       364 
     | 
    
         
            -
                        {
         
     | 
| 
       365 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       366 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       367 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       368 
     | 
    
         
            -
                        },
         
     | 
| 
       369 
     | 
    
         
            -
                        {
         
     | 
| 
       370 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       371 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       372 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       373 
338 
     | 
    
         
             
                        }
         
     | 
| 
       374 
339 
     | 
    
         
             
                      ],
         
     | 
| 
       375 
     | 
    
         
            -
                      "internalType": "struct  
     | 
| 
       376 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 340 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 341 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       377 
342 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       378 
343 
     | 
    
         
             
                    }
         
     | 
| 
       379 
344 
     | 
    
         
             
                  ],
         
     | 
| 
       380 
     | 
    
         
            -
                  " 
     | 
| 
       381 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       382 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 345 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       383 
346 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       384 
347 
     | 
    
         
             
                },
         
     | 
| 
       385 
348 
     | 
    
         
             
                {
         
     | 
| 
       386 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 349 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 350 
     | 
    
         
            +
                  "name": "getInstanceAccessManager",
         
     | 
| 
      
 351 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       387 
352 
     | 
    
         
             
                    {
         
     | 
| 
       388 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       389 
     | 
    
         
            -
                      "name": " 
     | 
| 
       390 
     | 
    
         
            -
                      "type": " 
     | 
| 
       391 
     | 
    
         
            -
                    } 
     | 
| 
      
 353 
     | 
    
         
            +
                      "internalType": "contract InstanceAccessManager",
         
     | 
| 
      
 354 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 355 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 356 
     | 
    
         
            +
                    }
         
     | 
| 
      
 357 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 358 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 359 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 360 
     | 
    
         
            +
                },
         
     | 
| 
      
 361 
     | 
    
         
            +
                {
         
     | 
| 
      
 362 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 363 
     | 
    
         
            +
                  "name": "getInstanceReader",
         
     | 
| 
      
 364 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       392 
365 
     | 
    
         
             
                    {
         
     | 
| 
       393 
     | 
    
         
            -
                      " 
     | 
| 
       394 
     | 
    
         
            -
             
     | 
| 
       395 
     | 
    
         
            -
             
     | 
| 
       396 
     | 
    
         
            -
                          "name": "poolNftId",
         
     | 
| 
       397 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       398 
     | 
    
         
            -
                        },
         
     | 
| 
       399 
     | 
    
         
            -
                        {
         
     | 
| 
       400 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       401 
     | 
    
         
            -
                            {
         
     | 
| 
       402 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       403 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       404 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       405 
     | 
    
         
            -
                            },
         
     | 
| 
       406 
     | 
    
         
            -
                            {
         
     | 
| 
       407 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       408 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       409 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       410 
     | 
    
         
            -
                            }
         
     | 
| 
       411 
     | 
    
         
            -
                          ],
         
     | 
| 
       412 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       413 
     | 
    
         
            -
                          "name": "fee",
         
     | 
| 
       414 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       415 
     | 
    
         
            -
                        },
         
     | 
| 
       416 
     | 
    
         
            -
                        {
         
     | 
| 
       417 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       418 
     | 
    
         
            -
                          "name": "filter",
         
     | 
| 
       419 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       420 
     | 
    
         
            -
                        },
         
     | 
| 
       421 
     | 
    
         
            -
                        {
         
     | 
| 
       422 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       423 
     | 
    
         
            -
                          "name": "capitalAmount",
         
     | 
| 
       424 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       425 
     | 
    
         
            -
                        },
         
     | 
| 
       426 
     | 
    
         
            -
                        {
         
     | 
| 
       427 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       428 
     | 
    
         
            -
                          "name": "lockedAmount",
         
     | 
| 
       429 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       430 
     | 
    
         
            -
                        },
         
     | 
| 
       431 
     | 
    
         
            -
                        {
         
     | 
| 
       432 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       433 
     | 
    
         
            -
                          "name": "balanceAmount",
         
     | 
| 
       434 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       435 
     | 
    
         
            -
                        },
         
     | 
| 
       436 
     | 
    
         
            -
                        {
         
     | 
| 
       437 
     | 
    
         
            -
                          "internalType": "Seconds",
         
     | 
| 
       438 
     | 
    
         
            -
                          "name": "lifetime",
         
     | 
| 
       439 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       440 
     | 
    
         
            -
                        },
         
     | 
| 
       441 
     | 
    
         
            -
                        {
         
     | 
| 
       442 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       443 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       444 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       445 
     | 
    
         
            -
                        },
         
     | 
| 
       446 
     | 
    
         
            -
                        {
         
     | 
| 
       447 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       448 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       449 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       450 
     | 
    
         
            -
                        }
         
     | 
| 
       451 
     | 
    
         
            -
                      ],
         
     | 
| 
       452 
     | 
    
         
            -
                      "internalType": "struct IBundle.BundleInfo",
         
     | 
| 
       453 
     | 
    
         
            -
                      "name": "bundle",
         
     | 
| 
       454 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       455 
     | 
    
         
            -
                    }
         
     | 
| 
       456 
     | 
    
         
            -
                  ],
         
     | 
| 
       457 
     | 
    
         
            -
                  "name": "createBundle",
         
     | 
| 
       458 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       459 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       460 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       461 
     | 
    
         
            -
                },
         
     | 
| 
       462 
     | 
    
         
            -
                {
         
     | 
| 
       463 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       464 
     | 
    
         
            -
                    {
         
     | 
| 
       465 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       466 
     | 
    
         
            -
                      "name": "distributionNftId",
         
     | 
| 
       467 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       468 
     | 
    
         
            -
                    },
         
     | 
| 
       469 
     | 
    
         
            -
                    {
         
     | 
| 
       470 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       471 
     | 
    
         
            -
                        {
         
     | 
| 
       472 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       473 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       474 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       475 
     | 
    
         
            -
                        },
         
     | 
| 
       476 
     | 
    
         
            -
                        {
         
     | 
| 
       477 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       478 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       479 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       480 
     | 
    
         
            -
                        },
         
     | 
| 
       481 
     | 
    
         
            -
                        {
         
     | 
| 
       482 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       483 
     | 
    
         
            -
                            {
         
     | 
| 
       484 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       485 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       486 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       487 
     | 
    
         
            -
                            },
         
     | 
| 
       488 
     | 
    
         
            -
                            {
         
     | 
| 
       489 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       490 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       491 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       492 
     | 
    
         
            -
                            }
         
     | 
| 
       493 
     | 
    
         
            -
                          ],
         
     | 
| 
       494 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       495 
     | 
    
         
            -
                          "name": "minDistributionOwnerFee",
         
     | 
| 
       496 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       497 
     | 
    
         
            -
                        },
         
     | 
| 
       498 
     | 
    
         
            -
                        {
         
     | 
| 
       499 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       500 
     | 
    
         
            -
                            {
         
     | 
| 
       501 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       502 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       503 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       504 
     | 
    
         
            -
                            },
         
     | 
| 
       505 
     | 
    
         
            -
                            {
         
     | 
| 
       506 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       507 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       508 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       509 
     | 
    
         
            -
                            }
         
     | 
| 
       510 
     | 
    
         
            -
                          ],
         
     | 
| 
       511 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       512 
     | 
    
         
            -
                          "name": "distributionFee",
         
     | 
| 
       513 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       514 
     | 
    
         
            -
                        },
         
     | 
| 
       515 
     | 
    
         
            -
                        {
         
     | 
| 
       516 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       517 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       518 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       519 
     | 
    
         
            -
                        },
         
     | 
| 
       520 
     | 
    
         
            -
                        {
         
     | 
| 
       521 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       522 
     | 
    
         
            -
                          "name": "sumDistributionOwnerFees",
         
     | 
| 
       523 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       524 
     | 
    
         
            -
                        }
         
     | 
| 
       525 
     | 
    
         
            -
                      ],
         
     | 
| 
       526 
     | 
    
         
            -
                      "internalType": "struct ISetup.DistributionSetupInfo",
         
     | 
| 
       527 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       528 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       529 
     | 
    
         
            -
                    }
         
     | 
| 
       530 
     | 
    
         
            -
                  ],
         
     | 
| 
       531 
     | 
    
         
            -
                  "name": "createDistributionSetup",
         
     | 
| 
       532 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       533 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       534 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       535 
     | 
    
         
            -
                },
         
     | 
| 
       536 
     | 
    
         
            -
                {
         
     | 
| 
       537 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       538 
     | 
    
         
            -
                    {
         
     | 
| 
       539 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       540 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       541 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       542 
     | 
    
         
            -
                    },
         
     | 
| 
       543 
     | 
    
         
            -
                    {
         
     | 
| 
       544 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       545 
     | 
    
         
            -
                        {
         
     | 
| 
       546 
     | 
    
         
            -
                          "internalType": "DistributorType",
         
     | 
| 
       547 
     | 
    
         
            -
                          "name": "distributorType",
         
     | 
| 
       548 
     | 
    
         
            -
                          "type": "bytes8"
         
     | 
| 
       549 
     | 
    
         
            -
                        },
         
     | 
| 
       550 
     | 
    
         
            -
                        {
         
     | 
| 
       551 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       552 
     | 
    
         
            -
                          "name": "active",
         
     | 
| 
       553 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       554 
     | 
    
         
            -
                        },
         
     | 
| 
       555 
     | 
    
         
            -
                        {
         
     | 
| 
       556 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       557 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       558 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       559 
     | 
    
         
            -
                        },
         
     | 
| 
       560 
     | 
    
         
            -
                        {
         
     | 
| 
       561 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       562 
     | 
    
         
            -
                          "name": "sumCommisions",
         
     | 
| 
       563 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       564 
     | 
    
         
            -
                        },
         
     | 
| 
       565 
     | 
    
         
            -
                        {
         
     | 
| 
       566 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       567 
     | 
    
         
            -
                          "name": "numPoliciesSold",
         
     | 
| 
       568 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       569 
     | 
    
         
            -
                        }
         
     | 
| 
       570 
     | 
    
         
            -
                      ],
         
     | 
| 
       571 
     | 
    
         
            -
                      "internalType": "struct IDistribution.DistributorInfo",
         
     | 
| 
       572 
     | 
    
         
            -
                      "name": "info",
         
     | 
| 
       573 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       574 
     | 
    
         
            -
                    }
         
     | 
| 
       575 
     | 
    
         
            -
                  ],
         
     | 
| 
       576 
     | 
    
         
            -
                  "name": "createDistributor",
         
     | 
| 
       577 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       578 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       579 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       580 
     | 
    
         
            -
                },
         
     | 
| 
       581 
     | 
    
         
            -
                {
         
     | 
| 
       582 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       583 
     | 
    
         
            -
                    {
         
     | 
| 
       584 
     | 
    
         
            -
                      "internalType": "Key32",
         
     | 
| 
       585 
     | 
    
         
            -
                      "name": "distributorKey",
         
     | 
| 
       586 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       587 
     | 
    
         
            -
                    },
         
     | 
| 
       588 
     | 
    
         
            -
                    {
         
     | 
| 
       589 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       590 
     | 
    
         
            -
                        {
         
     | 
| 
       591 
     | 
    
         
            -
                          "internalType": "string",
         
     | 
| 
       592 
     | 
    
         
            -
                          "name": "name",
         
     | 
| 
       593 
     | 
    
         
            -
                          "type": "string"
         
     | 
| 
       594 
     | 
    
         
            -
                        },
         
     | 
| 
       595 
     | 
    
         
            -
                        {
         
     | 
| 
       596 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       597 
     | 
    
         
            -
                          "name": "minDiscountPercentage",
         
     | 
| 
       598 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       599 
     | 
    
         
            -
                        },
         
     | 
| 
       600 
     | 
    
         
            -
                        {
         
     | 
| 
       601 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       602 
     | 
    
         
            -
                          "name": "maxDiscountPercentage",
         
     | 
| 
       603 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       604 
     | 
    
         
            -
                        },
         
     | 
| 
       605 
     | 
    
         
            -
                        {
         
     | 
| 
       606 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       607 
     | 
    
         
            -
                          "name": "commissionPercentage",
         
     | 
| 
       608 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       609 
     | 
    
         
            -
                        },
         
     | 
| 
       610 
     | 
    
         
            -
                        {
         
     | 
| 
       611 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       612 
     | 
    
         
            -
                          "name": "maxReferralCount",
         
     | 
| 
       613 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       614 
     | 
    
         
            -
                        },
         
     | 
| 
       615 
     | 
    
         
            -
                        {
         
     | 
| 
       616 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       617 
     | 
    
         
            -
                          "name": "maxReferralLifetime",
         
     | 
| 
       618 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       619 
     | 
    
         
            -
                        },
         
     | 
| 
       620 
     | 
    
         
            -
                        {
         
     | 
| 
       621 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       622 
     | 
    
         
            -
                          "name": "allowSelfReferrals",
         
     | 
| 
       623 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       624 
     | 
    
         
            -
                        },
         
     | 
| 
       625 
     | 
    
         
            -
                        {
         
     | 
| 
       626 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       627 
     | 
    
         
            -
                          "name": "allowRenewals",
         
     | 
| 
       628 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       629 
     | 
    
         
            -
                        },
         
     | 
| 
       630 
     | 
    
         
            -
                        {
         
     | 
| 
       631 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       632 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       633 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       634 
     | 
    
         
            -
                        }
         
     | 
| 
       635 
     | 
    
         
            -
                      ],
         
     | 
| 
       636 
     | 
    
         
            -
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         
     | 
| 
       637 
     | 
    
         
            -
                      "name": "info",
         
     | 
| 
       638 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       639 
     | 
    
         
            -
                    }
         
     | 
| 
       640 
     | 
    
         
            -
                  ],
         
     | 
| 
       641 
     | 
    
         
            -
                  "name": "createDistributorType",
         
     | 
| 
       642 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       643 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       644 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       645 
     | 
    
         
            -
                },
         
     | 
| 
       646 
     | 
    
         
            -
                {
         
     | 
| 
       647 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       648 
     | 
    
         
            -
                    {
         
     | 
| 
       649 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       650 
     | 
    
         
            -
                      "name": "poolNftId",
         
     | 
| 
       651 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       652 
     | 
    
         
            -
                    },
         
     | 
| 
       653 
     | 
    
         
            -
                    {
         
     | 
| 
       654 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       655 
     | 
    
         
            -
                        {
         
     | 
| 
       656 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       657 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       658 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       659 
     | 
    
         
            -
                        },
         
     | 
| 
       660 
     | 
    
         
            -
                        {
         
     | 
| 
       661 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       662 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       663 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       664 
     | 
    
         
            -
                        },
         
     | 
| 
       665 
     | 
    
         
            -
                        {
         
     | 
| 
       666 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       667 
     | 
    
         
            -
                          "name": "maxCapitalAmount",
         
     | 
| 
       668 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       669 
     | 
    
         
            -
                        },
         
     | 
| 
       670 
     | 
    
         
            -
                        {
         
     | 
| 
       671 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       672 
     | 
    
         
            -
                          "name": "isInterceptingBundleTransfers",
         
     | 
| 
       673 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       674 
     | 
    
         
            -
                        },
         
     | 
| 
       675 
     | 
    
         
            -
                        {
         
     | 
| 
       676 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       677 
     | 
    
         
            -
                          "name": "isExternallyManaged",
         
     | 
| 
       678 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       679 
     | 
    
         
            -
                        },
         
     | 
| 
       680 
     | 
    
         
            -
                        {
         
     | 
| 
       681 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       682 
     | 
    
         
            -
                          "name": "isVerifyingApplications",
         
     | 
| 
       683 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       684 
     | 
    
         
            -
                        },
         
     | 
| 
       685 
     | 
    
         
            -
                        {
         
     | 
| 
       686 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       687 
     | 
    
         
            -
                          "name": "collateralizationLevel",
         
     | 
| 
       688 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       689 
     | 
    
         
            -
                        },
         
     | 
| 
       690 
     | 
    
         
            -
                        {
         
     | 
| 
       691 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       692 
     | 
    
         
            -
                          "name": "retentionLevel",
         
     | 
| 
       693 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       694 
     | 
    
         
            -
                        },
         
     | 
| 
       695 
     | 
    
         
            -
                        {
         
     | 
| 
       696 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       697 
     | 
    
         
            -
                            {
         
     | 
| 
       698 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       699 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       700 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       701 
     | 
    
         
            -
                            },
         
     | 
| 
       702 
     | 
    
         
            -
                            {
         
     | 
| 
       703 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       704 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       705 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       706 
     | 
    
         
            -
                            }
         
     | 
| 
       707 
     | 
    
         
            -
                          ],
         
     | 
| 
       708 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       709 
     | 
    
         
            -
                          "name": "poolFee",
         
     | 
| 
       710 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       711 
     | 
    
         
            -
                        },
         
     | 
| 
       712 
     | 
    
         
            -
                        {
         
     | 
| 
       713 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       714 
     | 
    
         
            -
                            {
         
     | 
| 
       715 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       716 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       717 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       718 
     | 
    
         
            -
                            },
         
     | 
| 
       719 
     | 
    
         
            -
                            {
         
     | 
| 
       720 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       721 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       722 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       723 
     | 
    
         
            -
                            }
         
     | 
| 
       724 
     | 
    
         
            -
                          ],
         
     | 
| 
       725 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       726 
     | 
    
         
            -
                          "name": "stakingFee",
         
     | 
| 
       727 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       728 
     | 
    
         
            -
                        },
         
     | 
| 
       729 
     | 
    
         
            -
                        {
         
     | 
| 
       730 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       731 
     | 
    
         
            -
                            {
         
     | 
| 
       732 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       733 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       734 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       735 
     | 
    
         
            -
                            },
         
     | 
| 
       736 
     | 
    
         
            -
                            {
         
     | 
| 
       737 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       738 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       739 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       740 
     | 
    
         
            -
                            }
         
     | 
| 
       741 
     | 
    
         
            -
                          ],
         
     | 
| 
       742 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       743 
     | 
    
         
            -
                          "name": "performanceFee",
         
     | 
| 
       744 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       745 
     | 
    
         
            -
                        },
         
     | 
| 
       746 
     | 
    
         
            -
                        {
         
     | 
| 
       747 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       748 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       749 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       750 
     | 
    
         
            -
                        }
         
     | 
| 
       751 
     | 
    
         
            -
                      ],
         
     | 
| 
       752 
     | 
    
         
            -
                      "internalType": "struct ISetup.PoolSetupInfo",
         
     | 
| 
       753 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       754 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       755 
     | 
    
         
            -
                    }
         
     | 
| 
       756 
     | 
    
         
            -
                  ],
         
     | 
| 
       757 
     | 
    
         
            -
                  "name": "createPoolSetup",
         
     | 
| 
       758 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       759 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       760 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       761 
     | 
    
         
            -
                },
         
     | 
| 
       762 
     | 
    
         
            -
                {
         
     | 
| 
       763 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       764 
     | 
    
         
            -
                    {
         
     | 
| 
       765 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       766 
     | 
    
         
            -
                      "name": "productNftId",
         
     | 
| 
       767 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       768 
     | 
    
         
            -
                    },
         
     | 
| 
       769 
     | 
    
         
            -
                    {
         
     | 
| 
       770 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       771 
     | 
    
         
            -
                        {
         
     | 
| 
       772 
     | 
    
         
            -
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
       773 
     | 
    
         
            -
                          "name": "token",
         
     | 
| 
       774 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       775 
     | 
    
         
            -
                        },
         
     | 
| 
       776 
     | 
    
         
            -
                        {
         
     | 
| 
       777 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       778 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       779 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       780 
     | 
    
         
            -
                        },
         
     | 
| 
       781 
     | 
    
         
            -
                        {
         
     | 
| 
       782 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       783 
     | 
    
         
            -
                          "name": "distributionNftId",
         
     | 
| 
       784 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       785 
     | 
    
         
            -
                        },
         
     | 
| 
       786 
     | 
    
         
            -
                        {
         
     | 
| 
       787 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       788 
     | 
    
         
            -
                          "name": "poolNftId",
         
     | 
| 
       789 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       790 
     | 
    
         
            -
                        },
         
     | 
| 
       791 
     | 
    
         
            -
                        {
         
     | 
| 
       792 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       793 
     | 
    
         
            -
                            {
         
     | 
| 
       794 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       795 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       796 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       797 
     | 
    
         
            -
                            },
         
     | 
| 
       798 
     | 
    
         
            -
                            {
         
     | 
| 
       799 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       800 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       801 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       802 
     | 
    
         
            -
                            }
         
     | 
| 
       803 
     | 
    
         
            -
                          ],
         
     | 
| 
       804 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       805 
     | 
    
         
            -
                          "name": "productFee",
         
     | 
| 
       806 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       807 
     | 
    
         
            -
                        },
         
     | 
| 
       808 
     | 
    
         
            -
                        {
         
     | 
| 
       809 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       810 
     | 
    
         
            -
                            {
         
     | 
| 
       811 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       812 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       813 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       814 
     | 
    
         
            -
                            },
         
     | 
| 
       815 
     | 
    
         
            -
                            {
         
     | 
| 
       816 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       817 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       818 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       819 
     | 
    
         
            -
                            }
         
     | 
| 
       820 
     | 
    
         
            -
                          ],
         
     | 
| 
       821 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       822 
     | 
    
         
            -
                          "name": "processingFee",
         
     | 
| 
       823 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       824 
     | 
    
         
            -
                        },
         
     | 
| 
       825 
     | 
    
         
            -
                        {
         
     | 
| 
       826 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       827 
     | 
    
         
            -
                          "name": "isIntercepting",
         
     | 
| 
       828 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       829 
     | 
    
         
            -
                        },
         
     | 
| 
       830 
     | 
    
         
            -
                        {
         
     | 
| 
       831 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       832 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       833 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       834 
     | 
    
         
            -
                        }
         
     | 
| 
       835 
     | 
    
         
            -
                      ],
         
     | 
| 
       836 
     | 
    
         
            -
                      "internalType": "struct ISetup.ProductSetupInfo",
         
     | 
| 
       837 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       838 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       839 
     | 
    
         
            -
                    }
         
     | 
| 
       840 
     | 
    
         
            -
                  ],
         
     | 
| 
       841 
     | 
    
         
            -
                  "name": "createProductSetup",
         
     | 
| 
       842 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       843 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       844 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       845 
     | 
    
         
            -
                },
         
     | 
| 
       846 
     | 
    
         
            -
                {
         
     | 
| 
       847 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       848 
     | 
    
         
            -
                    {
         
     | 
| 
       849 
     | 
    
         
            -
                      "internalType": "Key32",
         
     | 
| 
       850 
     | 
    
         
            -
                      "name": "referralKey",
         
     | 
| 
       851 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       852 
     | 
    
         
            -
                    },
         
     | 
| 
       853 
     | 
    
         
            -
                    {
         
     | 
| 
       854 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       855 
     | 
    
         
            -
                        {
         
     | 
| 
       856 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       857 
     | 
    
         
            -
                          "name": "distributorNftId",
         
     | 
| 
       858 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       859 
     | 
    
         
            -
                        },
         
     | 
| 
       860 
     | 
    
         
            -
                        {
         
     | 
| 
       861 
     | 
    
         
            -
                          "internalType": "string",
         
     | 
| 
       862 
     | 
    
         
            -
                          "name": "referralCode",
         
     | 
| 
       863 
     | 
    
         
            -
                          "type": "string"
         
     | 
| 
       864 
     | 
    
         
            -
                        },
         
     | 
| 
       865 
     | 
    
         
            -
                        {
         
     | 
| 
       866 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       867 
     | 
    
         
            -
                          "name": "discountPercentage",
         
     | 
| 
       868 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       869 
     | 
    
         
            -
                        },
         
     | 
| 
       870 
     | 
    
         
            -
                        {
         
     | 
| 
       871 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       872 
     | 
    
         
            -
                          "name": "maxReferrals",
         
     | 
| 
       873 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       874 
     | 
    
         
            -
                        },
         
     | 
| 
       875 
     | 
    
         
            -
                        {
         
     | 
| 
       876 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       877 
     | 
    
         
            -
                          "name": "usedReferrals",
         
     | 
| 
       878 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       879 
     | 
    
         
            -
                        },
         
     | 
| 
       880 
     | 
    
         
            -
                        {
         
     | 
| 
       881 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       882 
     | 
    
         
            -
                          "name": "expiryAt",
         
     | 
| 
       883 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       884 
     | 
    
         
            -
                        },
         
     | 
| 
       885 
     | 
    
         
            -
                        {
         
     | 
| 
       886 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       887 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       888 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       889 
     | 
    
         
            -
                        }
         
     | 
| 
       890 
     | 
    
         
            -
                      ],
         
     | 
| 
       891 
     | 
    
         
            -
                      "internalType": "struct IDistribution.ReferralInfo",
         
     | 
| 
       892 
     | 
    
         
            -
                      "name": "referralInfo",
         
     | 
| 
       893 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       894 
     | 
    
         
            -
                    }
         
     | 
| 
       895 
     | 
    
         
            -
                  ],
         
     | 
| 
       896 
     | 
    
         
            -
                  "name": "createReferral",
         
     | 
| 
       897 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       898 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       899 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       900 
     | 
    
         
            -
                },
         
     | 
| 
       901 
     | 
    
         
            -
                {
         
     | 
| 
       902 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       903 
     | 
    
         
            -
                    {
         
     | 
| 
       904 
     | 
    
         
            -
                      "internalType": "RiskId",
         
     | 
| 
       905 
     | 
    
         
            -
                      "name": "riskId",
         
     | 
| 
       906 
     | 
    
         
            -
                      "type": "bytes8"
         
     | 
| 
       907 
     | 
    
         
            -
                    },
         
     | 
| 
       908 
     | 
    
         
            -
                    {
         
     | 
| 
       909 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       910 
     | 
    
         
            -
                        {
         
     | 
| 
       911 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       912 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       913 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       914 
     | 
    
         
            -
                        },
         
     | 
| 
       915 
     | 
    
         
            -
                        {
         
     | 
| 
       916 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       917 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       918 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       919 
     | 
    
         
            -
                        }
         
     | 
| 
       920 
     | 
    
         
            -
                      ],
         
     | 
| 
       921 
     | 
    
         
            -
                      "internalType": "struct IRisk.RiskInfo",
         
     | 
| 
       922 
     | 
    
         
            -
                      "name": "risk",
         
     | 
| 
       923 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       924 
     | 
    
         
            -
                    }
         
     | 
| 
       925 
     | 
    
         
            -
                  ],
         
     | 
| 
       926 
     | 
    
         
            -
                  "name": "createRisk",
         
     | 
| 
       927 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       928 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       929 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       930 
     | 
    
         
            -
                },
         
     | 
| 
       931 
     | 
    
         
            -
                {
         
     | 
| 
       932 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       933 
     | 
    
         
            -
                    {
         
     | 
| 
       934 
     | 
    
         
            -
                      "internalType": "Key32",
         
     | 
| 
       935 
     | 
    
         
            -
                      "name": "key",
         
     | 
| 
       936 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       937 
     | 
    
         
            -
                    }
         
     | 
| 
       938 
     | 
    
         
            -
                  ],
         
     | 
| 
       939 
     | 
    
         
            -
                  "name": "exists",
         
     | 
| 
       940 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       941 
     | 
    
         
            -
                    {
         
     | 
| 
       942 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       943 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       944 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       945 
     | 
    
         
            -
                    }
         
     | 
| 
       946 
     | 
    
         
            -
                  ],
         
     | 
| 
       947 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       948 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       949 
     | 
    
         
            -
                },
         
     | 
| 
       950 
     | 
    
         
            -
                {
         
     | 
| 
       951 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       952 
     | 
    
         
            -
                    {
         
     | 
| 
       953 
     | 
    
         
            -
                      "internalType": "Key32",
         
     | 
| 
       954 
     | 
    
         
            -
                      "name": "key",
         
     | 
| 
       955 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       956 
     | 
    
         
            -
                    }
         
     | 
| 
       957 
     | 
    
         
            -
                  ],
         
     | 
| 
       958 
     | 
    
         
            -
                  "name": "get",
         
     | 
| 
       959 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       960 
     | 
    
         
            -
                    {
         
     | 
| 
       961 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       962 
     | 
    
         
            -
                        {
         
     | 
| 
       963 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       964 
     | 
    
         
            -
                            {
         
     | 
| 
       965 
     | 
    
         
            -
                              "internalType": "ObjectType",
         
     | 
| 
       966 
     | 
    
         
            -
                              "name": "objectType",
         
     | 
| 
       967 
     | 
    
         
            -
                              "type": "uint8"
         
     | 
| 
       968 
     | 
    
         
            -
                            },
         
     | 
| 
       969 
     | 
    
         
            -
                            {
         
     | 
| 
       970 
     | 
    
         
            -
                              "internalType": "StateId",
         
     | 
| 
       971 
     | 
    
         
            -
                              "name": "state",
         
     | 
| 
       972 
     | 
    
         
            -
                              "type": "uint8"
         
     | 
| 
       973 
     | 
    
         
            -
                            },
         
     | 
| 
       974 
     | 
    
         
            -
                            {
         
     | 
| 
       975 
     | 
    
         
            -
                              "internalType": "address",
         
     | 
| 
       976 
     | 
    
         
            -
                              "name": "updatedBy",
         
     | 
| 
       977 
     | 
    
         
            -
                              "type": "address"
         
     | 
| 
       978 
     | 
    
         
            -
                            },
         
     | 
| 
       979 
     | 
    
         
            -
                            {
         
     | 
| 
       980 
     | 
    
         
            -
                              "internalType": "Blocknumber",
         
     | 
| 
       981 
     | 
    
         
            -
                              "name": "updatedIn",
         
     | 
| 
       982 
     | 
    
         
            -
                              "type": "uint32"
         
     | 
| 
       983 
     | 
    
         
            -
                            },
         
     | 
| 
       984 
     | 
    
         
            -
                            {
         
     | 
| 
       985 
     | 
    
         
            -
                              "internalType": "Blocknumber",
         
     | 
| 
       986 
     | 
    
         
            -
                              "name": "createdIn",
         
     | 
| 
       987 
     | 
    
         
            -
                              "type": "uint32"
         
     | 
| 
       988 
     | 
    
         
            -
                            }
         
     | 
| 
       989 
     | 
    
         
            -
                          ],
         
     | 
| 
       990 
     | 
    
         
            -
                          "internalType": "struct IKeyValueStore.Metadata",
         
     | 
| 
       991 
     | 
    
         
            -
                          "name": "metadata",
         
     | 
| 
       992 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       993 
     | 
    
         
            -
                        },
         
     | 
| 
       994 
     | 
    
         
            -
                        {
         
     | 
| 
       995 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       996 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       997 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       998 
     | 
    
         
            -
                        }
         
     | 
| 
       999 
     | 
    
         
            -
                      ],
         
     | 
| 
       1000 
     | 
    
         
            -
                      "internalType": "struct IKeyValueStore.Value",
         
     | 
| 
       1001 
     | 
    
         
            -
                      "name": "value",
         
     | 
| 
       1002 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1003 
     | 
    
         
            -
                    }
         
     | 
| 
       1004 
     | 
    
         
            -
                  ],
         
     | 
| 
       1005 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1006 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1007 
     | 
    
         
            -
                },
         
     | 
| 
       1008 
     | 
    
         
            -
                {
         
     | 
| 
       1009 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1010 
     | 
    
         
            -
                  "name": "getBundleManager",
         
     | 
| 
       1011 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1012 
     | 
    
         
            -
                    {
         
     | 
| 
       1013 
     | 
    
         
            -
                      "internalType": "contract BundleManager",
         
     | 
| 
       1014 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1015 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1016 
     | 
    
         
            -
                    }
         
     | 
| 
       1017 
     | 
    
         
            -
                  ],
         
     | 
| 
       1018 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1019 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1020 
     | 
    
         
            -
                },
         
     | 
| 
       1021 
     | 
    
         
            -
                {
         
     | 
| 
       1022 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1023 
     | 
    
         
            -
                  "name": "getBundleService",
         
     | 
| 
       1024 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1025 
     | 
    
         
            -
                    {
         
     | 
| 
       1026 
     | 
    
         
            -
                      "internalType": "contract IBundleService",
         
     | 
| 
       1027 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1028 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1029 
     | 
    
         
            -
                    }
         
     | 
| 
       1030 
     | 
    
         
            -
                  ],
         
     | 
| 
       1031 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1032 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1033 
     | 
    
         
            -
                },
         
     | 
| 
       1034 
     | 
    
         
            -
                {
         
     | 
| 
       1035 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1036 
     | 
    
         
            -
                    {
         
     | 
| 
       1037 
     | 
    
         
            -
                      "internalType": "Key32",
         
     | 
| 
       1038 
     | 
    
         
            -
                      "name": "key",
         
     | 
| 
       1039 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       1040 
     | 
    
         
            -
                    }
         
     | 
| 
       1041 
     | 
    
         
            -
                  ],
         
     | 
| 
       1042 
     | 
    
         
            -
                  "name": "getData",
         
     | 
| 
       1043 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1044 
     | 
    
         
            -
                    {
         
     | 
| 
       1045 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       1046 
     | 
    
         
            -
                      "name": "data",
         
     | 
| 
       1047 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       1048 
     | 
    
         
            -
                    }
         
     | 
| 
       1049 
     | 
    
         
            -
                  ],
         
     | 
| 
       1050 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1051 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1052 
     | 
    
         
            -
                },
         
     | 
| 
       1053 
     | 
    
         
            -
                {
         
     | 
| 
       1054 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1055 
     | 
    
         
            -
                  "name": "getDistributionService",
         
     | 
| 
       1056 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1057 
     | 
    
         
            -
                    {
         
     | 
| 
       1058 
     | 
    
         
            -
                      "internalType": "contract IDistributionService",
         
     | 
| 
       1059 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1060 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1061 
     | 
    
         
            -
                    }
         
     | 
| 
       1062 
     | 
    
         
            -
                  ],
         
     | 
| 
       1063 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1064 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1065 
     | 
    
         
            -
                },
         
     | 
| 
       1066 
     | 
    
         
            -
                {
         
     | 
| 
       1067 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1068 
     | 
    
         
            -
                  "name": "getInitialInfo",
         
     | 
| 
       1069 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1070 
     | 
    
         
            -
                    {
         
     | 
| 
       1071 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1072 
     | 
    
         
            -
                        {
         
     | 
| 
       1073 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       1074 
     | 
    
         
            -
                          "name": "nftId",
         
     | 
| 
       1075 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       1076 
     | 
    
         
            -
                        },
         
     | 
| 
       1077 
     | 
    
         
            -
                        {
         
     | 
| 
       1078 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       1079 
     | 
    
         
            -
                          "name": "parentNftId",
         
     | 
| 
       1080 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       1081 
     | 
    
         
            -
                        },
         
     | 
| 
       1082 
     | 
    
         
            -
                        {
         
     | 
| 
       1083 
     | 
    
         
            -
                          "internalType": "ObjectType",
         
     | 
| 
       1084 
     | 
    
         
            -
                          "name": "objectType",
         
     | 
| 
       1085 
     | 
    
         
            -
                          "type": "uint8"
         
     | 
| 
       1086 
     | 
    
         
            -
                        },
         
     | 
| 
       1087 
     | 
    
         
            -
                        {
         
     | 
| 
       1088 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       1089 
     | 
    
         
            -
                          "name": "isInterceptor",
         
     | 
| 
       1090 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       1091 
     | 
    
         
            -
                        },
         
     | 
| 
       1092 
     | 
    
         
            -
                        {
         
     | 
| 
       1093 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       1094 
     | 
    
         
            -
                          "name": "objectAddress",
         
     | 
| 
       1095 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       1096 
     | 
    
         
            -
                        },
         
     | 
| 
       1097 
     | 
    
         
            -
                        {
         
     | 
| 
       1098 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       1099 
     | 
    
         
            -
                          "name": "initialOwner",
         
     | 
| 
       1100 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       1101 
     | 
    
         
            -
                        },
         
     | 
| 
       1102 
     | 
    
         
            -
                        {
         
     | 
| 
       1103 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       1104 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       1105 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       1106 
     | 
    
         
            -
                        }
         
     | 
| 
       1107 
     | 
    
         
            -
                      ],
         
     | 
| 
       1108 
     | 
    
         
            -
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
       1109 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1110 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1111 
     | 
    
         
            -
                    }
         
     | 
| 
       1112 
     | 
    
         
            -
                  ],
         
     | 
| 
       1113 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1114 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1115 
     | 
    
         
            -
                },
         
     | 
| 
       1116 
     | 
    
         
            -
                {
         
     | 
| 
       1117 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1118 
     | 
    
         
            -
                    {
         
     | 
| 
       1119 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       1120 
     | 
    
         
            -
                      "name": "objectType",
         
     | 
| 
       1121 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1122 
     | 
    
         
            -
                    }
         
     | 
| 
       1123 
     | 
    
         
            -
                  ],
         
     | 
| 
       1124 
     | 
    
         
            -
                  "name": "getInitialState",
         
     | 
| 
       1125 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1126 
     | 
    
         
            -
                    {
         
     | 
| 
       1127 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       1128 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1129 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1130 
     | 
    
         
            -
                    }
         
     | 
| 
       1131 
     | 
    
         
            -
                  ],
         
     | 
| 
       1132 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1133 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1134 
     | 
    
         
            -
                },
         
     | 
| 
       1135 
     | 
    
         
            -
                {
         
     | 
| 
       1136 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1137 
     | 
    
         
            -
                  "name": "getInstanceReader",
         
     | 
| 
       1138 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1139 
     | 
    
         
            -
                    {
         
     | 
| 
       1140 
     | 
    
         
            -
                      "internalType": "contract InstanceReader",
         
     | 
| 
       1141 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1142 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1143 
     | 
    
         
            -
                    }
         
     | 
| 
       1144 
     | 
    
         
            -
                  ],
         
     | 
| 
       1145 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1146 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1147 
     | 
    
         
            -
                },
         
     | 
| 
       1148 
     | 
    
         
            -
                {
         
     | 
| 
       1149 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1150 
     | 
    
         
            -
                  "name": "getMajorVersion",
         
     | 
| 
       1151 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1152 
     | 
    
         
            -
                    {
         
     | 
| 
       1153 
     | 
    
         
            -
                      "internalType": "VersionPart",
         
     | 
| 
       1154 
     | 
    
         
            -
                      "name": "majorVersion",
         
     | 
| 
       1155 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1156 
     | 
    
         
            -
                    }
         
     | 
| 
       1157 
     | 
    
         
            -
                  ],
         
     | 
| 
       1158 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       1159 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1160 
     | 
    
         
            -
                },
         
     | 
| 
       1161 
     | 
    
         
            -
                {
         
     | 
| 
       1162 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1163 
     | 
    
         
            -
                    {
         
     | 
| 
       1164 
     | 
    
         
            -
                      "internalType": "Key32",
         
     | 
| 
       1165 
     | 
    
         
            -
                      "name": "key",
         
     | 
| 
       1166 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       1167 
     | 
    
         
            -
                    }
         
     | 
| 
       1168 
     | 
    
         
            -
                  ],
         
     | 
| 
       1169 
     | 
    
         
            -
                  "name": "getMetadata",
         
     | 
| 
       1170 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1171 
     | 
    
         
            -
                    {
         
     | 
| 
       1172 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1173 
     | 
    
         
            -
                        {
         
     | 
| 
       1174 
     | 
    
         
            -
                          "internalType": "ObjectType",
         
     | 
| 
       1175 
     | 
    
         
            -
                          "name": "objectType",
         
     | 
| 
       1176 
     | 
    
         
            -
                          "type": "uint8"
         
     | 
| 
       1177 
     | 
    
         
            -
                        },
         
     | 
| 
       1178 
     | 
    
         
            -
                        {
         
     | 
| 
       1179 
     | 
    
         
            -
                          "internalType": "StateId",
         
     | 
| 
       1180 
     | 
    
         
            -
                          "name": "state",
         
     | 
| 
       1181 
     | 
    
         
            -
                          "type": "uint8"
         
     | 
| 
       1182 
     | 
    
         
            -
                        },
         
     | 
| 
       1183 
     | 
    
         
            -
                        {
         
     | 
| 
       1184 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       1185 
     | 
    
         
            -
                          "name": "updatedBy",
         
     | 
| 
       1186 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       1187 
     | 
    
         
            -
                        },
         
     | 
| 
       1188 
     | 
    
         
            -
                        {
         
     | 
| 
       1189 
     | 
    
         
            -
                          "internalType": "Blocknumber",
         
     | 
| 
       1190 
     | 
    
         
            -
                          "name": "updatedIn",
         
     | 
| 
       1191 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       1192 
     | 
    
         
            -
                        },
         
     | 
| 
       1193 
     | 
    
         
            -
                        {
         
     | 
| 
       1194 
     | 
    
         
            -
                          "internalType": "Blocknumber",
         
     | 
| 
       1195 
     | 
    
         
            -
                          "name": "createdIn",
         
     | 
| 
       1196 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       1197 
     | 
    
         
            -
                        }
         
     | 
| 
       1198 
     | 
    
         
            -
                      ],
         
     | 
| 
       1199 
     | 
    
         
            -
                      "internalType": "struct IKeyValueStore.Metadata",
         
     | 
| 
       1200 
     | 
    
         
            -
                      "name": "metadata",
         
     | 
| 
       1201 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1202 
     | 
    
         
            -
                    }
         
     | 
| 
       1203 
     | 
    
         
            -
                  ],
         
     | 
| 
       1204 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1205 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1206 
     | 
    
         
            -
                },
         
     | 
| 
       1207 
     | 
    
         
            -
                {
         
     | 
| 
       1208 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1209 
     | 
    
         
            -
                  "name": "getNftId",
         
     | 
| 
       1210 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1211 
     | 
    
         
            -
                    {
         
     | 
| 
       1212 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       1213 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1214 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1215 
     | 
    
         
            -
                    }
         
     | 
| 
       1216 
     | 
    
         
            -
                  ],
         
     | 
| 
       1217 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1218 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1219 
     | 
    
         
            -
                },
         
     | 
| 
       1220 
     | 
    
         
            -
                {
         
     | 
| 
       1221 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1222 
     | 
    
         
            -
                  "name": "getOwner",
         
     | 
| 
       1223 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1224 
     | 
    
         
            -
                    {
         
     | 
| 
       1225 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       1226 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1227 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1228 
     | 
    
         
            -
                    }
         
     | 
| 
       1229 
     | 
    
         
            -
                  ],
         
     | 
| 
       1230 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1231 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1232 
     | 
    
         
            -
                },
         
     | 
| 
       1233 
     | 
    
         
            -
                {
         
     | 
| 
       1234 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1235 
     | 
    
         
            -
                  "name": "getPolicyService",
         
     | 
| 
       1236 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1237 
     | 
    
         
            -
                    {
         
     | 
| 
       1238 
     | 
    
         
            -
                      "internalType": "contract IPolicyService",
         
     | 
| 
       1239 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1240 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1241 
     | 
    
         
            -
                    }
         
     | 
| 
       1242 
     | 
    
         
            -
                  ],
         
     | 
| 
       1243 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1244 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1245 
     | 
    
         
            -
                },
         
     | 
| 
       1246 
     | 
    
         
            -
                {
         
     | 
| 
       1247 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1248 
     | 
    
         
            -
                  "name": "getPoolService",
         
     | 
| 
       1249 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1250 
     | 
    
         
            -
                    {
         
     | 
| 
       1251 
     | 
    
         
            -
                      "internalType": "contract IPoolService",
         
     | 
| 
       1252 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1253 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1254 
     | 
    
         
            -
                    }
         
     | 
| 
       1255 
     | 
    
         
            -
                  ],
         
     | 
| 
       1256 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1257 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1258 
     | 
    
         
            -
                },
         
     | 
| 
       1259 
     | 
    
         
            -
                {
         
     | 
| 
       1260 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1261 
     | 
    
         
            -
                  "name": "getProductService",
         
     | 
| 
       1262 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1263 
     | 
    
         
            -
                    {
         
     | 
| 
       1264 
     | 
    
         
            -
                      "internalType": "contract IProductService",
         
     | 
| 
       1265 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1266 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1267 
     | 
    
         
            -
                    }
         
     | 
| 
       1268 
     | 
    
         
            -
                  ],
         
     | 
| 
       1269 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1270 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1271 
     | 
    
         
            -
                },
         
     | 
| 
       1272 
     | 
    
         
            -
                {
         
     | 
| 
       1273 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1274 
     | 
    
         
            -
                  "name": "getRegistry",
         
     | 
| 
       1275 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1276 
     | 
    
         
            -
                    {
         
     | 
| 
       1277 
     | 
    
         
            -
                      "internalType": "contract IRegistry",
         
     | 
| 
       1278 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1279 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1280 
     | 
    
         
            -
                    }
         
     | 
| 
       1281 
     | 
    
         
            -
                  ],
         
     | 
| 
       1282 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1283 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1284 
     | 
    
         
            -
                },
         
     | 
| 
       1285 
     | 
    
         
            -
                {
         
     | 
| 
       1286 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1287 
     | 
    
         
            -
                  "name": "getRegistryAddress",
         
     | 
| 
       1288 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1289 
     | 
    
         
            -
                    {
         
     | 
| 
       1290 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       1291 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1292 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1293 
     | 
    
         
            -
                    }
         
     | 
| 
       1294 
     | 
    
         
            -
                  ],
         
     | 
| 
       1295 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1296 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1297 
     | 
    
         
            -
                },
         
     | 
| 
       1298 
     | 
    
         
            -
                {
         
     | 
| 
       1299 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1300 
     | 
    
         
            -
                    {
         
     | 
| 
       1301 
     | 
    
         
            -
                      "internalType": "Key32",
         
     | 
| 
       1302 
     | 
    
         
            -
                      "name": "key",
         
     | 
| 
       1303 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       1304 
     | 
    
         
            -
                    }
         
     | 
| 
       1305 
     | 
    
         
            -
                  ],
         
     | 
| 
       1306 
     | 
    
         
            -
                  "name": "getState",
         
     | 
| 
       1307 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1308 
     | 
    
         
            -
                    {
         
     | 
| 
       1309 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       1310 
     | 
    
         
            -
                      "name": "state",
         
     | 
| 
       1311 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1312 
     | 
    
         
            -
                    }
         
     | 
| 
       1313 
     | 
    
         
            -
                  ],
         
     | 
| 
       1314 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1315 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1316 
     | 
    
         
            -
                },
         
     | 
| 
       1317 
     | 
    
         
            -
                {
         
     | 
| 
       1318 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1319 
     | 
    
         
            -
                    {
         
     | 
| 
       1320 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       1321 
     | 
    
         
            -
                      "name": "objectType",
         
     | 
| 
       1322 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1323 
     | 
    
         
            -
                    }
         
     | 
| 
       1324 
     | 
    
         
            -
                  ],
         
     | 
| 
       1325 
     | 
    
         
            -
                  "name": "hasLifecycle",
         
     | 
| 
       1326 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1327 
     | 
    
         
            -
                    {
         
     | 
| 
       1328 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       1329 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1330 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       1331 
     | 
    
         
            -
                    }
         
     | 
| 
       1332 
     | 
    
         
            -
                  ],
         
     | 
| 
       1333 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1334 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1335 
     | 
    
         
            -
                },
         
     | 
| 
       1336 
     | 
    
         
            -
                {
         
     | 
| 
       1337 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1338 
     | 
    
         
            -
                  "name": "isConsumingScheduledOp",
         
     | 
| 
       1339 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1340 
     | 
    
         
            -
                    {
         
     | 
| 
       1341 
     | 
    
         
            -
                      "internalType": "bytes4",
         
     | 
| 
       1342 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1343 
     | 
    
         
            -
                      "type": "bytes4"
         
     | 
| 
       1344 
     | 
    
         
            -
                    }
         
     | 
| 
       1345 
     | 
    
         
            -
                  ],
         
     | 
| 
       1346 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1347 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1348 
     | 
    
         
            -
                },
         
     | 
| 
       1349 
     | 
    
         
            -
                {
         
     | 
| 
       1350 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1351 
     | 
    
         
            -
                    {
         
     | 
| 
       1352 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       1353 
     | 
    
         
            -
                      "name": "objectType",
         
     | 
| 
       1354 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1355 
     | 
    
         
            -
                    },
         
     | 
| 
       1356 
     | 
    
         
            -
                    {
         
     | 
| 
       1357 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       1358 
     | 
    
         
            -
                      "name": "fromId",
         
     | 
| 
       1359 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1360 
     | 
    
         
            -
                    },
         
     | 
| 
       1361 
     | 
    
         
            -
                    {
         
     | 
| 
       1362 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       1363 
     | 
    
         
            -
                      "name": "toId",
         
     | 
| 
       1364 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1365 
     | 
    
         
            -
                    }
         
     | 
| 
       1366 
     | 
    
         
            -
                  ],
         
     | 
| 
       1367 
     | 
    
         
            -
                  "name": "isValidTransition",
         
     | 
| 
       1368 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1369 
     | 
    
         
            -
                    {
         
     | 
| 
       1370 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       1371 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1372 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       1373 
     | 
    
         
            -
                    }
         
     | 
| 
       1374 
     | 
    
         
            -
                  ],
         
     | 
| 
       1375 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1376 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1377 
     | 
    
         
            -
                },
         
     | 
| 
       1378 
     | 
    
         
            -
                {
         
     | 
| 
       1379 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1380 
     | 
    
         
            -
                  "name": "linkToRegisteredNftId",
         
     | 
| 
       1381 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1382 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       1383 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1384 
     | 
    
         
            -
                },
         
     | 
| 
       1385 
     | 
    
         
            -
                {
         
     | 
| 
       1386 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1387 
     | 
    
         
            -
                    {
         
     | 
| 
       1388 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       1389 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1390 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       1391 
     | 
    
         
            -
                    }
         
     | 
| 
       1392 
     | 
    
         
            -
                  ],
         
     | 
| 
       1393 
     | 
    
         
            -
                  "name": "setAuthority",
         
     | 
| 
       1394 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1395 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       1396 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1397 
     | 
    
         
            -
                },
         
     | 
| 
       1398 
     | 
    
         
            -
                {
         
     | 
| 
       1399 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1400 
     | 
    
         
            -
                    {
         
     | 
| 
       1401 
     | 
    
         
            -
                      "internalType": "bytes4",
         
     | 
| 
       1402 
     | 
    
         
            -
                      "name": "interfaceId",
         
     | 
| 
       1403 
     | 
    
         
            -
                      "type": "bytes4"
         
     | 
| 
       1404 
     | 
    
         
            -
                    }
         
     | 
| 
       1405 
     | 
    
         
            -
                  ],
         
     | 
| 
       1406 
     | 
    
         
            -
                  "name": "supportsInterface",
         
     | 
| 
       1407 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1408 
     | 
    
         
            -
                    {
         
     | 
| 
       1409 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       1410 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1411 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       1412 
     | 
    
         
            -
                    }
         
     | 
| 
       1413 
     | 
    
         
            -
                  ],
         
     | 
| 
       1414 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1415 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1416 
     | 
    
         
            -
                },
         
     | 
| 
       1417 
     | 
    
         
            -
                {
         
     | 
| 
       1418 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1419 
     | 
    
         
            -
                    {
         
     | 
| 
       1420 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       1421 
     | 
    
         
            -
                      "name": "objectType",
         
     | 
| 
       1422 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1423 
     | 
    
         
            -
                    },
         
     | 
| 
       1424 
     | 
    
         
            -
                    {
         
     | 
| 
       1425 
     | 
    
         
            -
                      "internalType": "KeyId",
         
     | 
| 
       1426 
     | 
    
         
            -
                      "name": "id",
         
     | 
| 
       1427 
     | 
    
         
            -
                      "type": "bytes31"
         
     | 
| 
       1428 
     | 
    
         
            -
                    }
         
     | 
| 
       1429 
     | 
    
         
            -
                  ],
         
     | 
| 
       1430 
     | 
    
         
            -
                  "name": "toKey32",
         
     | 
| 
       1431 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1432 
     | 
    
         
            -
                    {
         
     | 
| 
       1433 
     | 
    
         
            -
                      "internalType": "Key32",
         
     | 
| 
       1434 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1435 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       1436 
     | 
    
         
            -
                    }
         
     | 
| 
       1437 
     | 
    
         
            -
                  ],
         
     | 
| 
       1438 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       1439 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1440 
     | 
    
         
            -
                },
         
     | 
| 
       1441 
     | 
    
         
            -
                {
         
     | 
| 
       1442 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1443 
     | 
    
         
            -
                    {
         
     | 
| 
       1444 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       1445 
     | 
    
         
            -
                      "name": "applicationNftId",
         
     | 
| 
       1446 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1447 
     | 
    
         
            -
                    },
         
     | 
| 
       1448 
     | 
    
         
            -
                    {
         
     | 
| 
       1449 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1450 
     | 
    
         
            -
                        {
         
     | 
| 
       1451 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       1452 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       1453 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       1454 
     | 
    
         
            -
                        },
         
     | 
| 
       1455 
     | 
    
         
            -
                        {
         
     | 
| 
       1456 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       1457 
     | 
    
         
            -
                          "name": "bundleNftId",
         
     | 
| 
       1458 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       1459 
     | 
    
         
            -
                        },
         
     | 
| 
       1460 
     | 
    
         
            -
                        {
         
     | 
| 
       1461 
     | 
    
         
            -
                          "internalType": "ReferralId",
         
     | 
| 
       1462 
     | 
    
         
            -
                          "name": "referralId",
         
     | 
| 
       1463 
     | 
    
         
            -
                          "type": "bytes8"
         
     | 
| 
       1464 
     | 
    
         
            -
                        },
         
     | 
| 
       1465 
     | 
    
         
            -
                        {
         
     | 
| 
       1466 
     | 
    
         
            -
                          "internalType": "RiskId",
         
     | 
| 
       1467 
     | 
    
         
            -
                          "name": "riskId",
         
     | 
| 
       1468 
     | 
    
         
            -
                          "type": "bytes8"
         
     | 
| 
       1469 
     | 
    
         
            -
                        },
         
     | 
| 
       1470 
     | 
    
         
            -
                        {
         
     | 
| 
       1471 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1472 
     | 
    
         
            -
                          "name": "sumInsuredAmount",
         
     | 
| 
       1473 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1474 
     | 
    
         
            -
                        },
         
     | 
| 
       1475 
     | 
    
         
            -
                        {
         
     | 
| 
       1476 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1477 
     | 
    
         
            -
                          "name": "premiumAmount",
         
     | 
| 
       1478 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1479 
     | 
    
         
            -
                        },
         
     | 
| 
       1480 
     | 
    
         
            -
                        {
         
     | 
| 
       1481 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1482 
     | 
    
         
            -
                          "name": "premiumPaidAmount",
         
     | 
| 
       1483 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1484 
     | 
    
         
            -
                        },
         
     | 
| 
       1485 
     | 
    
         
            -
                        {
         
     | 
| 
       1486 
     | 
    
         
            -
                          "internalType": "Seconds",
         
     | 
| 
       1487 
     | 
    
         
            -
                          "name": "lifetime",
         
     | 
| 
       1488 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1489 
     | 
    
         
            -
                        },
         
     | 
| 
       1490 
     | 
    
         
            -
                        {
         
     | 
| 
       1491 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       1492 
     | 
    
         
            -
                          "name": "applicationData",
         
     | 
| 
       1493 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       1494 
     | 
    
         
            -
                        },
         
     | 
| 
       1495 
     | 
    
         
            -
                        {
         
     | 
| 
       1496 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       1497 
     | 
    
         
            -
                          "name": "policyData",
         
     | 
| 
       1498 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       1499 
     | 
    
         
            -
                        },
         
     | 
| 
       1500 
     | 
    
         
            -
                        {
         
     | 
| 
       1501 
     | 
    
         
            -
                          "internalType": "uint16",
         
     | 
| 
       1502 
     | 
    
         
            -
                          "name": "claimsCount",
         
     | 
| 
       1503 
     | 
    
         
            -
                          "type": "uint16"
         
     | 
| 
       1504 
     | 
    
         
            -
                        },
         
     | 
| 
       1505 
     | 
    
         
            -
                        {
         
     | 
| 
       1506 
     | 
    
         
            -
                          "internalType": "uint16",
         
     | 
| 
       1507 
     | 
    
         
            -
                          "name": "openClaimsCount",
         
     | 
| 
       1508 
     | 
    
         
            -
                          "type": "uint16"
         
     | 
| 
       1509 
     | 
    
         
            -
                        },
         
     | 
| 
       1510 
     | 
    
         
            -
                        {
         
     | 
| 
       1511 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1512 
     | 
    
         
            -
                          "name": "payoutAmount",
         
     | 
| 
       1513 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1514 
     | 
    
         
            -
                        },
         
     | 
| 
       1515 
     | 
    
         
            -
                        {
         
     | 
| 
       1516 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1517 
     | 
    
         
            -
                          "name": "activatedAt",
         
     | 
| 
       1518 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1519 
     | 
    
         
            -
                        },
         
     | 
| 
       1520 
     | 
    
         
            -
                        {
         
     | 
| 
       1521 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1522 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       1523 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1524 
     | 
    
         
            -
                        },
         
     | 
| 
       1525 
     | 
    
         
            -
                        {
         
     | 
| 
       1526 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1527 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       1528 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1529 
     | 
    
         
            -
                        }
         
     | 
| 
       1530 
     | 
    
         
            -
                      ],
         
     | 
| 
       1531 
     | 
    
         
            -
                      "internalType": "struct IPolicy.PolicyInfo",
         
     | 
| 
       1532 
     | 
    
         
            -
                      "name": "policy",
         
     | 
| 
       1533 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1534 
     | 
    
         
            -
                    },
         
     | 
| 
       1535 
     | 
    
         
            -
                    {
         
     | 
| 
       1536 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       1537 
     | 
    
         
            -
                      "name": "newState",
         
     | 
| 
       1538 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1539 
     | 
    
         
            -
                    }
         
     | 
| 
       1540 
     | 
    
         
            -
                  ],
         
     | 
| 
       1541 
     | 
    
         
            -
                  "name": "updateApplication",
         
     | 
| 
       1542 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1543 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       1544 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1545 
     | 
    
         
            -
                },
         
     | 
| 
       1546 
     | 
    
         
            -
                {
         
     | 
| 
       1547 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1548 
     | 
    
         
            -
                    {
         
     | 
| 
       1549 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       1550 
     | 
    
         
            -
                      "name": "applicationNftId",
         
     | 
| 
       1551 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1552 
     | 
    
         
            -
                    },
         
     | 
| 
       1553 
     | 
    
         
            -
                    {
         
     | 
| 
       1554 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       1555 
     | 
    
         
            -
                      "name": "newState",
         
     | 
| 
       1556 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1557 
     | 
    
         
            -
                    }
         
     | 
| 
       1558 
     | 
    
         
            -
                  ],
         
     | 
| 
       1559 
     | 
    
         
            -
                  "name": "updateApplicationState",
         
     | 
| 
       1560 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1561 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       1562 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1563 
     | 
    
         
            -
                },
         
     | 
| 
       1564 
     | 
    
         
            -
                {
         
     | 
| 
       1565 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1566 
     | 
    
         
            -
                    {
         
     | 
| 
       1567 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       1568 
     | 
    
         
            -
                      "name": "bundleNftId",
         
     | 
| 
       1569 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1570 
     | 
    
         
            -
                    },
         
     | 
| 
       1571 
     | 
    
         
            -
                    {
         
     | 
| 
       1572 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1573 
     | 
    
         
            -
                        {
         
     | 
| 
       1574 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       1575 
     | 
    
         
            -
                          "name": "poolNftId",
         
     | 
| 
       1576 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       1577 
     | 
    
         
            -
                        },
         
     | 
| 
       1578 
     | 
    
         
            -
                        {
         
     | 
| 
       1579 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       1580 
     | 
    
         
            -
                            {
         
     | 
| 
       1581 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       1582 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       1583 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       1584 
     | 
    
         
            -
                            },
         
     | 
| 
       1585 
     | 
    
         
            -
                            {
         
     | 
| 
       1586 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       1587 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       1588 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       1589 
     | 
    
         
            -
                            }
         
     | 
| 
       1590 
     | 
    
         
            -
                          ],
         
     | 
| 
       1591 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       1592 
     | 
    
         
            -
                          "name": "fee",
         
     | 
| 
       1593 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       1594 
     | 
    
         
            -
                        },
         
     | 
| 
       1595 
     | 
    
         
            -
                        {
         
     | 
| 
       1596 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       1597 
     | 
    
         
            -
                          "name": "filter",
         
     | 
| 
       1598 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       1599 
     | 
    
         
            -
                        },
         
     | 
| 
       1600 
     | 
    
         
            -
                        {
         
     | 
| 
       1601 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1602 
     | 
    
         
            -
                          "name": "capitalAmount",
         
     | 
| 
       1603 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1604 
     | 
    
         
            -
                        },
         
     | 
| 
       1605 
     | 
    
         
            -
                        {
         
     | 
| 
       1606 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1607 
     | 
    
         
            -
                          "name": "lockedAmount",
         
     | 
| 
       1608 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1609 
     | 
    
         
            -
                        },
         
     | 
| 
       1610 
     | 
    
         
            -
                        {
         
     | 
| 
       1611 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1612 
     | 
    
         
            -
                          "name": "balanceAmount",
         
     | 
| 
       1613 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1614 
     | 
    
         
            -
                        },
         
     | 
| 
       1615 
     | 
    
         
            -
                        {
         
     | 
| 
       1616 
     | 
    
         
            -
                          "internalType": "Seconds",
         
     | 
| 
       1617 
     | 
    
         
            -
                          "name": "lifetime",
         
     | 
| 
       1618 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1619 
     | 
    
         
            -
                        },
         
     | 
| 
       1620 
     | 
    
         
            -
                        {
         
     | 
| 
       1621 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1622 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       1623 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1624 
     | 
    
         
            -
                        },
         
     | 
| 
       1625 
     | 
    
         
            -
                        {
         
     | 
| 
       1626 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1627 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       1628 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1629 
     | 
    
         
            -
                        }
         
     | 
| 
       1630 
     | 
    
         
            -
                      ],
         
     | 
| 
       1631 
     | 
    
         
            -
                      "internalType": "struct IBundle.BundleInfo",
         
     | 
| 
       1632 
     | 
    
         
            -
                      "name": "bundle",
         
     | 
| 
       1633 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1634 
     | 
    
         
            -
                    },
         
     | 
| 
       1635 
     | 
    
         
            -
                    {
         
     | 
| 
       1636 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       1637 
     | 
    
         
            -
                      "name": "newState",
         
     | 
| 
       1638 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
      
 366 
     | 
    
         
            +
                      "internalType": "contract InstanceReader",
         
     | 
| 
      
 367 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 368 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       1639 
369 
     | 
    
         
             
                    }
         
     | 
| 
       1640 
370 
     | 
    
         
             
                  ],
         
     | 
| 
       1641 
     | 
    
         
            -
                  " 
     | 
| 
       1642 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1643 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 371 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       1644 
372 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1645 
373 
     | 
    
         
             
                },
         
     | 
| 
       1646 
374 
     | 
    
         
             
                {
         
     | 
| 
       1647 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1648 
     | 
    
         
            -
             
     | 
| 
       1649 
     | 
    
         
            -
             
     | 
| 
       1650 
     | 
    
         
            -
                      "name": "bundleNftId",
         
     | 
| 
       1651 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1652 
     | 
    
         
            -
                    },
         
     | 
| 
      
 375 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 376 
     | 
    
         
            +
                  "name": "getInstanceStore",
         
     | 
| 
      
 377 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       1653 
378 
     | 
    
         
             
                    {
         
     | 
| 
       1654 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       1655 
     | 
    
         
            -
                      "name": " 
     | 
| 
       1656 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 379 
     | 
    
         
            +
                      "internalType": "contract InstanceStore",
         
     | 
| 
      
 380 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 381 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       1657 
382 
     | 
    
         
             
                    }
         
     | 
| 
       1658 
383 
     | 
    
         
             
                  ],
         
     | 
| 
       1659 
     | 
    
         
            -
                  " 
     | 
| 
       1660 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1661 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 384 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       1662 
385 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1663 
386 
     | 
    
         
             
                },
         
     | 
| 
       1664 
387 
     | 
    
         
             
                {
         
     | 
| 
       1665 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1666 
     | 
    
         
            -
             
     | 
| 
       1667 
     | 
    
         
            -
             
     | 
| 
       1668 
     | 
    
         
            -
                      "name": "distributionNftId",
         
     | 
| 
       1669 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1670 
     | 
    
         
            -
                    },
         
     | 
| 
       1671 
     | 
    
         
            -
                    {
         
     | 
| 
       1672 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1673 
     | 
    
         
            -
                        {
         
     | 
| 
       1674 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       1675 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       1676 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       1677 
     | 
    
         
            -
                        },
         
     | 
| 
       1678 
     | 
    
         
            -
                        {
         
     | 
| 
       1679 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       1680 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       1681 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       1682 
     | 
    
         
            -
                        },
         
     | 
| 
       1683 
     | 
    
         
            -
                        {
         
     | 
| 
       1684 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       1685 
     | 
    
         
            -
                            {
         
     | 
| 
       1686 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       1687 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       1688 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       1689 
     | 
    
         
            -
                            },
         
     | 
| 
       1690 
     | 
    
         
            -
                            {
         
     | 
| 
       1691 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       1692 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       1693 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       1694 
     | 
    
         
            -
                            }
         
     | 
| 
       1695 
     | 
    
         
            -
                          ],
         
     | 
| 
       1696 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       1697 
     | 
    
         
            -
                          "name": "minDistributionOwnerFee",
         
     | 
| 
       1698 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       1699 
     | 
    
         
            -
                        },
         
     | 
| 
       1700 
     | 
    
         
            -
                        {
         
     | 
| 
       1701 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       1702 
     | 
    
         
            -
                            {
         
     | 
| 
       1703 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       1704 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       1705 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       1706 
     | 
    
         
            -
                            },
         
     | 
| 
       1707 
     | 
    
         
            -
                            {
         
     | 
| 
       1708 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       1709 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       1710 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       1711 
     | 
    
         
            -
                            }
         
     | 
| 
       1712 
     | 
    
         
            -
                          ],
         
     | 
| 
       1713 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       1714 
     | 
    
         
            -
                          "name": "distributionFee",
         
     | 
| 
       1715 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       1716 
     | 
    
         
            -
                        },
         
     | 
| 
       1717 
     | 
    
         
            -
                        {
         
     | 
| 
       1718 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       1719 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       1720 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       1721 
     | 
    
         
            -
                        },
         
     | 
| 
       1722 
     | 
    
         
            -
                        {
         
     | 
| 
       1723 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1724 
     | 
    
         
            -
                          "name": "sumDistributionOwnerFees",
         
     | 
| 
       1725 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1726 
     | 
    
         
            -
                        }
         
     | 
| 
       1727 
     | 
    
         
            -
                      ],
         
     | 
| 
       1728 
     | 
    
         
            -
                      "internalType": "struct ISetup.DistributionSetupInfo",
         
     | 
| 
       1729 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       1730 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1731 
     | 
    
         
            -
                    },
         
     | 
| 
      
 388 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 389 
     | 
    
         
            +
                  "name": "getMajorVersion",
         
     | 
| 
      
 390 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       1732 
391 
     | 
    
         
             
                    {
         
     | 
| 
       1733 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       1734 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 392 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 393 
     | 
    
         
            +
                      "name": "majorVersion",
         
     | 
| 
       1735 
394 
     | 
    
         
             
                      "type": "uint8"
         
     | 
| 
       1736 
395 
     | 
    
         
             
                    }
         
     | 
| 
       1737 
396 
     | 
    
         
             
                  ],
         
     | 
| 
       1738 
     | 
    
         
            -
                  " 
     | 
| 
       1739 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1740 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 397 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
       1741 
398 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1742 
399 
     | 
    
         
             
                },
         
     | 
| 
       1743 
400 
     | 
    
         
             
                {
         
     | 
| 
       1744 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 401 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 402 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 403 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       1745 
404 
     | 
    
         
             
                    {
         
     | 
| 
       1746 
405 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       1747 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 406 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       1748 
407 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       1749 
     | 
    
         
            -
                    },
         
     | 
| 
       1750 
     | 
    
         
            -
                    {
         
     | 
| 
       1751 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       1752 
     | 
    
         
            -
                      "name": "newState",
         
     | 
| 
       1753 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1754 
408 
     | 
    
         
             
                    }
         
     | 
| 
       1755 
409 
     | 
    
         
             
                  ],
         
     | 
| 
       1756 
     | 
    
         
            -
                  " 
     | 
| 
       1757 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1758 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 410 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       1759 
411 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1760 
412 
     | 
    
         
             
                },
         
     | 
| 
       1761 
413 
     | 
    
         
             
                {
         
     | 
| 
       1762 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1763 
     | 
    
         
            -
             
     | 
| 
       1764 
     | 
    
         
            -
             
     | 
| 
       1765 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       1766 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1767 
     | 
    
         
            -
                    },
         
     | 
| 
       1768 
     | 
    
         
            -
                    {
         
     | 
| 
       1769 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1770 
     | 
    
         
            -
                        {
         
     | 
| 
       1771 
     | 
    
         
            -
                          "internalType": "DistributorType",
         
     | 
| 
       1772 
     | 
    
         
            -
                          "name": "distributorType",
         
     | 
| 
       1773 
     | 
    
         
            -
                          "type": "bytes8"
         
     | 
| 
       1774 
     | 
    
         
            -
                        },
         
     | 
| 
       1775 
     | 
    
         
            -
                        {
         
     | 
| 
       1776 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       1777 
     | 
    
         
            -
                          "name": "active",
         
     | 
| 
       1778 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       1779 
     | 
    
         
            -
                        },
         
     | 
| 
       1780 
     | 
    
         
            -
                        {
         
     | 
| 
       1781 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       1782 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       1783 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       1784 
     | 
    
         
            -
                        },
         
     | 
| 
       1785 
     | 
    
         
            -
                        {
         
     | 
| 
       1786 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1787 
     | 
    
         
            -
                          "name": "sumCommisions",
         
     | 
| 
       1788 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1789 
     | 
    
         
            -
                        },
         
     | 
| 
       1790 
     | 
    
         
            -
                        {
         
     | 
| 
       1791 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1792 
     | 
    
         
            -
                          "name": "numPoliciesSold",
         
     | 
| 
       1793 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1794 
     | 
    
         
            -
                        }
         
     | 
| 
       1795 
     | 
    
         
            -
                      ],
         
     | 
| 
       1796 
     | 
    
         
            -
                      "internalType": "struct IDistribution.DistributorInfo",
         
     | 
| 
       1797 
     | 
    
         
            -
                      "name": "info",
         
     | 
| 
       1798 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1799 
     | 
    
         
            -
                    },
         
     | 
| 
      
 414 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 415 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 416 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       1800 
417 
     | 
    
         
             
                    {
         
     | 
| 
       1801 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       1802 
     | 
    
         
            -
                      "name": " 
     | 
| 
       1803 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 418 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 419 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 420 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       1804 
421 
     | 
    
         
             
                    }
         
     | 
| 
       1805 
422 
     | 
    
         
             
                  ],
         
     | 
| 
       1806 
     | 
    
         
            -
                  " 
     | 
| 
       1807 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1808 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 423 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       1809 
424 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1810 
425 
     | 
    
         
             
                },
         
     | 
| 
       1811 
426 
     | 
    
         
             
                {
         
     | 
| 
       1812 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1813 
     | 
    
         
            -
             
     | 
| 
       1814 
     | 
    
         
            -
             
     | 
| 
       1815 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       1816 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1817 
     | 
    
         
            -
                    },
         
     | 
| 
      
 427 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 428 
     | 
    
         
            +
                  "name": "getPolicyService",
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       1818 
430 
     | 
    
         
             
                    {
         
     | 
| 
       1819 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       1820 
     | 
    
         
            -
                      "name": " 
     | 
| 
       1821 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 431 
     | 
    
         
            +
                      "internalType": "contract IPolicyService",
         
     | 
| 
      
 432 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 433 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       1822 
434 
     | 
    
         
             
                    }
         
     | 
| 
       1823 
435 
     | 
    
         
             
                  ],
         
     | 
| 
       1824 
     | 
    
         
            -
                  " 
     | 
| 
       1825 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1826 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 436 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       1827 
437 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1828 
438 
     | 
    
         
             
                },
         
     | 
| 
       1829 
439 
     | 
    
         
             
                {
         
     | 
| 
       1830 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1831 
     | 
    
         
            -
             
     | 
| 
       1832 
     | 
    
         
            -
             
     | 
| 
       1833 
     | 
    
         
            -
                      "name": "distributorKey",
         
     | 
| 
       1834 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       1835 
     | 
    
         
            -
                    },
         
     | 
| 
       1836 
     | 
    
         
            -
                    {
         
     | 
| 
       1837 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1838 
     | 
    
         
            -
                        {
         
     | 
| 
       1839 
     | 
    
         
            -
                          "internalType": "string",
         
     | 
| 
       1840 
     | 
    
         
            -
                          "name": "name",
         
     | 
| 
       1841 
     | 
    
         
            -
                          "type": "string"
         
     | 
| 
       1842 
     | 
    
         
            -
                        },
         
     | 
| 
       1843 
     | 
    
         
            -
                        {
         
     | 
| 
       1844 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       1845 
     | 
    
         
            -
                          "name": "minDiscountPercentage",
         
     | 
| 
       1846 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1847 
     | 
    
         
            -
                        },
         
     | 
| 
       1848 
     | 
    
         
            -
                        {
         
     | 
| 
       1849 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       1850 
     | 
    
         
            -
                          "name": "maxDiscountPercentage",
         
     | 
| 
       1851 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1852 
     | 
    
         
            -
                        },
         
     | 
| 
       1853 
     | 
    
         
            -
                        {
         
     | 
| 
       1854 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       1855 
     | 
    
         
            -
                          "name": "commissionPercentage",
         
     | 
| 
       1856 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1857 
     | 
    
         
            -
                        },
         
     | 
| 
       1858 
     | 
    
         
            -
                        {
         
     | 
| 
       1859 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       1860 
     | 
    
         
            -
                          "name": "maxReferralCount",
         
     | 
| 
       1861 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       1862 
     | 
    
         
            -
                        },
         
     | 
| 
       1863 
     | 
    
         
            -
                        {
         
     | 
| 
       1864 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       1865 
     | 
    
         
            -
                          "name": "maxReferralLifetime",
         
     | 
| 
       1866 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       1867 
     | 
    
         
            -
                        },
         
     | 
| 
       1868 
     | 
    
         
            -
                        {
         
     | 
| 
       1869 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       1870 
     | 
    
         
            -
                          "name": "allowSelfReferrals",
         
     | 
| 
       1871 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       1872 
     | 
    
         
            -
                        },
         
     | 
| 
       1873 
     | 
    
         
            -
                        {
         
     | 
| 
       1874 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       1875 
     | 
    
         
            -
                          "name": "allowRenewals",
         
     | 
| 
       1876 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       1877 
     | 
    
         
            -
                        },
         
     | 
| 
       1878 
     | 
    
         
            -
                        {
         
     | 
| 
       1879 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       1880 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       1881 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       1882 
     | 
    
         
            -
                        }
         
     | 
| 
       1883 
     | 
    
         
            -
                      ],
         
     | 
| 
       1884 
     | 
    
         
            -
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         
     | 
| 
       1885 
     | 
    
         
            -
                      "name": "info",
         
     | 
| 
       1886 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1887 
     | 
    
         
            -
                    },
         
     | 
| 
      
 440 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 441 
     | 
    
         
            +
                  "name": "getPoolService",
         
     | 
| 
      
 442 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       1888 
443 
     | 
    
         
             
                    {
         
     | 
| 
       1889 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       1890 
     | 
    
         
            -
                      "name": " 
     | 
| 
       1891 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 444 
     | 
    
         
            +
                      "internalType": "contract IPoolService",
         
     | 
| 
      
 445 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 446 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       1892 
447 
     | 
    
         
             
                    }
         
     | 
| 
       1893 
448 
     | 
    
         
             
                  ],
         
     | 
| 
       1894 
     | 
    
         
            -
                  " 
     | 
| 
       1895 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1896 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 449 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       1897 
450 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1898 
451 
     | 
    
         
             
                },
         
     | 
| 
       1899 
452 
     | 
    
         
             
                {
         
     | 
| 
       1900 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1901 
     | 
    
         
            -
             
     | 
| 
       1902 
     | 
    
         
            -
             
     | 
| 
       1903 
     | 
    
         
            -
                      "name": "distributorKey",
         
     | 
| 
       1904 
     | 
    
         
            -
                      "type": "bytes32"
         
     | 
| 
       1905 
     | 
    
         
            -
                    },
         
     | 
| 
      
 453 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 454 
     | 
    
         
            +
                  "name": "getProductService",
         
     | 
| 
      
 455 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       1906 
456 
     | 
    
         
             
                    {
         
     | 
| 
       1907 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       1908 
     | 
    
         
            -
                      "name": " 
     | 
| 
       1909 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 457 
     | 
    
         
            +
                      "internalType": "contract IProductService",
         
     | 
| 
      
 458 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 459 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       1910 
460 
     | 
    
         
             
                    }
         
     | 
| 
       1911 
461 
     | 
    
         
             
                  ],
         
     | 
| 
       1912 
     | 
    
         
            -
                  " 
     | 
| 
       1913 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       1914 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 462 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       1915 
463 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1916 
464 
     | 
    
         
             
                },
         
     | 
| 
       1917 
465 
     | 
    
         
             
                {
         
     | 
| 
       1918 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       1919 
     | 
    
         
            -
             
     | 
| 
       1920 
     | 
    
         
            -
             
     | 
| 
       1921 
     | 
    
         
            -
                      "name": "policyNftId",
         
     | 
| 
       1922 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       1923 
     | 
    
         
            -
                    },
         
     | 
| 
       1924 
     | 
    
         
            -
                    {
         
     | 
| 
       1925 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1926 
     | 
    
         
            -
                        {
         
     | 
| 
       1927 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       1928 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       1929 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       1930 
     | 
    
         
            -
                        },
         
     | 
| 
       1931 
     | 
    
         
            -
                        {
         
     | 
| 
       1932 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       1933 
     | 
    
         
            -
                          "name": "bundleNftId",
         
     | 
| 
       1934 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       1935 
     | 
    
         
            -
                        },
         
     | 
| 
       1936 
     | 
    
         
            -
                        {
         
     | 
| 
       1937 
     | 
    
         
            -
                          "internalType": "ReferralId",
         
     | 
| 
       1938 
     | 
    
         
            -
                          "name": "referralId",
         
     | 
| 
       1939 
     | 
    
         
            -
                          "type": "bytes8"
         
     | 
| 
       1940 
     | 
    
         
            -
                        },
         
     | 
| 
       1941 
     | 
    
         
            -
                        {
         
     | 
| 
       1942 
     | 
    
         
            -
                          "internalType": "RiskId",
         
     | 
| 
       1943 
     | 
    
         
            -
                          "name": "riskId",
         
     | 
| 
       1944 
     | 
    
         
            -
                          "type": "bytes8"
         
     | 
| 
       1945 
     | 
    
         
            -
                        },
         
     | 
| 
       1946 
     | 
    
         
            -
                        {
         
     | 
| 
       1947 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1948 
     | 
    
         
            -
                          "name": "sumInsuredAmount",
         
     | 
| 
       1949 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1950 
     | 
    
         
            -
                        },
         
     | 
| 
       1951 
     | 
    
         
            -
                        {
         
     | 
| 
       1952 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1953 
     | 
    
         
            -
                          "name": "premiumAmount",
         
     | 
| 
       1954 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1955 
     | 
    
         
            -
                        },
         
     | 
| 
       1956 
     | 
    
         
            -
                        {
         
     | 
| 
       1957 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1958 
     | 
    
         
            -
                          "name": "premiumPaidAmount",
         
     | 
| 
       1959 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1960 
     | 
    
         
            -
                        },
         
     | 
| 
       1961 
     | 
    
         
            -
                        {
         
     | 
| 
       1962 
     | 
    
         
            -
                          "internalType": "Seconds",
         
     | 
| 
       1963 
     | 
    
         
            -
                          "name": "lifetime",
         
     | 
| 
       1964 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1965 
     | 
    
         
            -
                        },
         
     | 
| 
       1966 
     | 
    
         
            -
                        {
         
     | 
| 
       1967 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       1968 
     | 
    
         
            -
                          "name": "applicationData",
         
     | 
| 
       1969 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       1970 
     | 
    
         
            -
                        },
         
     | 
| 
       1971 
     | 
    
         
            -
                        {
         
     | 
| 
       1972 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       1973 
     | 
    
         
            -
                          "name": "policyData",
         
     | 
| 
       1974 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       1975 
     | 
    
         
            -
                        },
         
     | 
| 
       1976 
     | 
    
         
            -
                        {
         
     | 
| 
       1977 
     | 
    
         
            -
                          "internalType": "uint16",
         
     | 
| 
       1978 
     | 
    
         
            -
                          "name": "claimsCount",
         
     | 
| 
       1979 
     | 
    
         
            -
                          "type": "uint16"
         
     | 
| 
       1980 
     | 
    
         
            -
                        },
         
     | 
| 
       1981 
     | 
    
         
            -
                        {
         
     | 
| 
       1982 
     | 
    
         
            -
                          "internalType": "uint16",
         
     | 
| 
       1983 
     | 
    
         
            -
                          "name": "openClaimsCount",
         
     | 
| 
       1984 
     | 
    
         
            -
                          "type": "uint16"
         
     | 
| 
       1985 
     | 
    
         
            -
                        },
         
     | 
| 
       1986 
     | 
    
         
            -
                        {
         
     | 
| 
       1987 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       1988 
     | 
    
         
            -
                          "name": "payoutAmount",
         
     | 
| 
       1989 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       1990 
     | 
    
         
            -
                        },
         
     | 
| 
       1991 
     | 
    
         
            -
                        {
         
     | 
| 
       1992 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1993 
     | 
    
         
            -
                          "name": "activatedAt",
         
     | 
| 
       1994 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1995 
     | 
    
         
            -
                        },
         
     | 
| 
       1996 
     | 
    
         
            -
                        {
         
     | 
| 
       1997 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1998 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       1999 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       2000 
     | 
    
         
            -
                        },
         
     | 
| 
       2001 
     | 
    
         
            -
                        {
         
     | 
| 
       2002 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       2003 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       2004 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       2005 
     | 
    
         
            -
                        }
         
     | 
| 
       2006 
     | 
    
         
            -
                      ],
         
     | 
| 
       2007 
     | 
    
         
            -
                      "internalType": "struct IPolicy.PolicyInfo",
         
     | 
| 
       2008 
     | 
    
         
            -
                      "name": "policy",
         
     | 
| 
       2009 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       2010 
     | 
    
         
            -
                    },
         
     | 
| 
      
 466 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 467 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 468 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       2011 
469 
     | 
    
         
             
                    {
         
     | 
| 
       2012 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2013 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2014 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 470 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 471 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       2015 
473 
     | 
    
         
             
                    }
         
     | 
| 
       2016 
474 
     | 
    
         
             
                  ],
         
     | 
| 
       2017 
     | 
    
         
            -
                  " 
     | 
| 
       2018 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       2019 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       2020 
476 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       2021 
477 
     | 
    
         
             
                },
         
     | 
| 
       2022 
478 
     | 
    
         
             
                {
         
     | 
| 
       2023 
479 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       2024 
480 
     | 
    
         
             
                    {
         
     | 
| 
       2025 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2026 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2027 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 481 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 482 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 483 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       2028 
484 
     | 
    
         
             
                    },
         
     | 
| 
       2029 
485 
     | 
    
         
             
                    {
         
     | 
| 
       2030 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2031 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2032 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 486 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 487 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 488 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       2033 
489 
     | 
    
         
             
                    }
         
     | 
| 
       2034 
490 
     | 
    
         
             
                  ],
         
     | 
| 
       2035 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 491 
     | 
    
         
            +
                  "name": "grantRole",
         
     | 
| 
       2036 
492 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       2037 
493 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       2038 
494 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       2039 
495 
     | 
    
         
             
                },
         
     | 
| 
       2040 
496 
     | 
    
         
             
                {
         
     | 
| 
       2041 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       2042 
     | 
    
         
            -
             
     | 
| 
       2043 
     | 
    
         
            -
             
     | 
| 
       2044 
     | 
    
         
            -
                      "name": "poolNftId",
         
     | 
| 
       2045 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       2046 
     | 
    
         
            -
                    },
         
     | 
| 
       2047 
     | 
    
         
            -
                    {
         
     | 
| 
       2048 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       2049 
     | 
    
         
            -
                        {
         
     | 
| 
       2050 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       2051 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       2052 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       2053 
     | 
    
         
            -
                        },
         
     | 
| 
       2054 
     | 
    
         
            -
                        {
         
     | 
| 
       2055 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       2056 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       2057 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       2058 
     | 
    
         
            -
                        },
         
     | 
| 
       2059 
     | 
    
         
            -
                        {
         
     | 
| 
       2060 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       2061 
     | 
    
         
            -
                          "name": "maxCapitalAmount",
         
     | 
| 
       2062 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       2063 
     | 
    
         
            -
                        },
         
     | 
| 
       2064 
     | 
    
         
            -
                        {
         
     | 
| 
       2065 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       2066 
     | 
    
         
            -
                          "name": "isInterceptingBundleTransfers",
         
     | 
| 
       2067 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       2068 
     | 
    
         
            -
                        },
         
     | 
| 
       2069 
     | 
    
         
            -
                        {
         
     | 
| 
       2070 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       2071 
     | 
    
         
            -
                          "name": "isExternallyManaged",
         
     | 
| 
       2072 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       2073 
     | 
    
         
            -
                        },
         
     | 
| 
       2074 
     | 
    
         
            -
                        {
         
     | 
| 
       2075 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       2076 
     | 
    
         
            -
                          "name": "isVerifyingApplications",
         
     | 
| 
       2077 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       2078 
     | 
    
         
            -
                        },
         
     | 
| 
       2079 
     | 
    
         
            -
                        {
         
     | 
| 
       2080 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       2081 
     | 
    
         
            -
                          "name": "collateralizationLevel",
         
     | 
| 
       2082 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       2083 
     | 
    
         
            -
                        },
         
     | 
| 
       2084 
     | 
    
         
            -
                        {
         
     | 
| 
       2085 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       2086 
     | 
    
         
            -
                          "name": "retentionLevel",
         
     | 
| 
       2087 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       2088 
     | 
    
         
            -
                        },
         
     | 
| 
       2089 
     | 
    
         
            -
                        {
         
     | 
| 
       2090 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       2091 
     | 
    
         
            -
                            {
         
     | 
| 
       2092 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       2093 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       2094 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2095 
     | 
    
         
            -
                            },
         
     | 
| 
       2096 
     | 
    
         
            -
                            {
         
     | 
| 
       2097 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       2098 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       2099 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2100 
     | 
    
         
            -
                            }
         
     | 
| 
       2101 
     | 
    
         
            -
                          ],
         
     | 
| 
       2102 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       2103 
     | 
    
         
            -
                          "name": "poolFee",
         
     | 
| 
       2104 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       2105 
     | 
    
         
            -
                        },
         
     | 
| 
       2106 
     | 
    
         
            -
                        {
         
     | 
| 
       2107 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       2108 
     | 
    
         
            -
                            {
         
     | 
| 
       2109 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       2110 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       2111 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2112 
     | 
    
         
            -
                            },
         
     | 
| 
       2113 
     | 
    
         
            -
                            {
         
     | 
| 
       2114 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       2115 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       2116 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2117 
     | 
    
         
            -
                            }
         
     | 
| 
       2118 
     | 
    
         
            -
                          ],
         
     | 
| 
       2119 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       2120 
     | 
    
         
            -
                          "name": "stakingFee",
         
     | 
| 
       2121 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       2122 
     | 
    
         
            -
                        },
         
     | 
| 
       2123 
     | 
    
         
            -
                        {
         
     | 
| 
       2124 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       2125 
     | 
    
         
            -
                            {
         
     | 
| 
       2126 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       2127 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       2128 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2129 
     | 
    
         
            -
                            },
         
     | 
| 
       2130 
     | 
    
         
            -
                            {
         
     | 
| 
       2131 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       2132 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       2133 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2134 
     | 
    
         
            -
                            }
         
     | 
| 
       2135 
     | 
    
         
            -
                          ],
         
     | 
| 
       2136 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       2137 
     | 
    
         
            -
                          "name": "performanceFee",
         
     | 
| 
       2138 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       2139 
     | 
    
         
            -
                        },
         
     | 
| 
       2140 
     | 
    
         
            -
                        {
         
     | 
| 
       2141 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       2142 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       2143 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       2144 
     | 
    
         
            -
                        }
         
     | 
| 
       2145 
     | 
    
         
            -
                      ],
         
     | 
| 
       2146 
     | 
    
         
            -
                      "internalType": "struct ISetup.PoolSetupInfo",
         
     | 
| 
       2147 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       2148 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       2149 
     | 
    
         
            -
                    },
         
     | 
| 
      
 497 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 498 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 499 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       2150 
500 
     | 
    
         
             
                    {
         
     | 
| 
       2151 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2152 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2153 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 501 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 503 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
       2154 
504 
     | 
    
         
             
                    }
         
     | 
| 
       2155 
505 
     | 
    
         
             
                  ],
         
     | 
| 
       2156 
     | 
    
         
            -
                  " 
     | 
| 
      
 506 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 507 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 508 
     | 
    
         
            +
                },
         
     | 
| 
      
 509 
     | 
    
         
            +
                {
         
     | 
| 
      
 510 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 511 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
       2157 
512 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       2158 
513 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       2159 
514 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -2161,17 +516,17 @@ 
     | 
|
| 
       2161 
516 
     | 
    
         
             
                {
         
     | 
| 
       2162 
517 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       2163 
518 
     | 
    
         
             
                    {
         
     | 
| 
       2164 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2165 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2166 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 519 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 520 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 521 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       2167 
522 
     | 
    
         
             
                    },
         
     | 
| 
       2168 
523 
     | 
    
         
             
                    {
         
     | 
| 
       2169 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2170 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2171 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 524 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 525 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       2172 
527 
     | 
    
         
             
                    }
         
     | 
| 
       2173 
528 
     | 
    
         
             
                  ],
         
     | 
| 
       2174 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 529 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
       2175 
530 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       2176 
531 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       2177 
532 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -2179,88 +534,22 @@ 
     | 
|
| 
       2179 
534 
     | 
    
         
             
                {
         
     | 
| 
       2180 
535 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       2181 
536 
     | 
    
         
             
                    {
         
     | 
| 
       2182 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2183 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2184 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 537 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 538 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 539 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       2185 
540 
     | 
    
         
             
                    },
         
     | 
| 
       2186 
541 
     | 
    
         
             
                    {
         
     | 
| 
       2187 
     | 
    
         
            -
                      " 
     | 
| 
       2188 
     | 
    
         
            -
             
     | 
| 
       2189 
     | 
    
         
            -
             
     | 
| 
       2190 
     | 
    
         
            -
                          "name": "token",
         
     | 
| 
       2191 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       2192 
     | 
    
         
            -
                        },
         
     | 
| 
       2193 
     | 
    
         
            -
                        {
         
     | 
| 
       2194 
     | 
    
         
            -
                          "internalType": "contract TokenHandler",
         
     | 
| 
       2195 
     | 
    
         
            -
                          "name": "tokenHandler",
         
     | 
| 
       2196 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       2197 
     | 
    
         
            -
                        },
         
     | 
| 
       2198 
     | 
    
         
            -
                        {
         
     | 
| 
       2199 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       2200 
     | 
    
         
            -
                          "name": "distributionNftId",
         
     | 
| 
       2201 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       2202 
     | 
    
         
            -
                        },
         
     | 
| 
       2203 
     | 
    
         
            -
                        {
         
     | 
| 
       2204 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       2205 
     | 
    
         
            -
                          "name": "poolNftId",
         
     | 
| 
       2206 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       2207 
     | 
    
         
            -
                        },
         
     | 
| 
       2208 
     | 
    
         
            -
                        {
         
     | 
| 
       2209 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       2210 
     | 
    
         
            -
                            {
         
     | 
| 
       2211 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       2212 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       2213 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2214 
     | 
    
         
            -
                            },
         
     | 
| 
       2215 
     | 
    
         
            -
                            {
         
     | 
| 
       2216 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       2217 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       2218 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2219 
     | 
    
         
            -
                            }
         
     | 
| 
       2220 
     | 
    
         
            -
                          ],
         
     | 
| 
       2221 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       2222 
     | 
    
         
            -
                          "name": "productFee",
         
     | 
| 
       2223 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       2224 
     | 
    
         
            -
                        },
         
     | 
| 
       2225 
     | 
    
         
            -
                        {
         
     | 
| 
       2226 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       2227 
     | 
    
         
            -
                            {
         
     | 
| 
       2228 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       2229 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       2230 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2231 
     | 
    
         
            -
                            },
         
     | 
| 
       2232 
     | 
    
         
            -
                            {
         
     | 
| 
       2233 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       2234 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       2235 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       2236 
     | 
    
         
            -
                            }
         
     | 
| 
       2237 
     | 
    
         
            -
                          ],
         
     | 
| 
       2238 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       2239 
     | 
    
         
            -
                          "name": "processingFee",
         
     | 
| 
       2240 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       2241 
     | 
    
         
            -
                        },
         
     | 
| 
       2242 
     | 
    
         
            -
                        {
         
     | 
| 
       2243 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       2244 
     | 
    
         
            -
                          "name": "isIntercepting",
         
     | 
| 
       2245 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       2246 
     | 
    
         
            -
                        },
         
     | 
| 
       2247 
     | 
    
         
            -
                        {
         
     | 
| 
       2248 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       2249 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       2250 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       2251 
     | 
    
         
            -
                        }
         
     | 
| 
       2252 
     | 
    
         
            -
                      ],
         
     | 
| 
       2253 
     | 
    
         
            -
                      "internalType": "struct ISetup.ProductSetupInfo",
         
     | 
| 
       2254 
     | 
    
         
            -
                      "name": "setup",
         
     | 
| 
       2255 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 542 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 543 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 544 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       2256 
545 
     | 
    
         
             
                    },
         
     | 
| 
       2257 
546 
     | 
    
         
             
                    {
         
     | 
| 
       2258 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2259 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2260 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 547 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 548 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 549 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       2261 
550 
     | 
    
         
             
                    }
         
     | 
| 
       2262 
551 
     | 
    
         
             
                  ],
         
     | 
| 
       2263 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 552 
     | 
    
         
            +
                  "name": "nftTransferFrom",
         
     | 
| 
       2264 
553 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       2265 
554 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       2266 
555 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -2268,17 +557,17 @@ 
     | 
|
| 
       2268 
557 
     | 
    
         
             
                {
         
     | 
| 
       2269 
558 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       2270 
559 
     | 
    
         
             
                    {
         
     | 
| 
       2271 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2272 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2273 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 560 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 561 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 562 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       2274 
563 
     | 
    
         
             
                    },
         
     | 
| 
       2275 
564 
     | 
    
         
             
                    {
         
     | 
| 
       2276 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2277 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2278 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 565 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 566 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 567 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       2279 
568 
     | 
    
         
             
                    }
         
     | 
| 
       2280 
569 
     | 
    
         
             
                  ],
         
     | 
| 
       2281 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 570 
     | 
    
         
            +
                  "name": "revokeRole",
         
     | 
| 
       2282 
571 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       2283 
572 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       2284 
573 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -2286,59 +575,12 @@ 
     | 
|
| 
       2286 
575 
     | 
    
         
             
                {
         
     | 
| 
       2287 
576 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       2288 
577 
     | 
    
         
             
                    {
         
     | 
| 
       2289 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2290 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2291 
     | 
    
         
            -
                      "type": " 
     | 
| 
       2292 
     | 
    
         
            -
                    },
         
     | 
| 
       2293 
     | 
    
         
            -
                    {
         
     | 
| 
       2294 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       2295 
     | 
    
         
            -
                        {
         
     | 
| 
       2296 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       2297 
     | 
    
         
            -
                          "name": "distributorNftId",
         
     | 
| 
       2298 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       2299 
     | 
    
         
            -
                        },
         
     | 
| 
       2300 
     | 
    
         
            -
                        {
         
     | 
| 
       2301 
     | 
    
         
            -
                          "internalType": "string",
         
     | 
| 
       2302 
     | 
    
         
            -
                          "name": "referralCode",
         
     | 
| 
       2303 
     | 
    
         
            -
                          "type": "string"
         
     | 
| 
       2304 
     | 
    
         
            -
                        },
         
     | 
| 
       2305 
     | 
    
         
            -
                        {
         
     | 
| 
       2306 
     | 
    
         
            -
                          "internalType": "UFixed",
         
     | 
| 
       2307 
     | 
    
         
            -
                          "name": "discountPercentage",
         
     | 
| 
       2308 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       2309 
     | 
    
         
            -
                        },
         
     | 
| 
       2310 
     | 
    
         
            -
                        {
         
     | 
| 
       2311 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       2312 
     | 
    
         
            -
                          "name": "maxReferrals",
         
     | 
| 
       2313 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       2314 
     | 
    
         
            -
                        },
         
     | 
| 
       2315 
     | 
    
         
            -
                        {
         
     | 
| 
       2316 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       2317 
     | 
    
         
            -
                          "name": "usedReferrals",
         
     | 
| 
       2318 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       2319 
     | 
    
         
            -
                        },
         
     | 
| 
       2320 
     | 
    
         
            -
                        {
         
     | 
| 
       2321 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       2322 
     | 
    
         
            -
                          "name": "expiryAt",
         
     | 
| 
       2323 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       2324 
     | 
    
         
            -
                        },
         
     | 
| 
       2325 
     | 
    
         
            -
                        {
         
     | 
| 
       2326 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       2327 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       2328 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       2329 
     | 
    
         
            -
                        }
         
     | 
| 
       2330 
     | 
    
         
            -
                      ],
         
     | 
| 
       2331 
     | 
    
         
            -
                      "internalType": "struct IDistribution.ReferralInfo",
         
     | 
| 
       2332 
     | 
    
         
            -
                      "name": "referralInfo",
         
     | 
| 
       2333 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       2334 
     | 
    
         
            -
                    },
         
     | 
| 
       2335 
     | 
    
         
            -
                    {
         
     | 
| 
       2336 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       2337 
     | 
    
         
            -
                      "name": "newState",
         
     | 
| 
       2338 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
      
 578 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 579 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 580 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       2339 
581 
     | 
    
         
             
                    }
         
     | 
| 
       2340 
582 
     | 
    
         
             
                  ],
         
     | 
| 
       2341 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 583 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
       2342 
584 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       2343 
585 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       2344 
586 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -2346,17 +588,22 @@ 
     | 
|
| 
       2346 
588 
     | 
    
         
             
                {
         
     | 
| 
       2347 
589 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       2348 
590 
     | 
    
         
             
                    {
         
     | 
| 
       2349 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2350 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2351 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 591 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 592 
     | 
    
         
            +
                      "name": "targetName",
         
     | 
| 
      
 593 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       2352 
594 
     | 
    
         
             
                    },
         
     | 
| 
       2353 
595 
     | 
    
         
             
                    {
         
     | 
| 
       2354 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2355 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2356 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 596 
     | 
    
         
            +
                      "internalType": "bytes4[]",
         
     | 
| 
      
 597 
     | 
    
         
            +
                      "name": "selectors",
         
     | 
| 
      
 598 
     | 
    
         
            +
                      "type": "bytes4[]"
         
     | 
| 
      
 599 
     | 
    
         
            +
                    },
         
     | 
| 
      
 600 
     | 
    
         
            +
                    {
         
     | 
| 
      
 601 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 602 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 603 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       2357 
604 
     | 
    
         
             
                    }
         
     | 
| 
       2358 
605 
     | 
    
         
             
                  ],
         
     | 
| 
       2359 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 606 
     | 
    
         
            +
                  "name": "setTargetFunctionRole",
         
     | 
| 
       2360 
607 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       2361 
608 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       2362 
609 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -2364,34 +611,17 @@ 
     | 
|
| 
       2364 
611 
     | 
    
         
             
                {
         
     | 
| 
       2365 
612 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       2366 
613 
     | 
    
         
             
                    {
         
     | 
| 
       2367 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2368 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2369 
     | 
    
         
            -
                      "type": " 
     | 
| 
       2370 
     | 
    
         
            -
                    },
         
     | 
| 
       2371 
     | 
    
         
            -
                    {
         
     | 
| 
       2372 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       2373 
     | 
    
         
            -
                        {
         
     | 
| 
       2374 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       2375 
     | 
    
         
            -
                          "name": "productNftId",
         
     | 
| 
       2376 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       2377 
     | 
    
         
            -
                        },
         
     | 
| 
       2378 
     | 
    
         
            -
                        {
         
     | 
| 
       2379 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       2380 
     | 
    
         
            -
                          "name": "data",
         
     | 
| 
       2381 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       2382 
     | 
    
         
            -
                        }
         
     | 
| 
       2383 
     | 
    
         
            -
                      ],
         
     | 
| 
       2384 
     | 
    
         
            -
                      "internalType": "struct IRisk.RiskInfo",
         
     | 
| 
       2385 
     | 
    
         
            -
                      "name": "risk",
         
     | 
| 
       2386 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 614 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 615 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 616 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       2387 
617 
     | 
    
         
             
                    },
         
     | 
| 
       2388 
618 
     | 
    
         
             
                    {
         
     | 
| 
       2389 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2390 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2391 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 619 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 620 
     | 
    
         
            +
                      "name": "locked",
         
     | 
| 
      
 621 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
       2392 
622 
     | 
    
         
             
                    }
         
     | 
| 
       2393 
623 
     | 
    
         
             
                  ],
         
     | 
| 
       2394 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 624 
     | 
    
         
            +
                  "name": "setTargetLocked",
         
     | 
| 
       2395 
625 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       2396 
626 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       2397 
627 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -2399,19 +629,20 @@ 
     | 
|
| 
       2399 
629 
     | 
    
         
             
                {
         
     | 
| 
       2400 
630 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       2401 
631 
     | 
    
         
             
                    {
         
     | 
| 
       2402 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2403 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2404 
     | 
    
         
            -
                      "type": " 
     | 
| 
       2405 
     | 
    
         
            -
                    } 
     | 
| 
      
 632 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 633 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 634 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 635 
     | 
    
         
            +
                    }
         
     | 
| 
      
 636 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 637 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 638 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       2406 
639 
     | 
    
         
             
                    {
         
     | 
| 
       2407 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       2408 
     | 
    
         
            -
                      "name": " 
     | 
| 
       2409 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 640 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 641 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 642 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
       2410 
643 
     | 
    
         
             
                    }
         
     | 
| 
       2411 
644 
     | 
    
         
             
                  ],
         
     | 
| 
       2412 
     | 
    
         
            -
                  " 
     | 
| 
       2413 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       2414 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 645 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       2415 
646 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       2416 
647 
     | 
    
         
             
                }
         
     | 
| 
       2417 
648 
     | 
    
         
             
              ],
         
     |