@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f347f00-614
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 +8 -84
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +254 -157
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1378 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +826 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +202 -96
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +126 -312
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +36 -105
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +279 -1961
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +257 -55
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +431 -2735
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +228 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +762 -340
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +358 -171
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +128 -71
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3598 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +10 -118
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- 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/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → oracle/IOracle.sol/IOracle.json} +2 -2
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → oracle/IOracleComponent.sol/IOracleComponent.json} +221 -192
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/{components/Product.sol/Product.json → oracle/Oracle.sol/Oracle.json} +255 -266
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1134 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +754 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +218 -145
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +288 -88
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/Pool.sol/Pool.json +298 -89
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +174 -202
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
- 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} +146 -153
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +80 -64
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +1012 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +179 -29
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +310 -77
- package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.json +124 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +415 -43
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1896 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -97
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +105 -54
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +769 -98
- package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.json +166 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +182 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
- package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1554 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/Component.sol/Component.json +144 -80
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1511 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +796 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +100 -113
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
- package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1184 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +180 -54
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +880 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +50 -11
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +87 -9
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
- 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 +96 -19
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +571 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +15 -22
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +98 -26
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +70 -35
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +23 -22
- 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 +103 -21
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +60 -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/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +460 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2261 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -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 +345 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- 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 +209 -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/type/ObjectType.sol/ObjectTypeLib.json +186 -0
- 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/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- 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/type/RoleId.sol/RoleIdLib.json +266 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- 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/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +33 -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 +47 -66
- package/contracts/distribution/DistributionService.sol +297 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/{components → distribution}/IDistributionComponent.sol +11 -16
- package/contracts/{instance/service → distribution}/IDistributionService.sol +20 -37
- package/contracts/instance/BundleManager.sol +8 -9
- package/contracts/instance/IInstance.sol +55 -66
- package/contracts/instance/IInstanceService.sol +50 -25
- package/contracts/instance/Instance.sol +160 -224
- package/contracts/instance/InstanceAdmin.sol +331 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
- package/contracts/instance/InstanceReader.sol +157 -55
- package/contracts/instance/InstanceService.sol +259 -315
- package/contracts/instance/InstanceServiceManager.sol +11 -21
- package/contracts/instance/InstanceStore.sol +269 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/{ObjectManager.sol → base/ObjectManager.sol} +7 -9
- package/contracts/instance/module/IAccess.sol +5 -13
- package/contracts/instance/module/IBundle.sol +8 -9
- package/contracts/instance/module/IComponents.sol +22 -5
- package/contracts/instance/module/IDistribution.sol +7 -6
- package/contracts/instance/module/IPolicy.sol +28 -16
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/TestToken.sol → mock/Dip.sol} +5 -5
- package/contracts/oracle/IOracle.sol +20 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +145 -0
- package/contracts/oracle/OracleService.sol +278 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/{components → pool}/IPoolComponent.sol +17 -18
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/{components → pool}/Pool.sol +57 -57
- package/contracts/pool/PoolService.sol +452 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +11 -8
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +11 -8
- package/contracts/{instance/service → product}/IApplicationService.sol +15 -35
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/{instance/service → product}/IPolicyService.sol +37 -31
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +42 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +475 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/{components → product}/Product.sol +191 -107
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +8 -1
- package/contracts/registry/IRegistry.sol +44 -21
- package/contracts/registry/IRegistryService.sol +39 -37
- package/contracts/registry/IServiceAuthorization.sol +35 -0
- package/contracts/registry/Registry.sol +192 -83
- package/contracts/registry/RegistryAdmin.sol +333 -0
- package/contracts/registry/RegistryService.sol +73 -90
- package/contracts/registry/RegistryServiceManager.sol +21 -30
- package/contracts/registry/ReleaseManager.sol +394 -195
- package/contracts/registry/ServiceAuthorization.sol +83 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +261 -62
- package/contracts/shared/AccessAdmin.sol +750 -0
- package/contracts/shared/AccessManagerCustom.sol +741 -0
- package/contracts/shared/AccessManagerExtended.sol +481 -0
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +617 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +1 -1
- package/contracts/shared/IAccessAdmin.sol +162 -0
- package/contracts/shared/IAccessManagerExtended.sol +74 -0
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
- package/contracts/{components → shared}/IComponent.sol +23 -27
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +15 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +3 -3
- package/contracts/shared/INftOwnable.sol +2 -2
- package/contracts/shared/IPolicyHolder.sol +29 -10
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +14 -7
- package/contracts/shared/IVersionable.sol +1 -1
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +144 -0
- package/contracts/shared/KeyValueStore.sol +127 -0
- package/contracts/{instance/base → shared}/Lifecycle.sol +26 -5
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +3 -16
- package/contracts/shared/PolicyHolder.sol +40 -19
- package/contracts/shared/ProxyManager.sol +34 -4
- package/contracts/shared/Registerable.sol +13 -12
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/Service.sol +47 -22
- package/contracts/shared/TokenHandler.sol +27 -2
- package/contracts/shared/Versionable.sol +1 -1
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +153 -0
- package/contracts/staking/StakeManagerLib.sol +231 -0
- package/contracts/staking/Staking.sol +513 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +411 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +613 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +128 -0
- package/contracts/{types → type}/Blocknumber.sol +20 -3
- package/contracts/{types → type}/ClaimId.sol +25 -2
- package/contracts/{types → type}/Fee.sol +33 -24
- package/contracts/{types → type}/NftId.sol +14 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +241 -0
- package/contracts/{types → type}/PayoutId.sol +33 -5
- package/contracts/{types → type}/Referral.sol +1 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +1 -1
- package/contracts/type/RoleId.sol +201 -0
- package/contracts/{types → type}/Seconds.sol +27 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +33 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +10 -1
- package/contracts/{types → type}/Version.sol +1 -1
- package/package.json +3 -3
- 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/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1311
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
- 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 -1093
- 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 -1732
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
- 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/IClaimService.sol/IClaimService.json +0 -409
- 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 -428
- 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 -824
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -657
- 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/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
- 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/Blocknumber.sol/BlocknumberLib.json +0 -174
- 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 -166
- 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/ObjectType.sol/ObjectTypeLib.json +0 -92
- 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/Referral.sol/ReferralLib.json +0 -142
- 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/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
- 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/components/Component.sol +0 -251
- package/contracts/components/IProductComponent.sol +0 -40
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -522
- package/contracts/instance/base/ComponentService.sol +0 -134
- package/contracts/instance/base/KeyValueStore.sol +0 -175
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -350
- package/contracts/instance/service/BundleService.sol +0 -336
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -151
- package/contracts/instance/service/DistributionService.sol +0 -467
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IBundleService.sol +0 -62
- package/contracts/instance/service/IClaimService.sol +0 -61
- package/contracts/instance/service/IPoolService.sol +0 -35
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -403
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -220
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -241
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- 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/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/ObjectType.sol +0 -157
- package/contracts/types/RoleId.sol +0 -97
- /package/contracts/{types → type}/DistributorType.sol +0 -0
- /package/contracts/{types → type}/Key32.sol +0 -0
- /package/contracts/{types → type}/UFixed.sol +0 -0
| @@ -0,0 +1,3598 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "InstanceStore",
         | 
| 4 | 
            +
              "sourceName": "contracts/instance/InstanceStore.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    }
         | 
| 13 | 
            +
                  ],
         | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 | 
            +
                  "type": "error"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                  "inputs": [
         | 
| 19 | 
            +
                    {
         | 
| 20 | 
            +
                      "internalType": "address",
         | 
| 21 | 
            +
                      "name": "caller",
         | 
| 22 | 
            +
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                  ],
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 42 | 
            +
                  "type": "error"
         | 
| 43 | 
            +
                },
         | 
| 44 | 
            +
                {
         | 
| 45 | 
            +
                  "inputs": [
         | 
| 46 | 
            +
                    {
         | 
| 47 | 
            +
                      "internalType": "NftId",
         | 
| 48 | 
            +
                      "name": "targetNftId",
         | 
| 49 | 
            +
                      "type": "uint96"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "ErrorBalanceStoreTargetAlreadyRegistered",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                {
         | 
| 56 | 
            +
                  "inputs": [
         | 
| 57 | 
            +
                    {
         | 
| 58 | 
            +
                      "internalType": "NftId",
         | 
| 59 | 
            +
                      "name": "targetNftId",
         | 
| 60 | 
            +
                      "type": "uint96"
         | 
| 61 | 
            +
                    }
         | 
| 62 | 
            +
                  ],
         | 
| 63 | 
            +
                  "name": "ErrorBalanceStoreTargetNotRegistered",
         | 
| 64 | 
            +
                  "type": "error"
         | 
| 65 | 
            +
                },
         | 
| 66 | 
            +
                {
         | 
| 67 | 
            +
                  "inputs": [
         | 
| 68 | 
            +
                    {
         | 
| 69 | 
            +
                      "internalType": "ObjectType",
         | 
| 70 | 
            +
                      "name": "objectType",
         | 
| 71 | 
            +
                      "type": "uint8"
         | 
| 72 | 
            +
                    },
         | 
| 73 | 
            +
                    {
         | 
| 74 | 
            +
                      "internalType": "StateId",
         | 
| 75 | 
            +
                      "name": "fromStateId",
         | 
| 76 | 
            +
                      "type": "uint8"
         | 
| 77 | 
            +
                    },
         | 
| 78 | 
            +
                    {
         | 
| 79 | 
            +
                      "internalType": "StateId",
         | 
| 80 | 
            +
                      "name": "toStateId",
         | 
| 81 | 
            +
                      "type": "uint8"
         | 
| 82 | 
            +
                    }
         | 
| 83 | 
            +
                  ],
         | 
| 84 | 
            +
                  "name": "ErrorInvalidStateTransition",
         | 
| 85 | 
            +
                  "type": "error"
         | 
| 86 | 
            +
                },
         | 
| 87 | 
            +
                {
         | 
| 88 | 
            +
                  "inputs": [
         | 
| 89 | 
            +
                    {
         | 
| 90 | 
            +
                      "internalType": "Key32",
         | 
| 91 | 
            +
                      "name": "key",
         | 
| 92 | 
            +
                      "type": "bytes32"
         | 
| 93 | 
            +
                    },
         | 
| 94 | 
            +
                    {
         | 
| 95 | 
            +
                      "internalType": "ObjectType",
         | 
| 96 | 
            +
                      "name": "objectType",
         | 
| 97 | 
            +
                      "type": "uint8"
         | 
| 98 | 
            +
                    }
         | 
| 99 | 
            +
                  ],
         | 
| 100 | 
            +
                  "name": "ErrorKeyValueStoreAlreadyCreated",
         | 
| 101 | 
            +
                  "type": "error"
         | 
| 102 | 
            +
                },
         | 
| 103 | 
            +
                {
         | 
| 104 | 
            +
                  "inputs": [
         | 
| 105 | 
            +
                    {
         | 
| 106 | 
            +
                      "internalType": "Key32",
         | 
| 107 | 
            +
                      "name": "key",
         | 
| 108 | 
            +
                      "type": "bytes32"
         | 
| 109 | 
            +
                    }
         | 
| 110 | 
            +
                  ],
         | 
| 111 | 
            +
                  "name": "ErrorKeyValueStoreNotExisting",
         | 
| 112 | 
            +
                  "type": "error"
         | 
| 113 | 
            +
                },
         | 
| 114 | 
            +
                {
         | 
| 115 | 
            +
                  "inputs": [
         | 
| 116 | 
            +
                    {
         | 
| 117 | 
            +
                      "internalType": "Key32",
         | 
| 118 | 
            +
                      "name": "key",
         | 
| 119 | 
            +
                      "type": "bytes32"
         | 
| 120 | 
            +
                    }
         | 
| 121 | 
            +
                  ],
         | 
| 122 | 
            +
                  "name": "ErrorKeyValueStoreStateZero",
         | 
| 123 | 
            +
                  "type": "error"
         | 
| 124 | 
            +
                },
         | 
| 125 | 
            +
                {
         | 
| 126 | 
            +
                  "inputs": [
         | 
| 127 | 
            +
                    {
         | 
| 128 | 
            +
                      "internalType": "ObjectType",
         | 
| 129 | 
            +
                      "name": "objectType",
         | 
| 130 | 
            +
                      "type": "uint8"
         | 
| 131 | 
            +
                    }
         | 
| 132 | 
            +
                  ],
         | 
| 133 | 
            +
                  "name": "ErrorKeyValueStoreTypeUndefined",
         | 
| 134 | 
            +
                  "type": "error"
         | 
| 135 | 
            +
                },
         | 
| 136 | 
            +
                {
         | 
| 137 | 
            +
                  "inputs": [
         | 
| 138 | 
            +
                    {
         | 
| 139 | 
            +
                      "internalType": "NftId",
         | 
| 140 | 
            +
                      "name": "nftId",
         | 
| 141 | 
            +
                      "type": "uint96"
         | 
| 142 | 
            +
                    },
         | 
| 143 | 
            +
                    {
         | 
| 144 | 
            +
                      "internalType": "ObjectType",
         | 
| 145 | 
            +
                      "name": "objectType",
         | 
| 146 | 
            +
                      "type": "uint8"
         | 
| 147 | 
            +
                    }
         | 
| 148 | 
            +
                  ],
         | 
| 149 | 
            +
                  "name": "ErrorNoLifecycle",
         | 
| 150 | 
            +
                  "type": "error"
         | 
| 151 | 
            +
                },
         | 
| 152 | 
            +
                {
         | 
| 153 | 
            +
                  "inputs": [],
         | 
| 154 | 
            +
                  "name": "InvalidInitialization",
         | 
| 155 | 
            +
                  "type": "error"
         | 
| 156 | 
            +
                },
         | 
| 157 | 
            +
                {
         | 
| 158 | 
            +
                  "inputs": [],
         | 
| 159 | 
            +
                  "name": "NotInitializing",
         | 
| 160 | 
            +
                  "type": "error"
         | 
| 161 | 
            +
                },
         | 
| 162 | 
            +
                {
         | 
| 163 | 
            +
                  "anonymous": false,
         | 
| 164 | 
            +
                  "inputs": [
         | 
| 165 | 
            +
                    {
         | 
| 166 | 
            +
                      "indexed": false,
         | 
| 167 | 
            +
                      "internalType": "address",
         | 
| 168 | 
            +
                      "name": "authority",
         | 
| 169 | 
            +
                      "type": "address"
         | 
| 170 | 
            +
                    }
         | 
| 171 | 
            +
                  ],
         | 
| 172 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 173 | 
            +
                  "type": "event"
         | 
| 174 | 
            +
                },
         | 
| 175 | 
            +
                {
         | 
| 176 | 
            +
                  "anonymous": false,
         | 
| 177 | 
            +
                  "inputs": [
         | 
| 178 | 
            +
                    {
         | 
| 179 | 
            +
                      "indexed": false,
         | 
| 180 | 
            +
                      "internalType": "uint64",
         | 
| 181 | 
            +
                      "name": "version",
         | 
| 182 | 
            +
                      "type": "uint64"
         | 
| 183 | 
            +
                    }
         | 
| 184 | 
            +
                  ],
         | 
| 185 | 
            +
                  "name": "Initialized",
         | 
| 186 | 
            +
                  "type": "event"
         | 
| 187 | 
            +
                },
         | 
| 188 | 
            +
                {
         | 
| 189 | 
            +
                  "anonymous": false,
         | 
| 190 | 
            +
                  "inputs": [
         | 
| 191 | 
            +
                    {
         | 
| 192 | 
            +
                      "indexed": false,
         | 
| 193 | 
            +
                      "internalType": "NftId",
         | 
| 194 | 
            +
                      "name": "targetNftId",
         | 
| 195 | 
            +
                      "type": "uint96"
         | 
| 196 | 
            +
                    },
         | 
| 197 | 
            +
                    {
         | 
| 198 | 
            +
                      "indexed": false,
         | 
| 199 | 
            +
                      "internalType": "Amount",
         | 
| 200 | 
            +
                      "name": "addedAmount",
         | 
| 201 | 
            +
                      "type": "uint96"
         | 
| 202 | 
            +
                    },
         | 
| 203 | 
            +
                    {
         | 
| 204 | 
            +
                      "indexed": false,
         | 
| 205 | 
            +
                      "internalType": "Amount",
         | 
| 206 | 
            +
                      "name": "newBalance",
         | 
| 207 | 
            +
                      "type": "uint96"
         | 
| 208 | 
            +
                    },
         | 
| 209 | 
            +
                    {
         | 
| 210 | 
            +
                      "indexed": false,
         | 
| 211 | 
            +
                      "internalType": "Blocknumber",
         | 
| 212 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 213 | 
            +
                      "type": "uint32"
         | 
| 214 | 
            +
                    }
         | 
| 215 | 
            +
                  ],
         | 
| 216 | 
            +
                  "name": "LogBalanceStoreBalanceDecreased",
         | 
| 217 | 
            +
                  "type": "event"
         | 
| 218 | 
            +
                },
         | 
| 219 | 
            +
                {
         | 
| 220 | 
            +
                  "anonymous": false,
         | 
| 221 | 
            +
                  "inputs": [
         | 
| 222 | 
            +
                    {
         | 
| 223 | 
            +
                      "indexed": false,
         | 
| 224 | 
            +
                      "internalType": "NftId",
         | 
| 225 | 
            +
                      "name": "targetNftId",
         | 
| 226 | 
            +
                      "type": "uint96"
         | 
| 227 | 
            +
                    },
         | 
| 228 | 
            +
                    {
         | 
| 229 | 
            +
                      "indexed": false,
         | 
| 230 | 
            +
                      "internalType": "Amount",
         | 
| 231 | 
            +
                      "name": "addedAmount",
         | 
| 232 | 
            +
                      "type": "uint96"
         | 
| 233 | 
            +
                    },
         | 
| 234 | 
            +
                    {
         | 
| 235 | 
            +
                      "indexed": false,
         | 
| 236 | 
            +
                      "internalType": "Amount",
         | 
| 237 | 
            +
                      "name": "newBalance",
         | 
| 238 | 
            +
                      "type": "uint96"
         | 
| 239 | 
            +
                    },
         | 
| 240 | 
            +
                    {
         | 
| 241 | 
            +
                      "indexed": false,
         | 
| 242 | 
            +
                      "internalType": "Blocknumber",
         | 
| 243 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 244 | 
            +
                      "type": "uint32"
         | 
| 245 | 
            +
                    }
         | 
| 246 | 
            +
                  ],
         | 
| 247 | 
            +
                  "name": "LogBalanceStoreBalanceIncreased",
         | 
| 248 | 
            +
                  "type": "event"
         | 
| 249 | 
            +
                },
         | 
| 250 | 
            +
                {
         | 
| 251 | 
            +
                  "anonymous": false,
         | 
| 252 | 
            +
                  "inputs": [
         | 
| 253 | 
            +
                    {
         | 
| 254 | 
            +
                      "indexed": false,
         | 
| 255 | 
            +
                      "internalType": "NftId",
         | 
| 256 | 
            +
                      "name": "targetNftId",
         | 
| 257 | 
            +
                      "type": "uint96"
         | 
| 258 | 
            +
                    },
         | 
| 259 | 
            +
                    {
         | 
| 260 | 
            +
                      "indexed": false,
         | 
| 261 | 
            +
                      "internalType": "Amount",
         | 
| 262 | 
            +
                      "name": "addedAmount",
         | 
| 263 | 
            +
                      "type": "uint96"
         | 
| 264 | 
            +
                    },
         | 
| 265 | 
            +
                    {
         | 
| 266 | 
            +
                      "indexed": false,
         | 
| 267 | 
            +
                      "internalType": "Amount",
         | 
| 268 | 
            +
                      "name": "newBalance",
         | 
| 269 | 
            +
                      "type": "uint96"
         | 
| 270 | 
            +
                    },
         | 
| 271 | 
            +
                    {
         | 
| 272 | 
            +
                      "indexed": false,
         | 
| 273 | 
            +
                      "internalType": "Blocknumber",
         | 
| 274 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 275 | 
            +
                      "type": "uint32"
         | 
| 276 | 
            +
                    }
         | 
| 277 | 
            +
                  ],
         | 
| 278 | 
            +
                  "name": "LogBalanceStoreFeesDecreased",
         | 
| 279 | 
            +
                  "type": "event"
         | 
| 280 | 
            +
                },
         | 
| 281 | 
            +
                {
         | 
| 282 | 
            +
                  "anonymous": false,
         | 
| 283 | 
            +
                  "inputs": [
         | 
| 284 | 
            +
                    {
         | 
| 285 | 
            +
                      "indexed": false,
         | 
| 286 | 
            +
                      "internalType": "NftId",
         | 
| 287 | 
            +
                      "name": "targetNftId",
         | 
| 288 | 
            +
                      "type": "uint96"
         | 
| 289 | 
            +
                    },
         | 
| 290 | 
            +
                    {
         | 
| 291 | 
            +
                      "indexed": false,
         | 
| 292 | 
            +
                      "internalType": "Amount",
         | 
| 293 | 
            +
                      "name": "addedAmount",
         | 
| 294 | 
            +
                      "type": "uint96"
         | 
| 295 | 
            +
                    },
         | 
| 296 | 
            +
                    {
         | 
| 297 | 
            +
                      "indexed": false,
         | 
| 298 | 
            +
                      "internalType": "Amount",
         | 
| 299 | 
            +
                      "name": "newBalance",
         | 
| 300 | 
            +
                      "type": "uint96"
         | 
| 301 | 
            +
                    },
         | 
| 302 | 
            +
                    {
         | 
| 303 | 
            +
                      "indexed": false,
         | 
| 304 | 
            +
                      "internalType": "Blocknumber",
         | 
| 305 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 306 | 
            +
                      "type": "uint32"
         | 
| 307 | 
            +
                    }
         | 
| 308 | 
            +
                  ],
         | 
| 309 | 
            +
                  "name": "LogBalanceStoreFeesIncreased",
         | 
| 310 | 
            +
                  "type": "event"
         | 
| 311 | 
            +
                },
         | 
| 312 | 
            +
                {
         | 
| 313 | 
            +
                  "anonymous": false,
         | 
| 314 | 
            +
                  "inputs": [
         | 
| 315 | 
            +
                    {
         | 
| 316 | 
            +
                      "indexed": false,
         | 
| 317 | 
            +
                      "internalType": "NftId",
         | 
| 318 | 
            +
                      "name": "targetNftId",
         | 
| 319 | 
            +
                      "type": "uint96"
         | 
| 320 | 
            +
                    },
         | 
| 321 | 
            +
                    {
         | 
| 322 | 
            +
                      "indexed": false,
         | 
| 323 | 
            +
                      "internalType": "Amount",
         | 
| 324 | 
            +
                      "name": "addedAmount",
         | 
| 325 | 
            +
                      "type": "uint96"
         | 
| 326 | 
            +
                    },
         | 
| 327 | 
            +
                    {
         | 
| 328 | 
            +
                      "indexed": false,
         | 
| 329 | 
            +
                      "internalType": "Amount",
         | 
| 330 | 
            +
                      "name": "newBalance",
         | 
| 331 | 
            +
                      "type": "uint96"
         | 
| 332 | 
            +
                    },
         | 
| 333 | 
            +
                    {
         | 
| 334 | 
            +
                      "indexed": false,
         | 
| 335 | 
            +
                      "internalType": "Blocknumber",
         | 
| 336 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 337 | 
            +
                      "type": "uint32"
         | 
| 338 | 
            +
                    }
         | 
| 339 | 
            +
                  ],
         | 
| 340 | 
            +
                  "name": "LogBalanceStoreLockedDecreased",
         | 
| 341 | 
            +
                  "type": "event"
         | 
| 342 | 
            +
                },
         | 
| 343 | 
            +
                {
         | 
| 344 | 
            +
                  "anonymous": false,
         | 
| 345 | 
            +
                  "inputs": [
         | 
| 346 | 
            +
                    {
         | 
| 347 | 
            +
                      "indexed": false,
         | 
| 348 | 
            +
                      "internalType": "NftId",
         | 
| 349 | 
            +
                      "name": "targetNftId",
         | 
| 350 | 
            +
                      "type": "uint96"
         | 
| 351 | 
            +
                    },
         | 
| 352 | 
            +
                    {
         | 
| 353 | 
            +
                      "indexed": false,
         | 
| 354 | 
            +
                      "internalType": "Amount",
         | 
| 355 | 
            +
                      "name": "addedAmount",
         | 
| 356 | 
            +
                      "type": "uint96"
         | 
| 357 | 
            +
                    },
         | 
| 358 | 
            +
                    {
         | 
| 359 | 
            +
                      "indexed": false,
         | 
| 360 | 
            +
                      "internalType": "Amount",
         | 
| 361 | 
            +
                      "name": "newBalance",
         | 
| 362 | 
            +
                      "type": "uint96"
         | 
| 363 | 
            +
                    },
         | 
| 364 | 
            +
                    {
         | 
| 365 | 
            +
                      "indexed": false,
         | 
| 366 | 
            +
                      "internalType": "Blocknumber",
         | 
| 367 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 368 | 
            +
                      "type": "uint32"
         | 
| 369 | 
            +
                    }
         | 
| 370 | 
            +
                  ],
         | 
| 371 | 
            +
                  "name": "LogBalanceStoreLockedIncreased",
         | 
| 372 | 
            +
                  "type": "event"
         | 
| 373 | 
            +
                },
         | 
| 374 | 
            +
                {
         | 
| 375 | 
            +
                  "anonymous": false,
         | 
| 376 | 
            +
                  "inputs": [
         | 
| 377 | 
            +
                    {
         | 
| 378 | 
            +
                      "indexed": false,
         | 
| 379 | 
            +
                      "internalType": "NftId",
         | 
| 380 | 
            +
                      "name": "targetNftId",
         | 
| 381 | 
            +
                      "type": "uint96"
         | 
| 382 | 
            +
                    }
         | 
| 383 | 
            +
                  ],
         | 
| 384 | 
            +
                  "name": "LogBalanceStoreTargetRegistered",
         | 
| 385 | 
            +
                  "type": "event"
         | 
| 386 | 
            +
                },
         | 
| 387 | 
            +
                {
         | 
| 388 | 
            +
                  "anonymous": false,
         | 
| 389 | 
            +
                  "inputs": [
         | 
| 390 | 
            +
                    {
         | 
| 391 | 
            +
                      "indexed": false,
         | 
| 392 | 
            +
                      "internalType": "ObjectType",
         | 
| 393 | 
            +
                      "name": "objectType",
         | 
| 394 | 
            +
                      "type": "uint8"
         | 
| 395 | 
            +
                    },
         | 
| 396 | 
            +
                    {
         | 
| 397 | 
            +
                      "indexed": false,
         | 
| 398 | 
            +
                      "internalType": "KeyId",
         | 
| 399 | 
            +
                      "name": "keyId",
         | 
| 400 | 
            +
                      "type": "bytes31"
         | 
| 401 | 
            +
                    },
         | 
| 402 | 
            +
                    {
         | 
| 403 | 
            +
                      "indexed": false,
         | 
| 404 | 
            +
                      "internalType": "StateId",
         | 
| 405 | 
            +
                      "name": "state",
         | 
| 406 | 
            +
                      "type": "uint8"
         | 
| 407 | 
            +
                    },
         | 
| 408 | 
            +
                    {
         | 
| 409 | 
            +
                      "indexed": false,
         | 
| 410 | 
            +
                      "internalType": "address",
         | 
| 411 | 
            +
                      "name": "createdBy",
         | 
| 412 | 
            +
                      "type": "address"
         | 
| 413 | 
            +
                    },
         | 
| 414 | 
            +
                    {
         | 
| 415 | 
            +
                      "indexed": false,
         | 
| 416 | 
            +
                      "internalType": "address",
         | 
| 417 | 
            +
                      "name": "txOrigin",
         | 
| 418 | 
            +
                      "type": "address"
         | 
| 419 | 
            +
                    }
         | 
| 420 | 
            +
                  ],
         | 
| 421 | 
            +
                  "name": "LogInfoCreated",
         | 
| 422 | 
            +
                  "type": "event"
         | 
| 423 | 
            +
                },
         | 
| 424 | 
            +
                {
         | 
| 425 | 
            +
                  "anonymous": false,
         | 
| 426 | 
            +
                  "inputs": [
         | 
| 427 | 
            +
                    {
         | 
| 428 | 
            +
                      "indexed": false,
         | 
| 429 | 
            +
                      "internalType": "ObjectType",
         | 
| 430 | 
            +
                      "name": "objectType",
         | 
| 431 | 
            +
                      "type": "uint8"
         | 
| 432 | 
            +
                    },
         | 
| 433 | 
            +
                    {
         | 
| 434 | 
            +
                      "indexed": false,
         | 
| 435 | 
            +
                      "internalType": "KeyId",
         | 
| 436 | 
            +
                      "name": "keyId",
         | 
| 437 | 
            +
                      "type": "bytes31"
         | 
| 438 | 
            +
                    },
         | 
| 439 | 
            +
                    {
         | 
| 440 | 
            +
                      "indexed": false,
         | 
| 441 | 
            +
                      "internalType": "StateId",
         | 
| 442 | 
            +
                      "name": "state",
         | 
| 443 | 
            +
                      "type": "uint8"
         | 
| 444 | 
            +
                    },
         | 
| 445 | 
            +
                    {
         | 
| 446 | 
            +
                      "indexed": false,
         | 
| 447 | 
            +
                      "internalType": "address",
         | 
| 448 | 
            +
                      "name": "updatedBy",
         | 
| 449 | 
            +
                      "type": "address"
         | 
| 450 | 
            +
                    },
         | 
| 451 | 
            +
                    {
         | 
| 452 | 
            +
                      "indexed": false,
         | 
| 453 | 
            +
                      "internalType": "address",
         | 
| 454 | 
            +
                      "name": "txOrigin",
         | 
| 455 | 
            +
                      "type": "address"
         | 
| 456 | 
            +
                    },
         | 
| 457 | 
            +
                    {
         | 
| 458 | 
            +
                      "indexed": false,
         | 
| 459 | 
            +
                      "internalType": "Blocknumber",
         | 
| 460 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 461 | 
            +
                      "type": "uint32"
         | 
| 462 | 
            +
                    }
         | 
| 463 | 
            +
                  ],
         | 
| 464 | 
            +
                  "name": "LogInfoUpdated",
         | 
| 465 | 
            +
                  "type": "event"
         | 
| 466 | 
            +
                },
         | 
| 467 | 
            +
                {
         | 
| 468 | 
            +
                  "anonymous": false,
         | 
| 469 | 
            +
                  "inputs": [
         | 
| 470 | 
            +
                    {
         | 
| 471 | 
            +
                      "indexed": false,
         | 
| 472 | 
            +
                      "internalType": "ObjectType",
         | 
| 473 | 
            +
                      "name": "objectType",
         | 
| 474 | 
            +
                      "type": "uint8"
         | 
| 475 | 
            +
                    },
         | 
| 476 | 
            +
                    {
         | 
| 477 | 
            +
                      "indexed": false,
         | 
| 478 | 
            +
                      "internalType": "KeyId",
         | 
| 479 | 
            +
                      "name": "keyId",
         | 
| 480 | 
            +
                      "type": "bytes31"
         | 
| 481 | 
            +
                    },
         | 
| 482 | 
            +
                    {
         | 
| 483 | 
            +
                      "indexed": false,
         | 
| 484 | 
            +
                      "internalType": "StateId",
         | 
| 485 | 
            +
                      "name": "stateOld",
         | 
| 486 | 
            +
                      "type": "uint8"
         | 
| 487 | 
            +
                    },
         | 
| 488 | 
            +
                    {
         | 
| 489 | 
            +
                      "indexed": false,
         | 
| 490 | 
            +
                      "internalType": "StateId",
         | 
| 491 | 
            +
                      "name": "stateNew",
         | 
| 492 | 
            +
                      "type": "uint8"
         | 
| 493 | 
            +
                    },
         | 
| 494 | 
            +
                    {
         | 
| 495 | 
            +
                      "indexed": false,
         | 
| 496 | 
            +
                      "internalType": "address",
         | 
| 497 | 
            +
                      "name": "updatedBy",
         | 
| 498 | 
            +
                      "type": "address"
         | 
| 499 | 
            +
                    },
         | 
| 500 | 
            +
                    {
         | 
| 501 | 
            +
                      "indexed": false,
         | 
| 502 | 
            +
                      "internalType": "address",
         | 
| 503 | 
            +
                      "name": "txOrigin",
         | 
| 504 | 
            +
                      "type": "address"
         | 
| 505 | 
            +
                    },
         | 
| 506 | 
            +
                    {
         | 
| 507 | 
            +
                      "indexed": false,
         | 
| 508 | 
            +
                      "internalType": "Blocknumber",
         | 
| 509 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 510 | 
            +
                      "type": "uint32"
         | 
| 511 | 
            +
                    }
         | 
| 512 | 
            +
                  ],
         | 
| 513 | 
            +
                  "name": "LogStateUpdated",
         | 
| 514 | 
            +
                  "type": "event"
         | 
| 515 | 
            +
                },
         | 
| 516 | 
            +
                {
         | 
| 517 | 
            +
                  "inputs": [],
         | 
| 518 | 
            +
                  "name": "authority",
         | 
| 519 | 
            +
                  "outputs": [
         | 
| 520 | 
            +
                    {
         | 
| 521 | 
            +
                      "internalType": "address",
         | 
| 522 | 
            +
                      "name": "",
         | 
| 523 | 
            +
                      "type": "address"
         | 
| 524 | 
            +
                    }
         | 
| 525 | 
            +
                  ],
         | 
| 526 | 
            +
                  "stateMutability": "view",
         | 
| 527 | 
            +
                  "type": "function"
         | 
| 528 | 
            +
                },
         | 
| 529 | 
            +
                {
         | 
| 530 | 
            +
                  "inputs": [
         | 
| 531 | 
            +
                    {
         | 
| 532 | 
            +
                      "internalType": "ObjectType",
         | 
| 533 | 
            +
                      "name": "objectType",
         | 
| 534 | 
            +
                      "type": "uint8"
         | 
| 535 | 
            +
                    },
         | 
| 536 | 
            +
                    {
         | 
| 537 | 
            +
                      "internalType": "StateId",
         | 
| 538 | 
            +
                      "name": "fromId",
         | 
| 539 | 
            +
                      "type": "uint8"
         | 
| 540 | 
            +
                    },
         | 
| 541 | 
            +
                    {
         | 
| 542 | 
            +
                      "internalType": "StateId",
         | 
| 543 | 
            +
                      "name": "toId",
         | 
| 544 | 
            +
                      "type": "uint8"
         | 
| 545 | 
            +
                    }
         | 
| 546 | 
            +
                  ],
         | 
| 547 | 
            +
                  "name": "checkTransition",
         | 
| 548 | 
            +
                  "outputs": [],
         | 
| 549 | 
            +
                  "stateMutability": "view",
         | 
| 550 | 
            +
                  "type": "function"
         | 
| 551 | 
            +
                },
         | 
| 552 | 
            +
                {
         | 
| 553 | 
            +
                  "inputs": [
         | 
| 554 | 
            +
                    {
         | 
| 555 | 
            +
                      "internalType": "NftId",
         | 
| 556 | 
            +
                      "name": "applicationNftId",
         | 
| 557 | 
            +
                      "type": "uint96"
         | 
| 558 | 
            +
                    },
         | 
| 559 | 
            +
                    {
         | 
| 560 | 
            +
                      "components": [
         | 
| 561 | 
            +
                        {
         | 
| 562 | 
            +
                          "internalType": "NftId",
         | 
| 563 | 
            +
                          "name": "productNftId",
         | 
| 564 | 
            +
                          "type": "uint96"
         | 
| 565 | 
            +
                        },
         | 
| 566 | 
            +
                        {
         | 
| 567 | 
            +
                          "internalType": "NftId",
         | 
| 568 | 
            +
                          "name": "bundleNftId",
         | 
| 569 | 
            +
                          "type": "uint96"
         | 
| 570 | 
            +
                        },
         | 
| 571 | 
            +
                        {
         | 
| 572 | 
            +
                          "internalType": "ReferralId",
         | 
| 573 | 
            +
                          "name": "referralId",
         | 
| 574 | 
            +
                          "type": "bytes8"
         | 
| 575 | 
            +
                        },
         | 
| 576 | 
            +
                        {
         | 
| 577 | 
            +
                          "internalType": "RiskId",
         | 
| 578 | 
            +
                          "name": "riskId",
         | 
| 579 | 
            +
                          "type": "bytes8"
         | 
| 580 | 
            +
                        },
         | 
| 581 | 
            +
                        {
         | 
| 582 | 
            +
                          "internalType": "Amount",
         | 
| 583 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 584 | 
            +
                          "type": "uint96"
         | 
| 585 | 
            +
                        },
         | 
| 586 | 
            +
                        {
         | 
| 587 | 
            +
                          "internalType": "Amount",
         | 
| 588 | 
            +
                          "name": "premiumAmount",
         | 
| 589 | 
            +
                          "type": "uint96"
         | 
| 590 | 
            +
                        },
         | 
| 591 | 
            +
                        {
         | 
| 592 | 
            +
                          "internalType": "Amount",
         | 
| 593 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 594 | 
            +
                          "type": "uint96"
         | 
| 595 | 
            +
                        },
         | 
| 596 | 
            +
                        {
         | 
| 597 | 
            +
                          "internalType": "Seconds",
         | 
| 598 | 
            +
                          "name": "lifetime",
         | 
| 599 | 
            +
                          "type": "uint40"
         | 
| 600 | 
            +
                        },
         | 
| 601 | 
            +
                        {
         | 
| 602 | 
            +
                          "internalType": "bytes",
         | 
| 603 | 
            +
                          "name": "applicationData",
         | 
| 604 | 
            +
                          "type": "bytes"
         | 
| 605 | 
            +
                        },
         | 
| 606 | 
            +
                        {
         | 
| 607 | 
            +
                          "internalType": "bytes",
         | 
| 608 | 
            +
                          "name": "processData",
         | 
| 609 | 
            +
                          "type": "bytes"
         | 
| 610 | 
            +
                        },
         | 
| 611 | 
            +
                        {
         | 
| 612 | 
            +
                          "internalType": "uint16",
         | 
| 613 | 
            +
                          "name": "claimsCount",
         | 
| 614 | 
            +
                          "type": "uint16"
         | 
| 615 | 
            +
                        },
         | 
| 616 | 
            +
                        {
         | 
| 617 | 
            +
                          "internalType": "uint16",
         | 
| 618 | 
            +
                          "name": "openClaimsCount",
         | 
| 619 | 
            +
                          "type": "uint16"
         | 
| 620 | 
            +
                        },
         | 
| 621 | 
            +
                        {
         | 
| 622 | 
            +
                          "internalType": "Amount",
         | 
| 623 | 
            +
                          "name": "claimAmount",
         | 
| 624 | 
            +
                          "type": "uint96"
         | 
| 625 | 
            +
                        },
         | 
| 626 | 
            +
                        {
         | 
| 627 | 
            +
                          "internalType": "Amount",
         | 
| 628 | 
            +
                          "name": "payoutAmount",
         | 
| 629 | 
            +
                          "type": "uint96"
         | 
| 630 | 
            +
                        },
         | 
| 631 | 
            +
                        {
         | 
| 632 | 
            +
                          "internalType": "Timestamp",
         | 
| 633 | 
            +
                          "name": "activatedAt",
         | 
| 634 | 
            +
                          "type": "uint40"
         | 
| 635 | 
            +
                        },
         | 
| 636 | 
            +
                        {
         | 
| 637 | 
            +
                          "internalType": "Timestamp",
         | 
| 638 | 
            +
                          "name": "expiredAt",
         | 
| 639 | 
            +
                          "type": "uint40"
         | 
| 640 | 
            +
                        },
         | 
| 641 | 
            +
                        {
         | 
| 642 | 
            +
                          "internalType": "Timestamp",
         | 
| 643 | 
            +
                          "name": "closedAt",
         | 
| 644 | 
            +
                          "type": "uint40"
         | 
| 645 | 
            +
                        }
         | 
| 646 | 
            +
                      ],
         | 
| 647 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 648 | 
            +
                      "name": "policy",
         | 
| 649 | 
            +
                      "type": "tuple"
         | 
| 650 | 
            +
                    }
         | 
| 651 | 
            +
                  ],
         | 
| 652 | 
            +
                  "name": "createApplication",
         | 
| 653 | 
            +
                  "outputs": [],
         | 
| 654 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 655 | 
            +
                  "type": "function"
         | 
| 656 | 
            +
                },
         | 
| 657 | 
            +
                {
         | 
| 658 | 
            +
                  "inputs": [
         | 
| 659 | 
            +
                    {
         | 
| 660 | 
            +
                      "internalType": "NftId",
         | 
| 661 | 
            +
                      "name": "bundleNftId",
         | 
| 662 | 
            +
                      "type": "uint96"
         | 
| 663 | 
            +
                    },
         | 
| 664 | 
            +
                    {
         | 
| 665 | 
            +
                      "components": [
         | 
| 666 | 
            +
                        {
         | 
| 667 | 
            +
                          "internalType": "NftId",
         | 
| 668 | 
            +
                          "name": "poolNftId",
         | 
| 669 | 
            +
                          "type": "uint96"
         | 
| 670 | 
            +
                        },
         | 
| 671 | 
            +
                        {
         | 
| 672 | 
            +
                          "components": [
         | 
| 673 | 
            +
                            {
         | 
| 674 | 
            +
                              "internalType": "UFixed",
         | 
| 675 | 
            +
                              "name": "fractionalFee",
         | 
| 676 | 
            +
                              "type": "uint256"
         | 
| 677 | 
            +
                            },
         | 
| 678 | 
            +
                            {
         | 
| 679 | 
            +
                              "internalType": "uint256",
         | 
| 680 | 
            +
                              "name": "fixedFee",
         | 
| 681 | 
            +
                              "type": "uint256"
         | 
| 682 | 
            +
                            }
         | 
| 683 | 
            +
                          ],
         | 
| 684 | 
            +
                          "internalType": "struct Fee",
         | 
| 685 | 
            +
                          "name": "fee",
         | 
| 686 | 
            +
                          "type": "tuple"
         | 
| 687 | 
            +
                        },
         | 
| 688 | 
            +
                        {
         | 
| 689 | 
            +
                          "internalType": "bytes",
         | 
| 690 | 
            +
                          "name": "filter",
         | 
| 691 | 
            +
                          "type": "bytes"
         | 
| 692 | 
            +
                        },
         | 
| 693 | 
            +
                        {
         | 
| 694 | 
            +
                          "internalType": "Seconds",
         | 
| 695 | 
            +
                          "name": "lifetime",
         | 
| 696 | 
            +
                          "type": "uint40"
         | 
| 697 | 
            +
                        },
         | 
| 698 | 
            +
                        {
         | 
| 699 | 
            +
                          "internalType": "Timestamp",
         | 
| 700 | 
            +
                          "name": "expiredAt",
         | 
| 701 | 
            +
                          "type": "uint40"
         | 
| 702 | 
            +
                        },
         | 
| 703 | 
            +
                        {
         | 
| 704 | 
            +
                          "internalType": "Timestamp",
         | 
| 705 | 
            +
                          "name": "closedAt",
         | 
| 706 | 
            +
                          "type": "uint40"
         | 
| 707 | 
            +
                        }
         | 
| 708 | 
            +
                      ],
         | 
| 709 | 
            +
                      "internalType": "struct IBundle.BundleInfo",
         | 
| 710 | 
            +
                      "name": "bundle",
         | 
| 711 | 
            +
                      "type": "tuple"
         | 
| 712 | 
            +
                    }
         | 
| 713 | 
            +
                  ],
         | 
| 714 | 
            +
                  "name": "createBundle",
         | 
| 715 | 
            +
                  "outputs": [],
         | 
| 716 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 717 | 
            +
                  "type": "function"
         | 
| 718 | 
            +
                },
         | 
| 719 | 
            +
                {
         | 
| 720 | 
            +
                  "inputs": [
         | 
| 721 | 
            +
                    {
         | 
| 722 | 
            +
                      "internalType": "NftId",
         | 
| 723 | 
            +
                      "name": "policyNftId",
         | 
| 724 | 
            +
                      "type": "uint96"
         | 
| 725 | 
            +
                    },
         | 
| 726 | 
            +
                    {
         | 
| 727 | 
            +
                      "internalType": "ClaimId",
         | 
| 728 | 
            +
                      "name": "claimId",
         | 
| 729 | 
            +
                      "type": "uint16"
         | 
| 730 | 
            +
                    },
         | 
| 731 | 
            +
                    {
         | 
| 732 | 
            +
                      "components": [
         | 
| 733 | 
            +
                        {
         | 
| 734 | 
            +
                          "internalType": "Amount",
         | 
| 735 | 
            +
                          "name": "claimAmount",
         | 
| 736 | 
            +
                          "type": "uint96"
         | 
| 737 | 
            +
                        },
         | 
| 738 | 
            +
                        {
         | 
| 739 | 
            +
                          "internalType": "Amount",
         | 
| 740 | 
            +
                          "name": "paidAmount",
         | 
| 741 | 
            +
                          "type": "uint96"
         | 
| 742 | 
            +
                        },
         | 
| 743 | 
            +
                        {
         | 
| 744 | 
            +
                          "internalType": "uint8",
         | 
| 745 | 
            +
                          "name": "payoutsCount",
         | 
| 746 | 
            +
                          "type": "uint8"
         | 
| 747 | 
            +
                        },
         | 
| 748 | 
            +
                        {
         | 
| 749 | 
            +
                          "internalType": "uint8",
         | 
| 750 | 
            +
                          "name": "openPayoutsCount",
         | 
| 751 | 
            +
                          "type": "uint8"
         | 
| 752 | 
            +
                        },
         | 
| 753 | 
            +
                        {
         | 
| 754 | 
            +
                          "internalType": "bytes",
         | 
| 755 | 
            +
                          "name": "submissionData",
         | 
| 756 | 
            +
                          "type": "bytes"
         | 
| 757 | 
            +
                        },
         | 
| 758 | 
            +
                        {
         | 
| 759 | 
            +
                          "internalType": "bytes",
         | 
| 760 | 
            +
                          "name": "processData",
         | 
| 761 | 
            +
                          "type": "bytes"
         | 
| 762 | 
            +
                        },
         | 
| 763 | 
            +
                        {
         | 
| 764 | 
            +
                          "internalType": "Timestamp",
         | 
| 765 | 
            +
                          "name": "closedAt",
         | 
| 766 | 
            +
                          "type": "uint40"
         | 
| 767 | 
            +
                        }
         | 
| 768 | 
            +
                      ],
         | 
| 769 | 
            +
                      "internalType": "struct IPolicy.ClaimInfo",
         | 
| 770 | 
            +
                      "name": "claim",
         | 
| 771 | 
            +
                      "type": "tuple"
         | 
| 772 | 
            +
                    }
         | 
| 773 | 
            +
                  ],
         | 
| 774 | 
            +
                  "name": "createClaim",
         | 
| 775 | 
            +
                  "outputs": [],
         | 
| 776 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 777 | 
            +
                  "type": "function"
         | 
| 778 | 
            +
                },
         | 
| 779 | 
            +
                {
         | 
| 780 | 
            +
                  "inputs": [
         | 
| 781 | 
            +
                    {
         | 
| 782 | 
            +
                      "internalType": "NftId",
         | 
| 783 | 
            +
                      "name": "componentNftId",
         | 
| 784 | 
            +
                      "type": "uint96"
         | 
| 785 | 
            +
                    },
         | 
| 786 | 
            +
                    {
         | 
| 787 | 
            +
                      "components": [
         | 
| 788 | 
            +
                        {
         | 
| 789 | 
            +
                          "internalType": "string",
         | 
| 790 | 
            +
                          "name": "name",
         | 
| 791 | 
            +
                          "type": "string"
         | 
| 792 | 
            +
                        },
         | 
| 793 | 
            +
                        {
         | 
| 794 | 
            +
                          "internalType": "NftId",
         | 
| 795 | 
            +
                          "name": "productNftId",
         | 
| 796 | 
            +
                          "type": "uint96"
         | 
| 797 | 
            +
                        },
         | 
| 798 | 
            +
                        {
         | 
| 799 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 800 | 
            +
                          "name": "token",
         | 
| 801 | 
            +
                          "type": "address"
         | 
| 802 | 
            +
                        },
         | 
| 803 | 
            +
                        {
         | 
| 804 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 805 | 
            +
                          "name": "tokenHandler",
         | 
| 806 | 
            +
                          "type": "address"
         | 
| 807 | 
            +
                        },
         | 
| 808 | 
            +
                        {
         | 
| 809 | 
            +
                          "internalType": "address",
         | 
| 810 | 
            +
                          "name": "wallet",
         | 
| 811 | 
            +
                          "type": "address"
         | 
| 812 | 
            +
                        },
         | 
| 813 | 
            +
                        {
         | 
| 814 | 
            +
                          "internalType": "bytes",
         | 
| 815 | 
            +
                          "name": "data",
         | 
| 816 | 
            +
                          "type": "bytes"
         | 
| 817 | 
            +
                        }
         | 
| 818 | 
            +
                      ],
         | 
| 819 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 820 | 
            +
                      "name": "componentInfo",
         | 
| 821 | 
            +
                      "type": "tuple"
         | 
| 822 | 
            +
                    }
         | 
| 823 | 
            +
                  ],
         | 
| 824 | 
            +
                  "name": "createComponent",
         | 
| 825 | 
            +
                  "outputs": [],
         | 
| 826 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 827 | 
            +
                  "type": "function"
         | 
| 828 | 
            +
                },
         | 
| 829 | 
            +
                {
         | 
| 830 | 
            +
                  "inputs": [
         | 
| 831 | 
            +
                    {
         | 
| 832 | 
            +
                      "internalType": "NftId",
         | 
| 833 | 
            +
                      "name": "distributorNftId",
         | 
| 834 | 
            +
                      "type": "uint96"
         | 
| 835 | 
            +
                    },
         | 
| 836 | 
            +
                    {
         | 
| 837 | 
            +
                      "components": [
         | 
| 838 | 
            +
                        {
         | 
| 839 | 
            +
                          "internalType": "DistributorType",
         | 
| 840 | 
            +
                          "name": "distributorType",
         | 
| 841 | 
            +
                          "type": "bytes8"
         | 
| 842 | 
            +
                        },
         | 
| 843 | 
            +
                        {
         | 
| 844 | 
            +
                          "internalType": "bool",
         | 
| 845 | 
            +
                          "name": "active",
         | 
| 846 | 
            +
                          "type": "bool"
         | 
| 847 | 
            +
                        },
         | 
| 848 | 
            +
                        {
         | 
| 849 | 
            +
                          "internalType": "bytes",
         | 
| 850 | 
            +
                          "name": "data",
         | 
| 851 | 
            +
                          "type": "bytes"
         | 
| 852 | 
            +
                        },
         | 
| 853 | 
            +
                        {
         | 
| 854 | 
            +
                          "internalType": "Amount",
         | 
| 855 | 
            +
                          "name": "commissionAmount",
         | 
| 856 | 
            +
                          "type": "uint96"
         | 
| 857 | 
            +
                        },
         | 
| 858 | 
            +
                        {
         | 
| 859 | 
            +
                          "internalType": "uint32",
         | 
| 860 | 
            +
                          "name": "numPoliciesSold",
         | 
| 861 | 
            +
                          "type": "uint32"
         | 
| 862 | 
            +
                        }
         | 
| 863 | 
            +
                      ],
         | 
| 864 | 
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 865 | 
            +
                      "name": "info",
         | 
| 866 | 
            +
                      "type": "tuple"
         | 
| 867 | 
            +
                    }
         | 
| 868 | 
            +
                  ],
         | 
| 869 | 
            +
                  "name": "createDistributor",
         | 
| 870 | 
            +
                  "outputs": [],
         | 
| 871 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 872 | 
            +
                  "type": "function"
         | 
| 873 | 
            +
                },
         | 
| 874 | 
            +
                {
         | 
| 875 | 
            +
                  "inputs": [
         | 
| 876 | 
            +
                    {
         | 
| 877 | 
            +
                      "internalType": "DistributorType",
         | 
| 878 | 
            +
                      "name": "distributorType",
         | 
| 879 | 
            +
                      "type": "bytes8"
         | 
| 880 | 
            +
                    },
         | 
| 881 | 
            +
                    {
         | 
| 882 | 
            +
                      "components": [
         | 
| 883 | 
            +
                        {
         | 
| 884 | 
            +
                          "internalType": "string",
         | 
| 885 | 
            +
                          "name": "name",
         | 
| 886 | 
            +
                          "type": "string"
         | 
| 887 | 
            +
                        },
         | 
| 888 | 
            +
                        {
         | 
| 889 | 
            +
                          "internalType": "UFixed",
         | 
| 890 | 
            +
                          "name": "minDiscountPercentage",
         | 
| 891 | 
            +
                          "type": "uint256"
         | 
| 892 | 
            +
                        },
         | 
| 893 | 
            +
                        {
         | 
| 894 | 
            +
                          "internalType": "UFixed",
         | 
| 895 | 
            +
                          "name": "maxDiscountPercentage",
         | 
| 896 | 
            +
                          "type": "uint256"
         | 
| 897 | 
            +
                        },
         | 
| 898 | 
            +
                        {
         | 
| 899 | 
            +
                          "internalType": "UFixed",
         | 
| 900 | 
            +
                          "name": "commissionPercentage",
         | 
| 901 | 
            +
                          "type": "uint256"
         | 
| 902 | 
            +
                        },
         | 
| 903 | 
            +
                        {
         | 
| 904 | 
            +
                          "internalType": "uint32",
         | 
| 905 | 
            +
                          "name": "maxReferralCount",
         | 
| 906 | 
            +
                          "type": "uint32"
         | 
| 907 | 
            +
                        },
         | 
| 908 | 
            +
                        {
         | 
| 909 | 
            +
                          "internalType": "uint32",
         | 
| 910 | 
            +
                          "name": "maxReferralLifetime",
         | 
| 911 | 
            +
                          "type": "uint32"
         | 
| 912 | 
            +
                        },
         | 
| 913 | 
            +
                        {
         | 
| 914 | 
            +
                          "internalType": "bool",
         | 
| 915 | 
            +
                          "name": "allowSelfReferrals",
         | 
| 916 | 
            +
                          "type": "bool"
         | 
| 917 | 
            +
                        },
         | 
| 918 | 
            +
                        {
         | 
| 919 | 
            +
                          "internalType": "bool",
         | 
| 920 | 
            +
                          "name": "allowRenewals",
         | 
| 921 | 
            +
                          "type": "bool"
         | 
| 922 | 
            +
                        },
         | 
| 923 | 
            +
                        {
         | 
| 924 | 
            +
                          "internalType": "bytes",
         | 
| 925 | 
            +
                          "name": "data",
         | 
| 926 | 
            +
                          "type": "bytes"
         | 
| 927 | 
            +
                        }
         | 
| 928 | 
            +
                      ],
         | 
| 929 | 
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 930 | 
            +
                      "name": "info",
         | 
| 931 | 
            +
                      "type": "tuple"
         | 
| 932 | 
            +
                    }
         | 
| 933 | 
            +
                  ],
         | 
| 934 | 
            +
                  "name": "createDistributorType",
         | 
| 935 | 
            +
                  "outputs": [],
         | 
| 936 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 937 | 
            +
                  "type": "function"
         | 
| 938 | 
            +
                },
         | 
| 939 | 
            +
                {
         | 
| 940 | 
            +
                  "inputs": [
         | 
| 941 | 
            +
                    {
         | 
| 942 | 
            +
                      "internalType": "NftId",
         | 
| 943 | 
            +
                      "name": "policyNftId",
         | 
| 944 | 
            +
                      "type": "uint96"
         | 
| 945 | 
            +
                    },
         | 
| 946 | 
            +
                    {
         | 
| 947 | 
            +
                      "internalType": "PayoutId",
         | 
| 948 | 
            +
                      "name": "payoutId",
         | 
| 949 | 
            +
                      "type": "uint24"
         | 
| 950 | 
            +
                    },
         | 
| 951 | 
            +
                    {
         | 
| 952 | 
            +
                      "components": [
         | 
| 953 | 
            +
                        {
         | 
| 954 | 
            +
                          "internalType": "ClaimId",
         | 
| 955 | 
            +
                          "name": "claimId",
         | 
| 956 | 
            +
                          "type": "uint16"
         | 
| 957 | 
            +
                        },
         | 
| 958 | 
            +
                        {
         | 
| 959 | 
            +
                          "internalType": "Amount",
         | 
| 960 | 
            +
                          "name": "amount",
         | 
| 961 | 
            +
                          "type": "uint96"
         | 
| 962 | 
            +
                        },
         | 
| 963 | 
            +
                        {
         | 
| 964 | 
            +
                          "internalType": "bytes",
         | 
| 965 | 
            +
                          "name": "data",
         | 
| 966 | 
            +
                          "type": "bytes"
         | 
| 967 | 
            +
                        },
         | 
| 968 | 
            +
                        {
         | 
| 969 | 
            +
                          "internalType": "Timestamp",
         | 
| 970 | 
            +
                          "name": "paidAt",
         | 
| 971 | 
            +
                          "type": "uint40"
         | 
| 972 | 
            +
                        }
         | 
| 973 | 
            +
                      ],
         | 
| 974 | 
            +
                      "internalType": "struct IPolicy.PayoutInfo",
         | 
| 975 | 
            +
                      "name": "payout",
         | 
| 976 | 
            +
                      "type": "tuple"
         | 
| 977 | 
            +
                    }
         | 
| 978 | 
            +
                  ],
         | 
| 979 | 
            +
                  "name": "createPayout",
         | 
| 980 | 
            +
                  "outputs": [],
         | 
| 981 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 982 | 
            +
                  "type": "function"
         | 
| 983 | 
            +
                },
         | 
| 984 | 
            +
                {
         | 
| 985 | 
            +
                  "inputs": [
         | 
| 986 | 
            +
                    {
         | 
| 987 | 
            +
                      "internalType": "NftId",
         | 
| 988 | 
            +
                      "name": "poolNftId",
         | 
| 989 | 
            +
                      "type": "uint96"
         | 
| 990 | 
            +
                    },
         | 
| 991 | 
            +
                    {
         | 
| 992 | 
            +
                      "components": [
         | 
| 993 | 
            +
                        {
         | 
| 994 | 
            +
                          "internalType": "NftId",
         | 
| 995 | 
            +
                          "name": "productNftId",
         | 
| 996 | 
            +
                          "type": "uint96"
         | 
| 997 | 
            +
                        },
         | 
| 998 | 
            +
                        {
         | 
| 999 | 
            +
                          "internalType": "RoleId",
         | 
| 1000 | 
            +
                          "name": "bundleOwnerRole",
         | 
| 1001 | 
            +
                          "type": "uint64"
         | 
| 1002 | 
            +
                        },
         | 
| 1003 | 
            +
                        {
         | 
| 1004 | 
            +
                          "internalType": "Amount",
         | 
| 1005 | 
            +
                          "name": "maxCapitalAmount",
         | 
| 1006 | 
            +
                          "type": "uint96"
         | 
| 1007 | 
            +
                        },
         | 
| 1008 | 
            +
                        {
         | 
| 1009 | 
            +
                          "internalType": "bool",
         | 
| 1010 | 
            +
                          "name": "isInterceptingBundleTransfers",
         | 
| 1011 | 
            +
                          "type": "bool"
         | 
| 1012 | 
            +
                        },
         | 
| 1013 | 
            +
                        {
         | 
| 1014 | 
            +
                          "internalType": "bool",
         | 
| 1015 | 
            +
                          "name": "isExternallyManaged",
         | 
| 1016 | 
            +
                          "type": "bool"
         | 
| 1017 | 
            +
                        },
         | 
| 1018 | 
            +
                        {
         | 
| 1019 | 
            +
                          "internalType": "bool",
         | 
| 1020 | 
            +
                          "name": "isVerifyingApplications",
         | 
| 1021 | 
            +
                          "type": "bool"
         | 
| 1022 | 
            +
                        },
         | 
| 1023 | 
            +
                        {
         | 
| 1024 | 
            +
                          "internalType": "UFixed",
         | 
| 1025 | 
            +
                          "name": "collateralizationLevel",
         | 
| 1026 | 
            +
                          "type": "uint256"
         | 
| 1027 | 
            +
                        },
         | 
| 1028 | 
            +
                        {
         | 
| 1029 | 
            +
                          "internalType": "UFixed",
         | 
| 1030 | 
            +
                          "name": "retentionLevel",
         | 
| 1031 | 
            +
                          "type": "uint256"
         | 
| 1032 | 
            +
                        },
         | 
| 1033 | 
            +
                        {
         | 
| 1034 | 
            +
                          "components": [
         | 
| 1035 | 
            +
                            {
         | 
| 1036 | 
            +
                              "internalType": "UFixed",
         | 
| 1037 | 
            +
                              "name": "fractionalFee",
         | 
| 1038 | 
            +
                              "type": "uint256"
         | 
| 1039 | 
            +
                            },
         | 
| 1040 | 
            +
                            {
         | 
| 1041 | 
            +
                              "internalType": "uint256",
         | 
| 1042 | 
            +
                              "name": "fixedFee",
         | 
| 1043 | 
            +
                              "type": "uint256"
         | 
| 1044 | 
            +
                            }
         | 
| 1045 | 
            +
                          ],
         | 
| 1046 | 
            +
                          "internalType": "struct Fee",
         | 
| 1047 | 
            +
                          "name": "poolFee",
         | 
| 1048 | 
            +
                          "type": "tuple"
         | 
| 1049 | 
            +
                        },
         | 
| 1050 | 
            +
                        {
         | 
| 1051 | 
            +
                          "components": [
         | 
| 1052 | 
            +
                            {
         | 
| 1053 | 
            +
                              "internalType": "UFixed",
         | 
| 1054 | 
            +
                              "name": "fractionalFee",
         | 
| 1055 | 
            +
                              "type": "uint256"
         | 
| 1056 | 
            +
                            },
         | 
| 1057 | 
            +
                            {
         | 
| 1058 | 
            +
                              "internalType": "uint256",
         | 
| 1059 | 
            +
                              "name": "fixedFee",
         | 
| 1060 | 
            +
                              "type": "uint256"
         | 
| 1061 | 
            +
                            }
         | 
| 1062 | 
            +
                          ],
         | 
| 1063 | 
            +
                          "internalType": "struct Fee",
         | 
| 1064 | 
            +
                          "name": "stakingFee",
         | 
| 1065 | 
            +
                          "type": "tuple"
         | 
| 1066 | 
            +
                        },
         | 
| 1067 | 
            +
                        {
         | 
| 1068 | 
            +
                          "components": [
         | 
| 1069 | 
            +
                            {
         | 
| 1070 | 
            +
                              "internalType": "UFixed",
         | 
| 1071 | 
            +
                              "name": "fractionalFee",
         | 
| 1072 | 
            +
                              "type": "uint256"
         | 
| 1073 | 
            +
                            },
         | 
| 1074 | 
            +
                            {
         | 
| 1075 | 
            +
                              "internalType": "uint256",
         | 
| 1076 | 
            +
                              "name": "fixedFee",
         | 
| 1077 | 
            +
                              "type": "uint256"
         | 
| 1078 | 
            +
                            }
         | 
| 1079 | 
            +
                          ],
         | 
| 1080 | 
            +
                          "internalType": "struct Fee",
         | 
| 1081 | 
            +
                          "name": "performanceFee",
         | 
| 1082 | 
            +
                          "type": "tuple"
         | 
| 1083 | 
            +
                        }
         | 
| 1084 | 
            +
                      ],
         | 
| 1085 | 
            +
                      "internalType": "struct IComponents.PoolInfo",
         | 
| 1086 | 
            +
                      "name": "info",
         | 
| 1087 | 
            +
                      "type": "tuple"
         | 
| 1088 | 
            +
                    }
         | 
| 1089 | 
            +
                  ],
         | 
| 1090 | 
            +
                  "name": "createPool",
         | 
| 1091 | 
            +
                  "outputs": [],
         | 
| 1092 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1093 | 
            +
                  "type": "function"
         | 
| 1094 | 
            +
                },
         | 
| 1095 | 
            +
                {
         | 
| 1096 | 
            +
                  "inputs": [
         | 
| 1097 | 
            +
                    {
         | 
| 1098 | 
            +
                      "internalType": "NftId",
         | 
| 1099 | 
            +
                      "name": "productNftId",
         | 
| 1100 | 
            +
                      "type": "uint96"
         | 
| 1101 | 
            +
                    },
         | 
| 1102 | 
            +
                    {
         | 
| 1103 | 
            +
                      "components": [
         | 
| 1104 | 
            +
                        {
         | 
| 1105 | 
            +
                          "internalType": "NftId",
         | 
| 1106 | 
            +
                          "name": "distributionNftId",
         | 
| 1107 | 
            +
                          "type": "uint96"
         | 
| 1108 | 
            +
                        },
         | 
| 1109 | 
            +
                        {
         | 
| 1110 | 
            +
                          "internalType": "NftId",
         | 
| 1111 | 
            +
                          "name": "poolNftId",
         | 
| 1112 | 
            +
                          "type": "uint96"
         | 
| 1113 | 
            +
                        },
         | 
| 1114 | 
            +
                        {
         | 
| 1115 | 
            +
                          "components": [
         | 
| 1116 | 
            +
                            {
         | 
| 1117 | 
            +
                              "internalType": "UFixed",
         | 
| 1118 | 
            +
                              "name": "fractionalFee",
         | 
| 1119 | 
            +
                              "type": "uint256"
         | 
| 1120 | 
            +
                            },
         | 
| 1121 | 
            +
                            {
         | 
| 1122 | 
            +
                              "internalType": "uint256",
         | 
| 1123 | 
            +
                              "name": "fixedFee",
         | 
| 1124 | 
            +
                              "type": "uint256"
         | 
| 1125 | 
            +
                            }
         | 
| 1126 | 
            +
                          ],
         | 
| 1127 | 
            +
                          "internalType": "struct Fee",
         | 
| 1128 | 
            +
                          "name": "productFee",
         | 
| 1129 | 
            +
                          "type": "tuple"
         | 
| 1130 | 
            +
                        },
         | 
| 1131 | 
            +
                        {
         | 
| 1132 | 
            +
                          "components": [
         | 
| 1133 | 
            +
                            {
         | 
| 1134 | 
            +
                              "internalType": "UFixed",
         | 
| 1135 | 
            +
                              "name": "fractionalFee",
         | 
| 1136 | 
            +
                              "type": "uint256"
         | 
| 1137 | 
            +
                            },
         | 
| 1138 | 
            +
                            {
         | 
| 1139 | 
            +
                              "internalType": "uint256",
         | 
| 1140 | 
            +
                              "name": "fixedFee",
         | 
| 1141 | 
            +
                              "type": "uint256"
         | 
| 1142 | 
            +
                            }
         | 
| 1143 | 
            +
                          ],
         | 
| 1144 | 
            +
                          "internalType": "struct Fee",
         | 
| 1145 | 
            +
                          "name": "processingFee",
         | 
| 1146 | 
            +
                          "type": "tuple"
         | 
| 1147 | 
            +
                        },
         | 
| 1148 | 
            +
                        {
         | 
| 1149 | 
            +
                          "components": [
         | 
| 1150 | 
            +
                            {
         | 
| 1151 | 
            +
                              "internalType": "UFixed",
         | 
| 1152 | 
            +
                              "name": "fractionalFee",
         | 
| 1153 | 
            +
                              "type": "uint256"
         | 
| 1154 | 
            +
                            },
         | 
| 1155 | 
            +
                            {
         | 
| 1156 | 
            +
                              "internalType": "uint256",
         | 
| 1157 | 
            +
                              "name": "fixedFee",
         | 
| 1158 | 
            +
                              "type": "uint256"
         | 
| 1159 | 
            +
                            }
         | 
| 1160 | 
            +
                          ],
         | 
| 1161 | 
            +
                          "internalType": "struct Fee",
         | 
| 1162 | 
            +
                          "name": "distributionFee",
         | 
| 1163 | 
            +
                          "type": "tuple"
         | 
| 1164 | 
            +
                        },
         | 
| 1165 | 
            +
                        {
         | 
| 1166 | 
            +
                          "components": [
         | 
| 1167 | 
            +
                            {
         | 
| 1168 | 
            +
                              "internalType": "UFixed",
         | 
| 1169 | 
            +
                              "name": "fractionalFee",
         | 
| 1170 | 
            +
                              "type": "uint256"
         | 
| 1171 | 
            +
                            },
         | 
| 1172 | 
            +
                            {
         | 
| 1173 | 
            +
                              "internalType": "uint256",
         | 
| 1174 | 
            +
                              "name": "fixedFee",
         | 
| 1175 | 
            +
                              "type": "uint256"
         | 
| 1176 | 
            +
                            }
         | 
| 1177 | 
            +
                          ],
         | 
| 1178 | 
            +
                          "internalType": "struct Fee",
         | 
| 1179 | 
            +
                          "name": "minDistributionOwnerFee",
         | 
| 1180 | 
            +
                          "type": "tuple"
         | 
| 1181 | 
            +
                        },
         | 
| 1182 | 
            +
                        {
         | 
| 1183 | 
            +
                          "components": [
         | 
| 1184 | 
            +
                            {
         | 
| 1185 | 
            +
                              "internalType": "UFixed",
         | 
| 1186 | 
            +
                              "name": "fractionalFee",
         | 
| 1187 | 
            +
                              "type": "uint256"
         | 
| 1188 | 
            +
                            },
         | 
| 1189 | 
            +
                            {
         | 
| 1190 | 
            +
                              "internalType": "uint256",
         | 
| 1191 | 
            +
                              "name": "fixedFee",
         | 
| 1192 | 
            +
                              "type": "uint256"
         | 
| 1193 | 
            +
                            }
         | 
| 1194 | 
            +
                          ],
         | 
| 1195 | 
            +
                          "internalType": "struct Fee",
         | 
| 1196 | 
            +
                          "name": "poolFee",
         | 
| 1197 | 
            +
                          "type": "tuple"
         | 
| 1198 | 
            +
                        },
         | 
| 1199 | 
            +
                        {
         | 
| 1200 | 
            +
                          "components": [
         | 
| 1201 | 
            +
                            {
         | 
| 1202 | 
            +
                              "internalType": "UFixed",
         | 
| 1203 | 
            +
                              "name": "fractionalFee",
         | 
| 1204 | 
            +
                              "type": "uint256"
         | 
| 1205 | 
            +
                            },
         | 
| 1206 | 
            +
                            {
         | 
| 1207 | 
            +
                              "internalType": "uint256",
         | 
| 1208 | 
            +
                              "name": "fixedFee",
         | 
| 1209 | 
            +
                              "type": "uint256"
         | 
| 1210 | 
            +
                            }
         | 
| 1211 | 
            +
                          ],
         | 
| 1212 | 
            +
                          "internalType": "struct Fee",
         | 
| 1213 | 
            +
                          "name": "stakingFee",
         | 
| 1214 | 
            +
                          "type": "tuple"
         | 
| 1215 | 
            +
                        },
         | 
| 1216 | 
            +
                        {
         | 
| 1217 | 
            +
                          "components": [
         | 
| 1218 | 
            +
                            {
         | 
| 1219 | 
            +
                              "internalType": "UFixed",
         | 
| 1220 | 
            +
                              "name": "fractionalFee",
         | 
| 1221 | 
            +
                              "type": "uint256"
         | 
| 1222 | 
            +
                            },
         | 
| 1223 | 
            +
                            {
         | 
| 1224 | 
            +
                              "internalType": "uint256",
         | 
| 1225 | 
            +
                              "name": "fixedFee",
         | 
| 1226 | 
            +
                              "type": "uint256"
         | 
| 1227 | 
            +
                            }
         | 
| 1228 | 
            +
                          ],
         | 
| 1229 | 
            +
                          "internalType": "struct Fee",
         | 
| 1230 | 
            +
                          "name": "performanceFee",
         | 
| 1231 | 
            +
                          "type": "tuple"
         | 
| 1232 | 
            +
                        }
         | 
| 1233 | 
            +
                      ],
         | 
| 1234 | 
            +
                      "internalType": "struct IComponents.ProductInfo",
         | 
| 1235 | 
            +
                      "name": "info",
         | 
| 1236 | 
            +
                      "type": "tuple"
         | 
| 1237 | 
            +
                    }
         | 
| 1238 | 
            +
                  ],
         | 
| 1239 | 
            +
                  "name": "createProduct",
         | 
| 1240 | 
            +
                  "outputs": [],
         | 
| 1241 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1242 | 
            +
                  "type": "function"
         | 
| 1243 | 
            +
                },
         | 
| 1244 | 
            +
                {
         | 
| 1245 | 
            +
                  "inputs": [
         | 
| 1246 | 
            +
                    {
         | 
| 1247 | 
            +
                      "internalType": "ReferralId",
         | 
| 1248 | 
            +
                      "name": "referralId",
         | 
| 1249 | 
            +
                      "type": "bytes8"
         | 
| 1250 | 
            +
                    },
         | 
| 1251 | 
            +
                    {
         | 
| 1252 | 
            +
                      "components": [
         | 
| 1253 | 
            +
                        {
         | 
| 1254 | 
            +
                          "internalType": "NftId",
         | 
| 1255 | 
            +
                          "name": "distributorNftId",
         | 
| 1256 | 
            +
                          "type": "uint96"
         | 
| 1257 | 
            +
                        },
         | 
| 1258 | 
            +
                        {
         | 
| 1259 | 
            +
                          "internalType": "string",
         | 
| 1260 | 
            +
                          "name": "referralCode",
         | 
| 1261 | 
            +
                          "type": "string"
         | 
| 1262 | 
            +
                        },
         | 
| 1263 | 
            +
                        {
         | 
| 1264 | 
            +
                          "internalType": "UFixed",
         | 
| 1265 | 
            +
                          "name": "discountPercentage",
         | 
| 1266 | 
            +
                          "type": "uint256"
         | 
| 1267 | 
            +
                        },
         | 
| 1268 | 
            +
                        {
         | 
| 1269 | 
            +
                          "internalType": "uint32",
         | 
| 1270 | 
            +
                          "name": "maxReferrals",
         | 
| 1271 | 
            +
                          "type": "uint32"
         | 
| 1272 | 
            +
                        },
         | 
| 1273 | 
            +
                        {
         | 
| 1274 | 
            +
                          "internalType": "uint32",
         | 
| 1275 | 
            +
                          "name": "usedReferrals",
         | 
| 1276 | 
            +
                          "type": "uint32"
         | 
| 1277 | 
            +
                        },
         | 
| 1278 | 
            +
                        {
         | 
| 1279 | 
            +
                          "internalType": "Timestamp",
         | 
| 1280 | 
            +
                          "name": "expiryAt",
         | 
| 1281 | 
            +
                          "type": "uint40"
         | 
| 1282 | 
            +
                        },
         | 
| 1283 | 
            +
                        {
         | 
| 1284 | 
            +
                          "internalType": "bytes",
         | 
| 1285 | 
            +
                          "name": "data",
         | 
| 1286 | 
            +
                          "type": "bytes"
         | 
| 1287 | 
            +
                        }
         | 
| 1288 | 
            +
                      ],
         | 
| 1289 | 
            +
                      "internalType": "struct IDistribution.ReferralInfo",
         | 
| 1290 | 
            +
                      "name": "referralInfo",
         | 
| 1291 | 
            +
                      "type": "tuple"
         | 
| 1292 | 
            +
                    }
         | 
| 1293 | 
            +
                  ],
         | 
| 1294 | 
            +
                  "name": "createReferral",
         | 
| 1295 | 
            +
                  "outputs": [],
         | 
| 1296 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1297 | 
            +
                  "type": "function"
         | 
| 1298 | 
            +
                },
         | 
| 1299 | 
            +
                {
         | 
| 1300 | 
            +
                  "inputs": [
         | 
| 1301 | 
            +
                    {
         | 
| 1302 | 
            +
                      "components": [
         | 
| 1303 | 
            +
                        {
         | 
| 1304 | 
            +
                          "internalType": "NftId",
         | 
| 1305 | 
            +
                          "name": "requesterNftId",
         | 
| 1306 | 
            +
                          "type": "uint96"
         | 
| 1307 | 
            +
                        },
         | 
| 1308 | 
            +
                        {
         | 
| 1309 | 
            +
                          "internalType": "string",
         | 
| 1310 | 
            +
                          "name": "callbackMethodName",
         | 
| 1311 | 
            +
                          "type": "string"
         | 
| 1312 | 
            +
                        },
         | 
| 1313 | 
            +
                        {
         | 
| 1314 | 
            +
                          "internalType": "NftId",
         | 
| 1315 | 
            +
                          "name": "oracleNftId",
         | 
| 1316 | 
            +
                          "type": "uint96"
         | 
| 1317 | 
            +
                        },
         | 
| 1318 | 
            +
                        {
         | 
| 1319 | 
            +
                          "internalType": "bytes",
         | 
| 1320 | 
            +
                          "name": "requestData",
         | 
| 1321 | 
            +
                          "type": "bytes"
         | 
| 1322 | 
            +
                        },
         | 
| 1323 | 
            +
                        {
         | 
| 1324 | 
            +
                          "internalType": "bytes",
         | 
| 1325 | 
            +
                          "name": "responseData",
         | 
| 1326 | 
            +
                          "type": "bytes"
         | 
| 1327 | 
            +
                        },
         | 
| 1328 | 
            +
                        {
         | 
| 1329 | 
            +
                          "internalType": "Timestamp",
         | 
| 1330 | 
            +
                          "name": "respondedAt",
         | 
| 1331 | 
            +
                          "type": "uint40"
         | 
| 1332 | 
            +
                        },
         | 
| 1333 | 
            +
                        {
         | 
| 1334 | 
            +
                          "internalType": "Timestamp",
         | 
| 1335 | 
            +
                          "name": "expiredAt",
         | 
| 1336 | 
            +
                          "type": "uint40"
         | 
| 1337 | 
            +
                        },
         | 
| 1338 | 
            +
                        {
         | 
| 1339 | 
            +
                          "internalType": "bool",
         | 
| 1340 | 
            +
                          "name": "isCancelled",
         | 
| 1341 | 
            +
                          "type": "bool"
         | 
| 1342 | 
            +
                        }
         | 
| 1343 | 
            +
                      ],
         | 
| 1344 | 
            +
                      "internalType": "struct IOracle.RequestInfo",
         | 
| 1345 | 
            +
                      "name": "request",
         | 
| 1346 | 
            +
                      "type": "tuple"
         | 
| 1347 | 
            +
                    }
         | 
| 1348 | 
            +
                  ],
         | 
| 1349 | 
            +
                  "name": "createRequest",
         | 
| 1350 | 
            +
                  "outputs": [
         | 
| 1351 | 
            +
                    {
         | 
| 1352 | 
            +
                      "internalType": "RequestId",
         | 
| 1353 | 
            +
                      "name": "requestId",
         | 
| 1354 | 
            +
                      "type": "uint64"
         | 
| 1355 | 
            +
                    }
         | 
| 1356 | 
            +
                  ],
         | 
| 1357 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1358 | 
            +
                  "type": "function"
         | 
| 1359 | 
            +
                },
         | 
| 1360 | 
            +
                {
         | 
| 1361 | 
            +
                  "inputs": [
         | 
| 1362 | 
            +
                    {
         | 
| 1363 | 
            +
                      "internalType": "RiskId",
         | 
| 1364 | 
            +
                      "name": "riskId",
         | 
| 1365 | 
            +
                      "type": "bytes8"
         | 
| 1366 | 
            +
                    },
         | 
| 1367 | 
            +
                    {
         | 
| 1368 | 
            +
                      "components": [
         | 
| 1369 | 
            +
                        {
         | 
| 1370 | 
            +
                          "internalType": "NftId",
         | 
| 1371 | 
            +
                          "name": "productNftId",
         | 
| 1372 | 
            +
                          "type": "uint96"
         | 
| 1373 | 
            +
                        },
         | 
| 1374 | 
            +
                        {
         | 
| 1375 | 
            +
                          "internalType": "bytes",
         | 
| 1376 | 
            +
                          "name": "data",
         | 
| 1377 | 
            +
                          "type": "bytes"
         | 
| 1378 | 
            +
                        }
         | 
| 1379 | 
            +
                      ],
         | 
| 1380 | 
            +
                      "internalType": "struct IRisk.RiskInfo",
         | 
| 1381 | 
            +
                      "name": "risk",
         | 
| 1382 | 
            +
                      "type": "tuple"
         | 
| 1383 | 
            +
                    }
         | 
| 1384 | 
            +
                  ],
         | 
| 1385 | 
            +
                  "name": "createRisk",
         | 
| 1386 | 
            +
                  "outputs": [],
         | 
| 1387 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1388 | 
            +
                  "type": "function"
         | 
| 1389 | 
            +
                },
         | 
| 1390 | 
            +
                {
         | 
| 1391 | 
            +
                  "inputs": [
         | 
| 1392 | 
            +
                    {
         | 
| 1393 | 
            +
                      "internalType": "NftId",
         | 
| 1394 | 
            +
                      "name": "targetNftId",
         | 
| 1395 | 
            +
                      "type": "uint96"
         | 
| 1396 | 
            +
                    },
         | 
| 1397 | 
            +
                    {
         | 
| 1398 | 
            +
                      "internalType": "Amount",
         | 
| 1399 | 
            +
                      "name": "amount",
         | 
| 1400 | 
            +
                      "type": "uint96"
         | 
| 1401 | 
            +
                    }
         | 
| 1402 | 
            +
                  ],
         | 
| 1403 | 
            +
                  "name": "decreaseBalance",
         | 
| 1404 | 
            +
                  "outputs": [
         | 
| 1405 | 
            +
                    {
         | 
| 1406 | 
            +
                      "internalType": "Amount",
         | 
| 1407 | 
            +
                      "name": "newBalance",
         | 
| 1408 | 
            +
                      "type": "uint96"
         | 
| 1409 | 
            +
                    }
         | 
| 1410 | 
            +
                  ],
         | 
| 1411 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1412 | 
            +
                  "type": "function"
         | 
| 1413 | 
            +
                },
         | 
| 1414 | 
            +
                {
         | 
| 1415 | 
            +
                  "inputs": [
         | 
| 1416 | 
            +
                    {
         | 
| 1417 | 
            +
                      "internalType": "NftId",
         | 
| 1418 | 
            +
                      "name": "targetNftId",
         | 
| 1419 | 
            +
                      "type": "uint96"
         | 
| 1420 | 
            +
                    },
         | 
| 1421 | 
            +
                    {
         | 
| 1422 | 
            +
                      "internalType": "Amount",
         | 
| 1423 | 
            +
                      "name": "amount",
         | 
| 1424 | 
            +
                      "type": "uint96"
         | 
| 1425 | 
            +
                    }
         | 
| 1426 | 
            +
                  ],
         | 
| 1427 | 
            +
                  "name": "decreaseFees",
         | 
| 1428 | 
            +
                  "outputs": [
         | 
| 1429 | 
            +
                    {
         | 
| 1430 | 
            +
                      "internalType": "Amount",
         | 
| 1431 | 
            +
                      "name": "newFeeBalance",
         | 
| 1432 | 
            +
                      "type": "uint96"
         | 
| 1433 | 
            +
                    }
         | 
| 1434 | 
            +
                  ],
         | 
| 1435 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1436 | 
            +
                  "type": "function"
         | 
| 1437 | 
            +
                },
         | 
| 1438 | 
            +
                {
         | 
| 1439 | 
            +
                  "inputs": [
         | 
| 1440 | 
            +
                    {
         | 
| 1441 | 
            +
                      "internalType": "NftId",
         | 
| 1442 | 
            +
                      "name": "targetNftId",
         | 
| 1443 | 
            +
                      "type": "uint96"
         | 
| 1444 | 
            +
                    },
         | 
| 1445 | 
            +
                    {
         | 
| 1446 | 
            +
                      "internalType": "Amount",
         | 
| 1447 | 
            +
                      "name": "amount",
         | 
| 1448 | 
            +
                      "type": "uint96"
         | 
| 1449 | 
            +
                    }
         | 
| 1450 | 
            +
                  ],
         | 
| 1451 | 
            +
                  "name": "decreaseLocked",
         | 
| 1452 | 
            +
                  "outputs": [
         | 
| 1453 | 
            +
                    {
         | 
| 1454 | 
            +
                      "internalType": "Amount",
         | 
| 1455 | 
            +
                      "name": "newBalance",
         | 
| 1456 | 
            +
                      "type": "uint96"
         | 
| 1457 | 
            +
                    }
         | 
| 1458 | 
            +
                  ],
         | 
| 1459 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1460 | 
            +
                  "type": "function"
         | 
| 1461 | 
            +
                },
         | 
| 1462 | 
            +
                {
         | 
| 1463 | 
            +
                  "inputs": [
         | 
| 1464 | 
            +
                    {
         | 
| 1465 | 
            +
                      "internalType": "Key32",
         | 
| 1466 | 
            +
                      "name": "key32",
         | 
| 1467 | 
            +
                      "type": "bytes32"
         | 
| 1468 | 
            +
                    }
         | 
| 1469 | 
            +
                  ],
         | 
| 1470 | 
            +
                  "name": "exists",
         | 
| 1471 | 
            +
                  "outputs": [
         | 
| 1472 | 
            +
                    {
         | 
| 1473 | 
            +
                      "internalType": "bool",
         | 
| 1474 | 
            +
                      "name": "",
         | 
| 1475 | 
            +
                      "type": "bool"
         | 
| 1476 | 
            +
                    }
         | 
| 1477 | 
            +
                  ],
         | 
| 1478 | 
            +
                  "stateMutability": "view",
         | 
| 1479 | 
            +
                  "type": "function"
         | 
| 1480 | 
            +
                },
         | 
| 1481 | 
            +
                {
         | 
| 1482 | 
            +
                  "inputs": [
         | 
| 1483 | 
            +
                    {
         | 
| 1484 | 
            +
                      "internalType": "Key32",
         | 
| 1485 | 
            +
                      "name": "key32",
         | 
| 1486 | 
            +
                      "type": "bytes32"
         | 
| 1487 | 
            +
                    }
         | 
| 1488 | 
            +
                  ],
         | 
| 1489 | 
            +
                  "name": "get",
         | 
| 1490 | 
            +
                  "outputs": [
         | 
| 1491 | 
            +
                    {
         | 
| 1492 | 
            +
                      "components": [
         | 
| 1493 | 
            +
                        {
         | 
| 1494 | 
            +
                          "components": [
         | 
| 1495 | 
            +
                            {
         | 
| 1496 | 
            +
                              "internalType": "ObjectType",
         | 
| 1497 | 
            +
                              "name": "objectType",
         | 
| 1498 | 
            +
                              "type": "uint8"
         | 
| 1499 | 
            +
                            },
         | 
| 1500 | 
            +
                            {
         | 
| 1501 | 
            +
                              "internalType": "StateId",
         | 
| 1502 | 
            +
                              "name": "state",
         | 
| 1503 | 
            +
                              "type": "uint8"
         | 
| 1504 | 
            +
                            },
         | 
| 1505 | 
            +
                            {
         | 
| 1506 | 
            +
                              "internalType": "Blocknumber",
         | 
| 1507 | 
            +
                              "name": "updatedIn",
         | 
| 1508 | 
            +
                              "type": "uint32"
         | 
| 1509 | 
            +
                            },
         | 
| 1510 | 
            +
                            {
         | 
| 1511 | 
            +
                              "internalType": "Blocknumber",
         | 
| 1512 | 
            +
                              "name": "createdIn",
         | 
| 1513 | 
            +
                              "type": "uint32"
         | 
| 1514 | 
            +
                            }
         | 
| 1515 | 
            +
                          ],
         | 
| 1516 | 
            +
                          "internalType": "struct IKeyValueStore.Metadata",
         | 
| 1517 | 
            +
                          "name": "metadata",
         | 
| 1518 | 
            +
                          "type": "tuple"
         | 
| 1519 | 
            +
                        },
         | 
| 1520 | 
            +
                        {
         | 
| 1521 | 
            +
                          "internalType": "bytes",
         | 
| 1522 | 
            +
                          "name": "data",
         | 
| 1523 | 
            +
                          "type": "bytes"
         | 
| 1524 | 
            +
                        }
         | 
| 1525 | 
            +
                      ],
         | 
| 1526 | 
            +
                      "internalType": "struct IKeyValueStore.Value",
         | 
| 1527 | 
            +
                      "name": "value",
         | 
| 1528 | 
            +
                      "type": "tuple"
         | 
| 1529 | 
            +
                    }
         | 
| 1530 | 
            +
                  ],
         | 
| 1531 | 
            +
                  "stateMutability": "view",
         | 
| 1532 | 
            +
                  "type": "function"
         | 
| 1533 | 
            +
                },
         | 
| 1534 | 
            +
                {
         | 
| 1535 | 
            +
                  "inputs": [
         | 
| 1536 | 
            +
                    {
         | 
| 1537 | 
            +
                      "internalType": "NftId",
         | 
| 1538 | 
            +
                      "name": "targetNftId",
         | 
| 1539 | 
            +
                      "type": "uint96"
         | 
| 1540 | 
            +
                    }
         | 
| 1541 | 
            +
                  ],
         | 
| 1542 | 
            +
                  "name": "getAmounts",
         | 
| 1543 | 
            +
                  "outputs": [
         | 
| 1544 | 
            +
                    {
         | 
| 1545 | 
            +
                      "internalType": "Amount",
         | 
| 1546 | 
            +
                      "name": "balanceAmount",
         | 
| 1547 | 
            +
                      "type": "uint96"
         | 
| 1548 | 
            +
                    },
         | 
| 1549 | 
            +
                    {
         | 
| 1550 | 
            +
                      "internalType": "Amount",
         | 
| 1551 | 
            +
                      "name": "lockedAmount",
         | 
| 1552 | 
            +
                      "type": "uint96"
         | 
| 1553 | 
            +
                    },
         | 
| 1554 | 
            +
                    {
         | 
| 1555 | 
            +
                      "internalType": "Amount",
         | 
| 1556 | 
            +
                      "name": "feeAmount",
         | 
| 1557 | 
            +
                      "type": "uint96"
         | 
| 1558 | 
            +
                    }
         | 
| 1559 | 
            +
                  ],
         | 
| 1560 | 
            +
                  "stateMutability": "view",
         | 
| 1561 | 
            +
                  "type": "function"
         | 
| 1562 | 
            +
                },
         | 
| 1563 | 
            +
                {
         | 
| 1564 | 
            +
                  "inputs": [
         | 
| 1565 | 
            +
                    {
         | 
| 1566 | 
            +
                      "internalType": "NftId",
         | 
| 1567 | 
            +
                      "name": "targetNftId",
         | 
| 1568 | 
            +
                      "type": "uint96"
         | 
| 1569 | 
            +
                    }
         | 
| 1570 | 
            +
                  ],
         | 
| 1571 | 
            +
                  "name": "getBalanceAmount",
         | 
| 1572 | 
            +
                  "outputs": [
         | 
| 1573 | 
            +
                    {
         | 
| 1574 | 
            +
                      "internalType": "Amount",
         | 
| 1575 | 
            +
                      "name": "balanceAmount",
         | 
| 1576 | 
            +
                      "type": "uint96"
         | 
| 1577 | 
            +
                    }
         | 
| 1578 | 
            +
                  ],
         | 
| 1579 | 
            +
                  "stateMutability": "view",
         | 
| 1580 | 
            +
                  "type": "function"
         | 
| 1581 | 
            +
                },
         | 
| 1582 | 
            +
                {
         | 
| 1583 | 
            +
                  "inputs": [
         | 
| 1584 | 
            +
                    {
         | 
| 1585 | 
            +
                      "internalType": "Key32",
         | 
| 1586 | 
            +
                      "name": "key32",
         | 
| 1587 | 
            +
                      "type": "bytes32"
         | 
| 1588 | 
            +
                    }
         | 
| 1589 | 
            +
                  ],
         | 
| 1590 | 
            +
                  "name": "getData",
         | 
| 1591 | 
            +
                  "outputs": [
         | 
| 1592 | 
            +
                    {
         | 
| 1593 | 
            +
                      "internalType": "bytes",
         | 
| 1594 | 
            +
                      "name": "data",
         | 
| 1595 | 
            +
                      "type": "bytes"
         | 
| 1596 | 
            +
                    }
         | 
| 1597 | 
            +
                  ],
         | 
| 1598 | 
            +
                  "stateMutability": "view",
         | 
| 1599 | 
            +
                  "type": "function"
         | 
| 1600 | 
            +
                },
         | 
| 1601 | 
            +
                {
         | 
| 1602 | 
            +
                  "inputs": [
         | 
| 1603 | 
            +
                    {
         | 
| 1604 | 
            +
                      "internalType": "NftId",
         | 
| 1605 | 
            +
                      "name": "targetNftId",
         | 
| 1606 | 
            +
                      "type": "uint96"
         | 
| 1607 | 
            +
                    }
         | 
| 1608 | 
            +
                  ],
         | 
| 1609 | 
            +
                  "name": "getFeeAmount",
         | 
| 1610 | 
            +
                  "outputs": [
         | 
| 1611 | 
            +
                    {
         | 
| 1612 | 
            +
                      "internalType": "Amount",
         | 
| 1613 | 
            +
                      "name": "feeAmount",
         | 
| 1614 | 
            +
                      "type": "uint96"
         | 
| 1615 | 
            +
                    }
         | 
| 1616 | 
            +
                  ],
         | 
| 1617 | 
            +
                  "stateMutability": "view",
         | 
| 1618 | 
            +
                  "type": "function"
         | 
| 1619 | 
            +
                },
         | 
| 1620 | 
            +
                {
         | 
| 1621 | 
            +
                  "inputs": [
         | 
| 1622 | 
            +
                    {
         | 
| 1623 | 
            +
                      "internalType": "ObjectType",
         | 
| 1624 | 
            +
                      "name": "objectType",
         | 
| 1625 | 
            +
                      "type": "uint8"
         | 
| 1626 | 
            +
                    }
         | 
| 1627 | 
            +
                  ],
         | 
| 1628 | 
            +
                  "name": "getInitialState",
         | 
| 1629 | 
            +
                  "outputs": [
         | 
| 1630 | 
            +
                    {
         | 
| 1631 | 
            +
                      "internalType": "StateId",
         | 
| 1632 | 
            +
                      "name": "",
         | 
| 1633 | 
            +
                      "type": "uint8"
         | 
| 1634 | 
            +
                    }
         | 
| 1635 | 
            +
                  ],
         | 
| 1636 | 
            +
                  "stateMutability": "view",
         | 
| 1637 | 
            +
                  "type": "function"
         | 
| 1638 | 
            +
                },
         | 
| 1639 | 
            +
                {
         | 
| 1640 | 
            +
                  "inputs": [
         | 
| 1641 | 
            +
                    {
         | 
| 1642 | 
            +
                      "internalType": "NftId",
         | 
| 1643 | 
            +
                      "name": "targetNftId",
         | 
| 1644 | 
            +
                      "type": "uint96"
         | 
| 1645 | 
            +
                    }
         | 
| 1646 | 
            +
                  ],
         | 
| 1647 | 
            +
                  "name": "getLockedAmount",
         | 
| 1648 | 
            +
                  "outputs": [
         | 
| 1649 | 
            +
                    {
         | 
| 1650 | 
            +
                      "internalType": "Amount",
         | 
| 1651 | 
            +
                      "name": "lockedAmount",
         | 
| 1652 | 
            +
                      "type": "uint96"
         | 
| 1653 | 
            +
                    }
         | 
| 1654 | 
            +
                  ],
         | 
| 1655 | 
            +
                  "stateMutability": "view",
         | 
| 1656 | 
            +
                  "type": "function"
         | 
| 1657 | 
            +
                },
         | 
| 1658 | 
            +
                {
         | 
| 1659 | 
            +
                  "inputs": [
         | 
| 1660 | 
            +
                    {
         | 
| 1661 | 
            +
                      "internalType": "Key32",
         | 
| 1662 | 
            +
                      "name": "key32",
         | 
| 1663 | 
            +
                      "type": "bytes32"
         | 
| 1664 | 
            +
                    }
         | 
| 1665 | 
            +
                  ],
         | 
| 1666 | 
            +
                  "name": "getMetadata",
         | 
| 1667 | 
            +
                  "outputs": [
         | 
| 1668 | 
            +
                    {
         | 
| 1669 | 
            +
                      "components": [
         | 
| 1670 | 
            +
                        {
         | 
| 1671 | 
            +
                          "internalType": "ObjectType",
         | 
| 1672 | 
            +
                          "name": "objectType",
         | 
| 1673 | 
            +
                          "type": "uint8"
         | 
| 1674 | 
            +
                        },
         | 
| 1675 | 
            +
                        {
         | 
| 1676 | 
            +
                          "internalType": "StateId",
         | 
| 1677 | 
            +
                          "name": "state",
         | 
| 1678 | 
            +
                          "type": "uint8"
         | 
| 1679 | 
            +
                        },
         | 
| 1680 | 
            +
                        {
         | 
| 1681 | 
            +
                          "internalType": "Blocknumber",
         | 
| 1682 | 
            +
                          "name": "updatedIn",
         | 
| 1683 | 
            +
                          "type": "uint32"
         | 
| 1684 | 
            +
                        },
         | 
| 1685 | 
            +
                        {
         | 
| 1686 | 
            +
                          "internalType": "Blocknumber",
         | 
| 1687 | 
            +
                          "name": "createdIn",
         | 
| 1688 | 
            +
                          "type": "uint32"
         | 
| 1689 | 
            +
                        }
         | 
| 1690 | 
            +
                      ],
         | 
| 1691 | 
            +
                      "internalType": "struct IKeyValueStore.Metadata",
         | 
| 1692 | 
            +
                      "name": "metadata",
         | 
| 1693 | 
            +
                      "type": "tuple"
         | 
| 1694 | 
            +
                    }
         | 
| 1695 | 
            +
                  ],
         | 
| 1696 | 
            +
                  "stateMutability": "view",
         | 
| 1697 | 
            +
                  "type": "function"
         | 
| 1698 | 
            +
                },
         | 
| 1699 | 
            +
                {
         | 
| 1700 | 
            +
                  "inputs": [
         | 
| 1701 | 
            +
                    {
         | 
| 1702 | 
            +
                      "internalType": "Key32",
         | 
| 1703 | 
            +
                      "name": "key32",
         | 
| 1704 | 
            +
                      "type": "bytes32"
         | 
| 1705 | 
            +
                    }
         | 
| 1706 | 
            +
                  ],
         | 
| 1707 | 
            +
                  "name": "getState",
         | 
| 1708 | 
            +
                  "outputs": [
         | 
| 1709 | 
            +
                    {
         | 
| 1710 | 
            +
                      "internalType": "StateId",
         | 
| 1711 | 
            +
                      "name": "state",
         | 
| 1712 | 
            +
                      "type": "uint8"
         | 
| 1713 | 
            +
                    }
         | 
| 1714 | 
            +
                  ],
         | 
| 1715 | 
            +
                  "stateMutability": "view",
         | 
| 1716 | 
            +
                  "type": "function"
         | 
| 1717 | 
            +
                },
         | 
| 1718 | 
            +
                {
         | 
| 1719 | 
            +
                  "inputs": [
         | 
| 1720 | 
            +
                    {
         | 
| 1721 | 
            +
                      "internalType": "ObjectType",
         | 
| 1722 | 
            +
                      "name": "objectType",
         | 
| 1723 | 
            +
                      "type": "uint8"
         | 
| 1724 | 
            +
                    }
         | 
| 1725 | 
            +
                  ],
         | 
| 1726 | 
            +
                  "name": "hasLifecycle",
         | 
| 1727 | 
            +
                  "outputs": [
         | 
| 1728 | 
            +
                    {
         | 
| 1729 | 
            +
                      "internalType": "bool",
         | 
| 1730 | 
            +
                      "name": "",
         | 
| 1731 | 
            +
                      "type": "bool"
         | 
| 1732 | 
            +
                    }
         | 
| 1733 | 
            +
                  ],
         | 
| 1734 | 
            +
                  "stateMutability": "view",
         | 
| 1735 | 
            +
                  "type": "function"
         | 
| 1736 | 
            +
                },
         | 
| 1737 | 
            +
                {
         | 
| 1738 | 
            +
                  "inputs": [
         | 
| 1739 | 
            +
                    {
         | 
| 1740 | 
            +
                      "internalType": "NftId",
         | 
| 1741 | 
            +
                      "name": "targetNftId",
         | 
| 1742 | 
            +
                      "type": "uint96"
         | 
| 1743 | 
            +
                    },
         | 
| 1744 | 
            +
                    {
         | 
| 1745 | 
            +
                      "internalType": "Amount",
         | 
| 1746 | 
            +
                      "name": "amount",
         | 
| 1747 | 
            +
                      "type": "uint96"
         | 
| 1748 | 
            +
                    }
         | 
| 1749 | 
            +
                  ],
         | 
| 1750 | 
            +
                  "name": "increaseBalance",
         | 
| 1751 | 
            +
                  "outputs": [
         | 
| 1752 | 
            +
                    {
         | 
| 1753 | 
            +
                      "internalType": "Amount",
         | 
| 1754 | 
            +
                      "name": "newBalance",
         | 
| 1755 | 
            +
                      "type": "uint96"
         | 
| 1756 | 
            +
                    }
         | 
| 1757 | 
            +
                  ],
         | 
| 1758 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1759 | 
            +
                  "type": "function"
         | 
| 1760 | 
            +
                },
         | 
| 1761 | 
            +
                {
         | 
| 1762 | 
            +
                  "inputs": [
         | 
| 1763 | 
            +
                    {
         | 
| 1764 | 
            +
                      "internalType": "NftId",
         | 
| 1765 | 
            +
                      "name": "targetNftId",
         | 
| 1766 | 
            +
                      "type": "uint96"
         | 
| 1767 | 
            +
                    },
         | 
| 1768 | 
            +
                    {
         | 
| 1769 | 
            +
                      "internalType": "Amount",
         | 
| 1770 | 
            +
                      "name": "amount",
         | 
| 1771 | 
            +
                      "type": "uint96"
         | 
| 1772 | 
            +
                    }
         | 
| 1773 | 
            +
                  ],
         | 
| 1774 | 
            +
                  "name": "increaseFees",
         | 
| 1775 | 
            +
                  "outputs": [
         | 
| 1776 | 
            +
                    {
         | 
| 1777 | 
            +
                      "internalType": "Amount",
         | 
| 1778 | 
            +
                      "name": "newFeeBalance",
         | 
| 1779 | 
            +
                      "type": "uint96"
         | 
| 1780 | 
            +
                    }
         | 
| 1781 | 
            +
                  ],
         | 
| 1782 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1783 | 
            +
                  "type": "function"
         | 
| 1784 | 
            +
                },
         | 
| 1785 | 
            +
                {
         | 
| 1786 | 
            +
                  "inputs": [
         | 
| 1787 | 
            +
                    {
         | 
| 1788 | 
            +
                      "internalType": "NftId",
         | 
| 1789 | 
            +
                      "name": "targetNftId",
         | 
| 1790 | 
            +
                      "type": "uint96"
         | 
| 1791 | 
            +
                    },
         | 
| 1792 | 
            +
                    {
         | 
| 1793 | 
            +
                      "internalType": "Amount",
         | 
| 1794 | 
            +
                      "name": "amount",
         | 
| 1795 | 
            +
                      "type": "uint96"
         | 
| 1796 | 
            +
                    }
         | 
| 1797 | 
            +
                  ],
         | 
| 1798 | 
            +
                  "name": "increaseLocked",
         | 
| 1799 | 
            +
                  "outputs": [
         | 
| 1800 | 
            +
                    {
         | 
| 1801 | 
            +
                      "internalType": "Amount",
         | 
| 1802 | 
            +
                      "name": "newBalance",
         | 
| 1803 | 
            +
                      "type": "uint96"
         | 
| 1804 | 
            +
                    }
         | 
| 1805 | 
            +
                  ],
         | 
| 1806 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1807 | 
            +
                  "type": "function"
         | 
| 1808 | 
            +
                },
         | 
| 1809 | 
            +
                {
         | 
| 1810 | 
            +
                  "inputs": [
         | 
| 1811 | 
            +
                    {
         | 
| 1812 | 
            +
                      "internalType": "address",
         | 
| 1813 | 
            +
                      "name": "instance",
         | 
| 1814 | 
            +
                      "type": "address"
         | 
| 1815 | 
            +
                    }
         | 
| 1816 | 
            +
                  ],
         | 
| 1817 | 
            +
                  "name": "initialize",
         | 
| 1818 | 
            +
                  "outputs": [],
         | 
| 1819 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1820 | 
            +
                  "type": "function"
         | 
| 1821 | 
            +
                },
         | 
| 1822 | 
            +
                {
         | 
| 1823 | 
            +
                  "inputs": [],
         | 
| 1824 | 
            +
                  "name": "initializeLifecycle",
         | 
| 1825 | 
            +
                  "outputs": [],
         | 
| 1826 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1827 | 
            +
                  "type": "function"
         | 
| 1828 | 
            +
                },
         | 
| 1829 | 
            +
                {
         | 
| 1830 | 
            +
                  "inputs": [],
         | 
| 1831 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 1832 | 
            +
                  "outputs": [
         | 
| 1833 | 
            +
                    {
         | 
| 1834 | 
            +
                      "internalType": "bytes4",
         | 
| 1835 | 
            +
                      "name": "",
         | 
| 1836 | 
            +
                      "type": "bytes4"
         | 
| 1837 | 
            +
                    }
         | 
| 1838 | 
            +
                  ],
         | 
| 1839 | 
            +
                  "stateMutability": "view",
         | 
| 1840 | 
            +
                  "type": "function"
         | 
| 1841 | 
            +
                },
         | 
| 1842 | 
            +
                {
         | 
| 1843 | 
            +
                  "inputs": [
         | 
| 1844 | 
            +
                    {
         | 
| 1845 | 
            +
                      "internalType": "ObjectType",
         | 
| 1846 | 
            +
                      "name": "objectType",
         | 
| 1847 | 
            +
                      "type": "uint8"
         | 
| 1848 | 
            +
                    },
         | 
| 1849 | 
            +
                    {
         | 
| 1850 | 
            +
                      "internalType": "StateId",
         | 
| 1851 | 
            +
                      "name": "fromId",
         | 
| 1852 | 
            +
                      "type": "uint8"
         | 
| 1853 | 
            +
                    },
         | 
| 1854 | 
            +
                    {
         | 
| 1855 | 
            +
                      "internalType": "StateId",
         | 
| 1856 | 
            +
                      "name": "toId",
         | 
| 1857 | 
            +
                      "type": "uint8"
         | 
| 1858 | 
            +
                    }
         | 
| 1859 | 
            +
                  ],
         | 
| 1860 | 
            +
                  "name": "isValidTransition",
         | 
| 1861 | 
            +
                  "outputs": [
         | 
| 1862 | 
            +
                    {
         | 
| 1863 | 
            +
                      "internalType": "bool",
         | 
| 1864 | 
            +
                      "name": "",
         | 
| 1865 | 
            +
                      "type": "bool"
         | 
| 1866 | 
            +
                    }
         | 
| 1867 | 
            +
                  ],
         | 
| 1868 | 
            +
                  "stateMutability": "view",
         | 
| 1869 | 
            +
                  "type": "function"
         | 
| 1870 | 
            +
                },
         | 
| 1871 | 
            +
                {
         | 
| 1872 | 
            +
                  "inputs": [
         | 
| 1873 | 
            +
                    {
         | 
| 1874 | 
            +
                      "internalType": "address",
         | 
| 1875 | 
            +
                      "name": "newAuthority",
         | 
| 1876 | 
            +
                      "type": "address"
         | 
| 1877 | 
            +
                    }
         | 
| 1878 | 
            +
                  ],
         | 
| 1879 | 
            +
                  "name": "setAuthority",
         | 
| 1880 | 
            +
                  "outputs": [],
         | 
| 1881 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1882 | 
            +
                  "type": "function"
         | 
| 1883 | 
            +
                },
         | 
| 1884 | 
            +
                {
         | 
| 1885 | 
            +
                  "inputs": [
         | 
| 1886 | 
            +
                    {
         | 
| 1887 | 
            +
                      "internalType": "ObjectType",
         | 
| 1888 | 
            +
                      "name": "objectType",
         | 
| 1889 | 
            +
                      "type": "uint8"
         | 
| 1890 | 
            +
                    },
         | 
| 1891 | 
            +
                    {
         | 
| 1892 | 
            +
                      "internalType": "KeyId",
         | 
| 1893 | 
            +
                      "name": "id",
         | 
| 1894 | 
            +
                      "type": "bytes31"
         | 
| 1895 | 
            +
                    }
         | 
| 1896 | 
            +
                  ],
         | 
| 1897 | 
            +
                  "name": "toKey32",
         | 
| 1898 | 
            +
                  "outputs": [
         | 
| 1899 | 
            +
                    {
         | 
| 1900 | 
            +
                      "internalType": "Key32",
         | 
| 1901 | 
            +
                      "name": "",
         | 
| 1902 | 
            +
                      "type": "bytes32"
         | 
| 1903 | 
            +
                    }
         | 
| 1904 | 
            +
                  ],
         | 
| 1905 | 
            +
                  "stateMutability": "pure",
         | 
| 1906 | 
            +
                  "type": "function"
         | 
| 1907 | 
            +
                },
         | 
| 1908 | 
            +
                {
         | 
| 1909 | 
            +
                  "inputs": [
         | 
| 1910 | 
            +
                    {
         | 
| 1911 | 
            +
                      "internalType": "NftId",
         | 
| 1912 | 
            +
                      "name": "applicationNftId",
         | 
| 1913 | 
            +
                      "type": "uint96"
         | 
| 1914 | 
            +
                    },
         | 
| 1915 | 
            +
                    {
         | 
| 1916 | 
            +
                      "components": [
         | 
| 1917 | 
            +
                        {
         | 
| 1918 | 
            +
                          "internalType": "NftId",
         | 
| 1919 | 
            +
                          "name": "productNftId",
         | 
| 1920 | 
            +
                          "type": "uint96"
         | 
| 1921 | 
            +
                        },
         | 
| 1922 | 
            +
                        {
         | 
| 1923 | 
            +
                          "internalType": "NftId",
         | 
| 1924 | 
            +
                          "name": "bundleNftId",
         | 
| 1925 | 
            +
                          "type": "uint96"
         | 
| 1926 | 
            +
                        },
         | 
| 1927 | 
            +
                        {
         | 
| 1928 | 
            +
                          "internalType": "ReferralId",
         | 
| 1929 | 
            +
                          "name": "referralId",
         | 
| 1930 | 
            +
                          "type": "bytes8"
         | 
| 1931 | 
            +
                        },
         | 
| 1932 | 
            +
                        {
         | 
| 1933 | 
            +
                          "internalType": "RiskId",
         | 
| 1934 | 
            +
                          "name": "riskId",
         | 
| 1935 | 
            +
                          "type": "bytes8"
         | 
| 1936 | 
            +
                        },
         | 
| 1937 | 
            +
                        {
         | 
| 1938 | 
            +
                          "internalType": "Amount",
         | 
| 1939 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 1940 | 
            +
                          "type": "uint96"
         | 
| 1941 | 
            +
                        },
         | 
| 1942 | 
            +
                        {
         | 
| 1943 | 
            +
                          "internalType": "Amount",
         | 
| 1944 | 
            +
                          "name": "premiumAmount",
         | 
| 1945 | 
            +
                          "type": "uint96"
         | 
| 1946 | 
            +
                        },
         | 
| 1947 | 
            +
                        {
         | 
| 1948 | 
            +
                          "internalType": "Amount",
         | 
| 1949 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 1950 | 
            +
                          "type": "uint96"
         | 
| 1951 | 
            +
                        },
         | 
| 1952 | 
            +
                        {
         | 
| 1953 | 
            +
                          "internalType": "Seconds",
         | 
| 1954 | 
            +
                          "name": "lifetime",
         | 
| 1955 | 
            +
                          "type": "uint40"
         | 
| 1956 | 
            +
                        },
         | 
| 1957 | 
            +
                        {
         | 
| 1958 | 
            +
                          "internalType": "bytes",
         | 
| 1959 | 
            +
                          "name": "applicationData",
         | 
| 1960 | 
            +
                          "type": "bytes"
         | 
| 1961 | 
            +
                        },
         | 
| 1962 | 
            +
                        {
         | 
| 1963 | 
            +
                          "internalType": "bytes",
         | 
| 1964 | 
            +
                          "name": "processData",
         | 
| 1965 | 
            +
                          "type": "bytes"
         | 
| 1966 | 
            +
                        },
         | 
| 1967 | 
            +
                        {
         | 
| 1968 | 
            +
                          "internalType": "uint16",
         | 
| 1969 | 
            +
                          "name": "claimsCount",
         | 
| 1970 | 
            +
                          "type": "uint16"
         | 
| 1971 | 
            +
                        },
         | 
| 1972 | 
            +
                        {
         | 
| 1973 | 
            +
                          "internalType": "uint16",
         | 
| 1974 | 
            +
                          "name": "openClaimsCount",
         | 
| 1975 | 
            +
                          "type": "uint16"
         | 
| 1976 | 
            +
                        },
         | 
| 1977 | 
            +
                        {
         | 
| 1978 | 
            +
                          "internalType": "Amount",
         | 
| 1979 | 
            +
                          "name": "claimAmount",
         | 
| 1980 | 
            +
                          "type": "uint96"
         | 
| 1981 | 
            +
                        },
         | 
| 1982 | 
            +
                        {
         | 
| 1983 | 
            +
                          "internalType": "Amount",
         | 
| 1984 | 
            +
                          "name": "payoutAmount",
         | 
| 1985 | 
            +
                          "type": "uint96"
         | 
| 1986 | 
            +
                        },
         | 
| 1987 | 
            +
                        {
         | 
| 1988 | 
            +
                          "internalType": "Timestamp",
         | 
| 1989 | 
            +
                          "name": "activatedAt",
         | 
| 1990 | 
            +
                          "type": "uint40"
         | 
| 1991 | 
            +
                        },
         | 
| 1992 | 
            +
                        {
         | 
| 1993 | 
            +
                          "internalType": "Timestamp",
         | 
| 1994 | 
            +
                          "name": "expiredAt",
         | 
| 1995 | 
            +
                          "type": "uint40"
         | 
| 1996 | 
            +
                        },
         | 
| 1997 | 
            +
                        {
         | 
| 1998 | 
            +
                          "internalType": "Timestamp",
         | 
| 1999 | 
            +
                          "name": "closedAt",
         | 
| 2000 | 
            +
                          "type": "uint40"
         | 
| 2001 | 
            +
                        }
         | 
| 2002 | 
            +
                      ],
         | 
| 2003 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 2004 | 
            +
                      "name": "policy",
         | 
| 2005 | 
            +
                      "type": "tuple"
         | 
| 2006 | 
            +
                    },
         | 
| 2007 | 
            +
                    {
         | 
| 2008 | 
            +
                      "internalType": "StateId",
         | 
| 2009 | 
            +
                      "name": "newState",
         | 
| 2010 | 
            +
                      "type": "uint8"
         | 
| 2011 | 
            +
                    }
         | 
| 2012 | 
            +
                  ],
         | 
| 2013 | 
            +
                  "name": "updateApplication",
         | 
| 2014 | 
            +
                  "outputs": [],
         | 
| 2015 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2016 | 
            +
                  "type": "function"
         | 
| 2017 | 
            +
                },
         | 
| 2018 | 
            +
                {
         | 
| 2019 | 
            +
                  "inputs": [
         | 
| 2020 | 
            +
                    {
         | 
| 2021 | 
            +
                      "internalType": "NftId",
         | 
| 2022 | 
            +
                      "name": "applicationNftId",
         | 
| 2023 | 
            +
                      "type": "uint96"
         | 
| 2024 | 
            +
                    },
         | 
| 2025 | 
            +
                    {
         | 
| 2026 | 
            +
                      "internalType": "StateId",
         | 
| 2027 | 
            +
                      "name": "newState",
         | 
| 2028 | 
            +
                      "type": "uint8"
         | 
| 2029 | 
            +
                    }
         | 
| 2030 | 
            +
                  ],
         | 
| 2031 | 
            +
                  "name": "updateApplicationState",
         | 
| 2032 | 
            +
                  "outputs": [],
         | 
| 2033 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2034 | 
            +
                  "type": "function"
         | 
| 2035 | 
            +
                },
         | 
| 2036 | 
            +
                {
         | 
| 2037 | 
            +
                  "inputs": [
         | 
| 2038 | 
            +
                    {
         | 
| 2039 | 
            +
                      "internalType": "NftId",
         | 
| 2040 | 
            +
                      "name": "bundleNftId",
         | 
| 2041 | 
            +
                      "type": "uint96"
         | 
| 2042 | 
            +
                    },
         | 
| 2043 | 
            +
                    {
         | 
| 2044 | 
            +
                      "components": [
         | 
| 2045 | 
            +
                        {
         | 
| 2046 | 
            +
                          "internalType": "NftId",
         | 
| 2047 | 
            +
                          "name": "poolNftId",
         | 
| 2048 | 
            +
                          "type": "uint96"
         | 
| 2049 | 
            +
                        },
         | 
| 2050 | 
            +
                        {
         | 
| 2051 | 
            +
                          "components": [
         | 
| 2052 | 
            +
                            {
         | 
| 2053 | 
            +
                              "internalType": "UFixed",
         | 
| 2054 | 
            +
                              "name": "fractionalFee",
         | 
| 2055 | 
            +
                              "type": "uint256"
         | 
| 2056 | 
            +
                            },
         | 
| 2057 | 
            +
                            {
         | 
| 2058 | 
            +
                              "internalType": "uint256",
         | 
| 2059 | 
            +
                              "name": "fixedFee",
         | 
| 2060 | 
            +
                              "type": "uint256"
         | 
| 2061 | 
            +
                            }
         | 
| 2062 | 
            +
                          ],
         | 
| 2063 | 
            +
                          "internalType": "struct Fee",
         | 
| 2064 | 
            +
                          "name": "fee",
         | 
| 2065 | 
            +
                          "type": "tuple"
         | 
| 2066 | 
            +
                        },
         | 
| 2067 | 
            +
                        {
         | 
| 2068 | 
            +
                          "internalType": "bytes",
         | 
| 2069 | 
            +
                          "name": "filter",
         | 
| 2070 | 
            +
                          "type": "bytes"
         | 
| 2071 | 
            +
                        },
         | 
| 2072 | 
            +
                        {
         | 
| 2073 | 
            +
                          "internalType": "Seconds",
         | 
| 2074 | 
            +
                          "name": "lifetime",
         | 
| 2075 | 
            +
                          "type": "uint40"
         | 
| 2076 | 
            +
                        },
         | 
| 2077 | 
            +
                        {
         | 
| 2078 | 
            +
                          "internalType": "Timestamp",
         | 
| 2079 | 
            +
                          "name": "expiredAt",
         | 
| 2080 | 
            +
                          "type": "uint40"
         | 
| 2081 | 
            +
                        },
         | 
| 2082 | 
            +
                        {
         | 
| 2083 | 
            +
                          "internalType": "Timestamp",
         | 
| 2084 | 
            +
                          "name": "closedAt",
         | 
| 2085 | 
            +
                          "type": "uint40"
         | 
| 2086 | 
            +
                        }
         | 
| 2087 | 
            +
                      ],
         | 
| 2088 | 
            +
                      "internalType": "struct IBundle.BundleInfo",
         | 
| 2089 | 
            +
                      "name": "bundle",
         | 
| 2090 | 
            +
                      "type": "tuple"
         | 
| 2091 | 
            +
                    },
         | 
| 2092 | 
            +
                    {
         | 
| 2093 | 
            +
                      "internalType": "StateId",
         | 
| 2094 | 
            +
                      "name": "newState",
         | 
| 2095 | 
            +
                      "type": "uint8"
         | 
| 2096 | 
            +
                    }
         | 
| 2097 | 
            +
                  ],
         | 
| 2098 | 
            +
                  "name": "updateBundle",
         | 
| 2099 | 
            +
                  "outputs": [],
         | 
| 2100 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2101 | 
            +
                  "type": "function"
         | 
| 2102 | 
            +
                },
         | 
| 2103 | 
            +
                {
         | 
| 2104 | 
            +
                  "inputs": [
         | 
| 2105 | 
            +
                    {
         | 
| 2106 | 
            +
                      "internalType": "NftId",
         | 
| 2107 | 
            +
                      "name": "bundleNftId",
         | 
| 2108 | 
            +
                      "type": "uint96"
         | 
| 2109 | 
            +
                    },
         | 
| 2110 | 
            +
                    {
         | 
| 2111 | 
            +
                      "internalType": "StateId",
         | 
| 2112 | 
            +
                      "name": "newState",
         | 
| 2113 | 
            +
                      "type": "uint8"
         | 
| 2114 | 
            +
                    }
         | 
| 2115 | 
            +
                  ],
         | 
| 2116 | 
            +
                  "name": "updateBundleState",
         | 
| 2117 | 
            +
                  "outputs": [],
         | 
| 2118 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2119 | 
            +
                  "type": "function"
         | 
| 2120 | 
            +
                },
         | 
| 2121 | 
            +
                {
         | 
| 2122 | 
            +
                  "inputs": [
         | 
| 2123 | 
            +
                    {
         | 
| 2124 | 
            +
                      "internalType": "NftId",
         | 
| 2125 | 
            +
                      "name": "policyNftId",
         | 
| 2126 | 
            +
                      "type": "uint96"
         | 
| 2127 | 
            +
                    },
         | 
| 2128 | 
            +
                    {
         | 
| 2129 | 
            +
                      "internalType": "ClaimId",
         | 
| 2130 | 
            +
                      "name": "claimId",
         | 
| 2131 | 
            +
                      "type": "uint16"
         | 
| 2132 | 
            +
                    },
         | 
| 2133 | 
            +
                    {
         | 
| 2134 | 
            +
                      "components": [
         | 
| 2135 | 
            +
                        {
         | 
| 2136 | 
            +
                          "internalType": "Amount",
         | 
| 2137 | 
            +
                          "name": "claimAmount",
         | 
| 2138 | 
            +
                          "type": "uint96"
         | 
| 2139 | 
            +
                        },
         | 
| 2140 | 
            +
                        {
         | 
| 2141 | 
            +
                          "internalType": "Amount",
         | 
| 2142 | 
            +
                          "name": "paidAmount",
         | 
| 2143 | 
            +
                          "type": "uint96"
         | 
| 2144 | 
            +
                        },
         | 
| 2145 | 
            +
                        {
         | 
| 2146 | 
            +
                          "internalType": "uint8",
         | 
| 2147 | 
            +
                          "name": "payoutsCount",
         | 
| 2148 | 
            +
                          "type": "uint8"
         | 
| 2149 | 
            +
                        },
         | 
| 2150 | 
            +
                        {
         | 
| 2151 | 
            +
                          "internalType": "uint8",
         | 
| 2152 | 
            +
                          "name": "openPayoutsCount",
         | 
| 2153 | 
            +
                          "type": "uint8"
         | 
| 2154 | 
            +
                        },
         | 
| 2155 | 
            +
                        {
         | 
| 2156 | 
            +
                          "internalType": "bytes",
         | 
| 2157 | 
            +
                          "name": "submissionData",
         | 
| 2158 | 
            +
                          "type": "bytes"
         | 
| 2159 | 
            +
                        },
         | 
| 2160 | 
            +
                        {
         | 
| 2161 | 
            +
                          "internalType": "bytes",
         | 
| 2162 | 
            +
                          "name": "processData",
         | 
| 2163 | 
            +
                          "type": "bytes"
         | 
| 2164 | 
            +
                        },
         | 
| 2165 | 
            +
                        {
         | 
| 2166 | 
            +
                          "internalType": "Timestamp",
         | 
| 2167 | 
            +
                          "name": "closedAt",
         | 
| 2168 | 
            +
                          "type": "uint40"
         | 
| 2169 | 
            +
                        }
         | 
| 2170 | 
            +
                      ],
         | 
| 2171 | 
            +
                      "internalType": "struct IPolicy.ClaimInfo",
         | 
| 2172 | 
            +
                      "name": "claim",
         | 
| 2173 | 
            +
                      "type": "tuple"
         | 
| 2174 | 
            +
                    },
         | 
| 2175 | 
            +
                    {
         | 
| 2176 | 
            +
                      "internalType": "StateId",
         | 
| 2177 | 
            +
                      "name": "newState",
         | 
| 2178 | 
            +
                      "type": "uint8"
         | 
| 2179 | 
            +
                    }
         | 
| 2180 | 
            +
                  ],
         | 
| 2181 | 
            +
                  "name": "updateClaim",
         | 
| 2182 | 
            +
                  "outputs": [],
         | 
| 2183 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2184 | 
            +
                  "type": "function"
         | 
| 2185 | 
            +
                },
         | 
| 2186 | 
            +
                {
         | 
| 2187 | 
            +
                  "inputs": [
         | 
| 2188 | 
            +
                    {
         | 
| 2189 | 
            +
                      "internalType": "NftId",
         | 
| 2190 | 
            +
                      "name": "policyNftId",
         | 
| 2191 | 
            +
                      "type": "uint96"
         | 
| 2192 | 
            +
                    },
         | 
| 2193 | 
            +
                    {
         | 
| 2194 | 
            +
                      "internalType": "ClaimId",
         | 
| 2195 | 
            +
                      "name": "claimId",
         | 
| 2196 | 
            +
                      "type": "uint16"
         | 
| 2197 | 
            +
                    },
         | 
| 2198 | 
            +
                    {
         | 
| 2199 | 
            +
                      "internalType": "StateId",
         | 
| 2200 | 
            +
                      "name": "newState",
         | 
| 2201 | 
            +
                      "type": "uint8"
         | 
| 2202 | 
            +
                    }
         | 
| 2203 | 
            +
                  ],
         | 
| 2204 | 
            +
                  "name": "updateClaimState",
         | 
| 2205 | 
            +
                  "outputs": [],
         | 
| 2206 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2207 | 
            +
                  "type": "function"
         | 
| 2208 | 
            +
                },
         | 
| 2209 | 
            +
                {
         | 
| 2210 | 
            +
                  "inputs": [
         | 
| 2211 | 
            +
                    {
         | 
| 2212 | 
            +
                      "internalType": "NftId",
         | 
| 2213 | 
            +
                      "name": "componentNftId",
         | 
| 2214 | 
            +
                      "type": "uint96"
         | 
| 2215 | 
            +
                    },
         | 
| 2216 | 
            +
                    {
         | 
| 2217 | 
            +
                      "components": [
         | 
| 2218 | 
            +
                        {
         | 
| 2219 | 
            +
                          "internalType": "string",
         | 
| 2220 | 
            +
                          "name": "name",
         | 
| 2221 | 
            +
                          "type": "string"
         | 
| 2222 | 
            +
                        },
         | 
| 2223 | 
            +
                        {
         | 
| 2224 | 
            +
                          "internalType": "NftId",
         | 
| 2225 | 
            +
                          "name": "productNftId",
         | 
| 2226 | 
            +
                          "type": "uint96"
         | 
| 2227 | 
            +
                        },
         | 
| 2228 | 
            +
                        {
         | 
| 2229 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 2230 | 
            +
                          "name": "token",
         | 
| 2231 | 
            +
                          "type": "address"
         | 
| 2232 | 
            +
                        },
         | 
| 2233 | 
            +
                        {
         | 
| 2234 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 2235 | 
            +
                          "name": "tokenHandler",
         | 
| 2236 | 
            +
                          "type": "address"
         | 
| 2237 | 
            +
                        },
         | 
| 2238 | 
            +
                        {
         | 
| 2239 | 
            +
                          "internalType": "address",
         | 
| 2240 | 
            +
                          "name": "wallet",
         | 
| 2241 | 
            +
                          "type": "address"
         | 
| 2242 | 
            +
                        },
         | 
| 2243 | 
            +
                        {
         | 
| 2244 | 
            +
                          "internalType": "bytes",
         | 
| 2245 | 
            +
                          "name": "data",
         | 
| 2246 | 
            +
                          "type": "bytes"
         | 
| 2247 | 
            +
                        }
         | 
| 2248 | 
            +
                      ],
         | 
| 2249 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 2250 | 
            +
                      "name": "componentInfo",
         | 
| 2251 | 
            +
                      "type": "tuple"
         | 
| 2252 | 
            +
                    },
         | 
| 2253 | 
            +
                    {
         | 
| 2254 | 
            +
                      "internalType": "StateId",
         | 
| 2255 | 
            +
                      "name": "newState",
         | 
| 2256 | 
            +
                      "type": "uint8"
         | 
| 2257 | 
            +
                    }
         | 
| 2258 | 
            +
                  ],
         | 
| 2259 | 
            +
                  "name": "updateComponent",
         | 
| 2260 | 
            +
                  "outputs": [],
         | 
| 2261 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2262 | 
            +
                  "type": "function"
         | 
| 2263 | 
            +
                },
         | 
| 2264 | 
            +
                {
         | 
| 2265 | 
            +
                  "inputs": [
         | 
| 2266 | 
            +
                    {
         | 
| 2267 | 
            +
                      "internalType": "NftId",
         | 
| 2268 | 
            +
                      "name": "distributorNftId",
         | 
| 2269 | 
            +
                      "type": "uint96"
         | 
| 2270 | 
            +
                    },
         | 
| 2271 | 
            +
                    {
         | 
| 2272 | 
            +
                      "components": [
         | 
| 2273 | 
            +
                        {
         | 
| 2274 | 
            +
                          "internalType": "DistributorType",
         | 
| 2275 | 
            +
                          "name": "distributorType",
         | 
| 2276 | 
            +
                          "type": "bytes8"
         | 
| 2277 | 
            +
                        },
         | 
| 2278 | 
            +
                        {
         | 
| 2279 | 
            +
                          "internalType": "bool",
         | 
| 2280 | 
            +
                          "name": "active",
         | 
| 2281 | 
            +
                          "type": "bool"
         | 
| 2282 | 
            +
                        },
         | 
| 2283 | 
            +
                        {
         | 
| 2284 | 
            +
                          "internalType": "bytes",
         | 
| 2285 | 
            +
                          "name": "data",
         | 
| 2286 | 
            +
                          "type": "bytes"
         | 
| 2287 | 
            +
                        },
         | 
| 2288 | 
            +
                        {
         | 
| 2289 | 
            +
                          "internalType": "Amount",
         | 
| 2290 | 
            +
                          "name": "commissionAmount",
         | 
| 2291 | 
            +
                          "type": "uint96"
         | 
| 2292 | 
            +
                        },
         | 
| 2293 | 
            +
                        {
         | 
| 2294 | 
            +
                          "internalType": "uint32",
         | 
| 2295 | 
            +
                          "name": "numPoliciesSold",
         | 
| 2296 | 
            +
                          "type": "uint32"
         | 
| 2297 | 
            +
                        }
         | 
| 2298 | 
            +
                      ],
         | 
| 2299 | 
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 2300 | 
            +
                      "name": "info",
         | 
| 2301 | 
            +
                      "type": "tuple"
         | 
| 2302 | 
            +
                    },
         | 
| 2303 | 
            +
                    {
         | 
| 2304 | 
            +
                      "internalType": "StateId",
         | 
| 2305 | 
            +
                      "name": "newState",
         | 
| 2306 | 
            +
                      "type": "uint8"
         | 
| 2307 | 
            +
                    }
         | 
| 2308 | 
            +
                  ],
         | 
| 2309 | 
            +
                  "name": "updateDistributor",
         | 
| 2310 | 
            +
                  "outputs": [],
         | 
| 2311 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2312 | 
            +
                  "type": "function"
         | 
| 2313 | 
            +
                },
         | 
| 2314 | 
            +
                {
         | 
| 2315 | 
            +
                  "inputs": [
         | 
| 2316 | 
            +
                    {
         | 
| 2317 | 
            +
                      "internalType": "NftId",
         | 
| 2318 | 
            +
                      "name": "distributorNftId",
         | 
| 2319 | 
            +
                      "type": "uint96"
         | 
| 2320 | 
            +
                    },
         | 
| 2321 | 
            +
                    {
         | 
| 2322 | 
            +
                      "internalType": "StateId",
         | 
| 2323 | 
            +
                      "name": "newState",
         | 
| 2324 | 
            +
                      "type": "uint8"
         | 
| 2325 | 
            +
                    }
         | 
| 2326 | 
            +
                  ],
         | 
| 2327 | 
            +
                  "name": "updateDistributorState",
         | 
| 2328 | 
            +
                  "outputs": [],
         | 
| 2329 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2330 | 
            +
                  "type": "function"
         | 
| 2331 | 
            +
                },
         | 
| 2332 | 
            +
                {
         | 
| 2333 | 
            +
                  "inputs": [
         | 
| 2334 | 
            +
                    {
         | 
| 2335 | 
            +
                      "internalType": "DistributorType",
         | 
| 2336 | 
            +
                      "name": "distributorType",
         | 
| 2337 | 
            +
                      "type": "bytes8"
         | 
| 2338 | 
            +
                    },
         | 
| 2339 | 
            +
                    {
         | 
| 2340 | 
            +
                      "components": [
         | 
| 2341 | 
            +
                        {
         | 
| 2342 | 
            +
                          "internalType": "string",
         | 
| 2343 | 
            +
                          "name": "name",
         | 
| 2344 | 
            +
                          "type": "string"
         | 
| 2345 | 
            +
                        },
         | 
| 2346 | 
            +
                        {
         | 
| 2347 | 
            +
                          "internalType": "UFixed",
         | 
| 2348 | 
            +
                          "name": "minDiscountPercentage",
         | 
| 2349 | 
            +
                          "type": "uint256"
         | 
| 2350 | 
            +
                        },
         | 
| 2351 | 
            +
                        {
         | 
| 2352 | 
            +
                          "internalType": "UFixed",
         | 
| 2353 | 
            +
                          "name": "maxDiscountPercentage",
         | 
| 2354 | 
            +
                          "type": "uint256"
         | 
| 2355 | 
            +
                        },
         | 
| 2356 | 
            +
                        {
         | 
| 2357 | 
            +
                          "internalType": "UFixed",
         | 
| 2358 | 
            +
                          "name": "commissionPercentage",
         | 
| 2359 | 
            +
                          "type": "uint256"
         | 
| 2360 | 
            +
                        },
         | 
| 2361 | 
            +
                        {
         | 
| 2362 | 
            +
                          "internalType": "uint32",
         | 
| 2363 | 
            +
                          "name": "maxReferralCount",
         | 
| 2364 | 
            +
                          "type": "uint32"
         | 
| 2365 | 
            +
                        },
         | 
| 2366 | 
            +
                        {
         | 
| 2367 | 
            +
                          "internalType": "uint32",
         | 
| 2368 | 
            +
                          "name": "maxReferralLifetime",
         | 
| 2369 | 
            +
                          "type": "uint32"
         | 
| 2370 | 
            +
                        },
         | 
| 2371 | 
            +
                        {
         | 
| 2372 | 
            +
                          "internalType": "bool",
         | 
| 2373 | 
            +
                          "name": "allowSelfReferrals",
         | 
| 2374 | 
            +
                          "type": "bool"
         | 
| 2375 | 
            +
                        },
         | 
| 2376 | 
            +
                        {
         | 
| 2377 | 
            +
                          "internalType": "bool",
         | 
| 2378 | 
            +
                          "name": "allowRenewals",
         | 
| 2379 | 
            +
                          "type": "bool"
         | 
| 2380 | 
            +
                        },
         | 
| 2381 | 
            +
                        {
         | 
| 2382 | 
            +
                          "internalType": "bytes",
         | 
| 2383 | 
            +
                          "name": "data",
         | 
| 2384 | 
            +
                          "type": "bytes"
         | 
| 2385 | 
            +
                        }
         | 
| 2386 | 
            +
                      ],
         | 
| 2387 | 
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 2388 | 
            +
                      "name": "info",
         | 
| 2389 | 
            +
                      "type": "tuple"
         | 
| 2390 | 
            +
                    },
         | 
| 2391 | 
            +
                    {
         | 
| 2392 | 
            +
                      "internalType": "StateId",
         | 
| 2393 | 
            +
                      "name": "newState",
         | 
| 2394 | 
            +
                      "type": "uint8"
         | 
| 2395 | 
            +
                    }
         | 
| 2396 | 
            +
                  ],
         | 
| 2397 | 
            +
                  "name": "updateDistributorType",
         | 
| 2398 | 
            +
                  "outputs": [],
         | 
| 2399 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2400 | 
            +
                  "type": "function"
         | 
| 2401 | 
            +
                },
         | 
| 2402 | 
            +
                {
         | 
| 2403 | 
            +
                  "inputs": [
         | 
| 2404 | 
            +
                    {
         | 
| 2405 | 
            +
                      "internalType": "DistributorType",
         | 
| 2406 | 
            +
                      "name": "distributorType",
         | 
| 2407 | 
            +
                      "type": "bytes8"
         | 
| 2408 | 
            +
                    },
         | 
| 2409 | 
            +
                    {
         | 
| 2410 | 
            +
                      "internalType": "StateId",
         | 
| 2411 | 
            +
                      "name": "newState",
         | 
| 2412 | 
            +
                      "type": "uint8"
         | 
| 2413 | 
            +
                    }
         | 
| 2414 | 
            +
                  ],
         | 
| 2415 | 
            +
                  "name": "updateDistributorTypeState",
         | 
| 2416 | 
            +
                  "outputs": [],
         | 
| 2417 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2418 | 
            +
                  "type": "function"
         | 
| 2419 | 
            +
                },
         | 
| 2420 | 
            +
                {
         | 
| 2421 | 
            +
                  "inputs": [
         | 
| 2422 | 
            +
                    {
         | 
| 2423 | 
            +
                      "internalType": "NftId",
         | 
| 2424 | 
            +
                      "name": "policyNftId",
         | 
| 2425 | 
            +
                      "type": "uint96"
         | 
| 2426 | 
            +
                    },
         | 
| 2427 | 
            +
                    {
         | 
| 2428 | 
            +
                      "internalType": "PayoutId",
         | 
| 2429 | 
            +
                      "name": "payoutId",
         | 
| 2430 | 
            +
                      "type": "uint24"
         | 
| 2431 | 
            +
                    },
         | 
| 2432 | 
            +
                    {
         | 
| 2433 | 
            +
                      "components": [
         | 
| 2434 | 
            +
                        {
         | 
| 2435 | 
            +
                          "internalType": "ClaimId",
         | 
| 2436 | 
            +
                          "name": "claimId",
         | 
| 2437 | 
            +
                          "type": "uint16"
         | 
| 2438 | 
            +
                        },
         | 
| 2439 | 
            +
                        {
         | 
| 2440 | 
            +
                          "internalType": "Amount",
         | 
| 2441 | 
            +
                          "name": "amount",
         | 
| 2442 | 
            +
                          "type": "uint96"
         | 
| 2443 | 
            +
                        },
         | 
| 2444 | 
            +
                        {
         | 
| 2445 | 
            +
                          "internalType": "bytes",
         | 
| 2446 | 
            +
                          "name": "data",
         | 
| 2447 | 
            +
                          "type": "bytes"
         | 
| 2448 | 
            +
                        },
         | 
| 2449 | 
            +
                        {
         | 
| 2450 | 
            +
                          "internalType": "Timestamp",
         | 
| 2451 | 
            +
                          "name": "paidAt",
         | 
| 2452 | 
            +
                          "type": "uint40"
         | 
| 2453 | 
            +
                        }
         | 
| 2454 | 
            +
                      ],
         | 
| 2455 | 
            +
                      "internalType": "struct IPolicy.PayoutInfo",
         | 
| 2456 | 
            +
                      "name": "payout",
         | 
| 2457 | 
            +
                      "type": "tuple"
         | 
| 2458 | 
            +
                    },
         | 
| 2459 | 
            +
                    {
         | 
| 2460 | 
            +
                      "internalType": "StateId",
         | 
| 2461 | 
            +
                      "name": "newState",
         | 
| 2462 | 
            +
                      "type": "uint8"
         | 
| 2463 | 
            +
                    }
         | 
| 2464 | 
            +
                  ],
         | 
| 2465 | 
            +
                  "name": "updatePayout",
         | 
| 2466 | 
            +
                  "outputs": [],
         | 
| 2467 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2468 | 
            +
                  "type": "function"
         | 
| 2469 | 
            +
                },
         | 
| 2470 | 
            +
                {
         | 
| 2471 | 
            +
                  "inputs": [
         | 
| 2472 | 
            +
                    {
         | 
| 2473 | 
            +
                      "internalType": "NftId",
         | 
| 2474 | 
            +
                      "name": "policyNftId",
         | 
| 2475 | 
            +
                      "type": "uint96"
         | 
| 2476 | 
            +
                    },
         | 
| 2477 | 
            +
                    {
         | 
| 2478 | 
            +
                      "internalType": "PayoutId",
         | 
| 2479 | 
            +
                      "name": "payoutId",
         | 
| 2480 | 
            +
                      "type": "uint24"
         | 
| 2481 | 
            +
                    },
         | 
| 2482 | 
            +
                    {
         | 
| 2483 | 
            +
                      "internalType": "StateId",
         | 
| 2484 | 
            +
                      "name": "newState",
         | 
| 2485 | 
            +
                      "type": "uint8"
         | 
| 2486 | 
            +
                    }
         | 
| 2487 | 
            +
                  ],
         | 
| 2488 | 
            +
                  "name": "updatePayoutState",
         | 
| 2489 | 
            +
                  "outputs": [],
         | 
| 2490 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2491 | 
            +
                  "type": "function"
         | 
| 2492 | 
            +
                },
         | 
| 2493 | 
            +
                {
         | 
| 2494 | 
            +
                  "inputs": [
         | 
| 2495 | 
            +
                    {
         | 
| 2496 | 
            +
                      "internalType": "NftId",
         | 
| 2497 | 
            +
                      "name": "policyNftId",
         | 
| 2498 | 
            +
                      "type": "uint96"
         | 
| 2499 | 
            +
                    },
         | 
| 2500 | 
            +
                    {
         | 
| 2501 | 
            +
                      "components": [
         | 
| 2502 | 
            +
                        {
         | 
| 2503 | 
            +
                          "internalType": "NftId",
         | 
| 2504 | 
            +
                          "name": "productNftId",
         | 
| 2505 | 
            +
                          "type": "uint96"
         | 
| 2506 | 
            +
                        },
         | 
| 2507 | 
            +
                        {
         | 
| 2508 | 
            +
                          "internalType": "NftId",
         | 
| 2509 | 
            +
                          "name": "bundleNftId",
         | 
| 2510 | 
            +
                          "type": "uint96"
         | 
| 2511 | 
            +
                        },
         | 
| 2512 | 
            +
                        {
         | 
| 2513 | 
            +
                          "internalType": "ReferralId",
         | 
| 2514 | 
            +
                          "name": "referralId",
         | 
| 2515 | 
            +
                          "type": "bytes8"
         | 
| 2516 | 
            +
                        },
         | 
| 2517 | 
            +
                        {
         | 
| 2518 | 
            +
                          "internalType": "RiskId",
         | 
| 2519 | 
            +
                          "name": "riskId",
         | 
| 2520 | 
            +
                          "type": "bytes8"
         | 
| 2521 | 
            +
                        },
         | 
| 2522 | 
            +
                        {
         | 
| 2523 | 
            +
                          "internalType": "Amount",
         | 
| 2524 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 2525 | 
            +
                          "type": "uint96"
         | 
| 2526 | 
            +
                        },
         | 
| 2527 | 
            +
                        {
         | 
| 2528 | 
            +
                          "internalType": "Amount",
         | 
| 2529 | 
            +
                          "name": "premiumAmount",
         | 
| 2530 | 
            +
                          "type": "uint96"
         | 
| 2531 | 
            +
                        },
         | 
| 2532 | 
            +
                        {
         | 
| 2533 | 
            +
                          "internalType": "Amount",
         | 
| 2534 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 2535 | 
            +
                          "type": "uint96"
         | 
| 2536 | 
            +
                        },
         | 
| 2537 | 
            +
                        {
         | 
| 2538 | 
            +
                          "internalType": "Seconds",
         | 
| 2539 | 
            +
                          "name": "lifetime",
         | 
| 2540 | 
            +
                          "type": "uint40"
         | 
| 2541 | 
            +
                        },
         | 
| 2542 | 
            +
                        {
         | 
| 2543 | 
            +
                          "internalType": "bytes",
         | 
| 2544 | 
            +
                          "name": "applicationData",
         | 
| 2545 | 
            +
                          "type": "bytes"
         | 
| 2546 | 
            +
                        },
         | 
| 2547 | 
            +
                        {
         | 
| 2548 | 
            +
                          "internalType": "bytes",
         | 
| 2549 | 
            +
                          "name": "processData",
         | 
| 2550 | 
            +
                          "type": "bytes"
         | 
| 2551 | 
            +
                        },
         | 
| 2552 | 
            +
                        {
         | 
| 2553 | 
            +
                          "internalType": "uint16",
         | 
| 2554 | 
            +
                          "name": "claimsCount",
         | 
| 2555 | 
            +
                          "type": "uint16"
         | 
| 2556 | 
            +
                        },
         | 
| 2557 | 
            +
                        {
         | 
| 2558 | 
            +
                          "internalType": "uint16",
         | 
| 2559 | 
            +
                          "name": "openClaimsCount",
         | 
| 2560 | 
            +
                          "type": "uint16"
         | 
| 2561 | 
            +
                        },
         | 
| 2562 | 
            +
                        {
         | 
| 2563 | 
            +
                          "internalType": "Amount",
         | 
| 2564 | 
            +
                          "name": "claimAmount",
         | 
| 2565 | 
            +
                          "type": "uint96"
         | 
| 2566 | 
            +
                        },
         | 
| 2567 | 
            +
                        {
         | 
| 2568 | 
            +
                          "internalType": "Amount",
         | 
| 2569 | 
            +
                          "name": "payoutAmount",
         | 
| 2570 | 
            +
                          "type": "uint96"
         | 
| 2571 | 
            +
                        },
         | 
| 2572 | 
            +
                        {
         | 
| 2573 | 
            +
                          "internalType": "Timestamp",
         | 
| 2574 | 
            +
                          "name": "activatedAt",
         | 
| 2575 | 
            +
                          "type": "uint40"
         | 
| 2576 | 
            +
                        },
         | 
| 2577 | 
            +
                        {
         | 
| 2578 | 
            +
                          "internalType": "Timestamp",
         | 
| 2579 | 
            +
                          "name": "expiredAt",
         | 
| 2580 | 
            +
                          "type": "uint40"
         | 
| 2581 | 
            +
                        },
         | 
| 2582 | 
            +
                        {
         | 
| 2583 | 
            +
                          "internalType": "Timestamp",
         | 
| 2584 | 
            +
                          "name": "closedAt",
         | 
| 2585 | 
            +
                          "type": "uint40"
         | 
| 2586 | 
            +
                        }
         | 
| 2587 | 
            +
                      ],
         | 
| 2588 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 2589 | 
            +
                      "name": "policy",
         | 
| 2590 | 
            +
                      "type": "tuple"
         | 
| 2591 | 
            +
                    },
         | 
| 2592 | 
            +
                    {
         | 
| 2593 | 
            +
                      "internalType": "StateId",
         | 
| 2594 | 
            +
                      "name": "newState",
         | 
| 2595 | 
            +
                      "type": "uint8"
         | 
| 2596 | 
            +
                    }
         | 
| 2597 | 
            +
                  ],
         | 
| 2598 | 
            +
                  "name": "updatePolicy",
         | 
| 2599 | 
            +
                  "outputs": [],
         | 
| 2600 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2601 | 
            +
                  "type": "function"
         | 
| 2602 | 
            +
                },
         | 
| 2603 | 
            +
                {
         | 
| 2604 | 
            +
                  "inputs": [
         | 
| 2605 | 
            +
                    {
         | 
| 2606 | 
            +
                      "internalType": "NftId",
         | 
| 2607 | 
            +
                      "name": "policyNftId",
         | 
| 2608 | 
            +
                      "type": "uint96"
         | 
| 2609 | 
            +
                    },
         | 
| 2610 | 
            +
                    {
         | 
| 2611 | 
            +
                      "components": [
         | 
| 2612 | 
            +
                        {
         | 
| 2613 | 
            +
                          "internalType": "NftId",
         | 
| 2614 | 
            +
                          "name": "productNftId",
         | 
| 2615 | 
            +
                          "type": "uint96"
         | 
| 2616 | 
            +
                        },
         | 
| 2617 | 
            +
                        {
         | 
| 2618 | 
            +
                          "internalType": "NftId",
         | 
| 2619 | 
            +
                          "name": "bundleNftId",
         | 
| 2620 | 
            +
                          "type": "uint96"
         | 
| 2621 | 
            +
                        },
         | 
| 2622 | 
            +
                        {
         | 
| 2623 | 
            +
                          "internalType": "ReferralId",
         | 
| 2624 | 
            +
                          "name": "referralId",
         | 
| 2625 | 
            +
                          "type": "bytes8"
         | 
| 2626 | 
            +
                        },
         | 
| 2627 | 
            +
                        {
         | 
| 2628 | 
            +
                          "internalType": "RiskId",
         | 
| 2629 | 
            +
                          "name": "riskId",
         | 
| 2630 | 
            +
                          "type": "bytes8"
         | 
| 2631 | 
            +
                        },
         | 
| 2632 | 
            +
                        {
         | 
| 2633 | 
            +
                          "internalType": "Amount",
         | 
| 2634 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 2635 | 
            +
                          "type": "uint96"
         | 
| 2636 | 
            +
                        },
         | 
| 2637 | 
            +
                        {
         | 
| 2638 | 
            +
                          "internalType": "Amount",
         | 
| 2639 | 
            +
                          "name": "premiumAmount",
         | 
| 2640 | 
            +
                          "type": "uint96"
         | 
| 2641 | 
            +
                        },
         | 
| 2642 | 
            +
                        {
         | 
| 2643 | 
            +
                          "internalType": "Amount",
         | 
| 2644 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 2645 | 
            +
                          "type": "uint96"
         | 
| 2646 | 
            +
                        },
         | 
| 2647 | 
            +
                        {
         | 
| 2648 | 
            +
                          "internalType": "Seconds",
         | 
| 2649 | 
            +
                          "name": "lifetime",
         | 
| 2650 | 
            +
                          "type": "uint40"
         | 
| 2651 | 
            +
                        },
         | 
| 2652 | 
            +
                        {
         | 
| 2653 | 
            +
                          "internalType": "bytes",
         | 
| 2654 | 
            +
                          "name": "applicationData",
         | 
| 2655 | 
            +
                          "type": "bytes"
         | 
| 2656 | 
            +
                        },
         | 
| 2657 | 
            +
                        {
         | 
| 2658 | 
            +
                          "internalType": "bytes",
         | 
| 2659 | 
            +
                          "name": "processData",
         | 
| 2660 | 
            +
                          "type": "bytes"
         | 
| 2661 | 
            +
                        },
         | 
| 2662 | 
            +
                        {
         | 
| 2663 | 
            +
                          "internalType": "uint16",
         | 
| 2664 | 
            +
                          "name": "claimsCount",
         | 
| 2665 | 
            +
                          "type": "uint16"
         | 
| 2666 | 
            +
                        },
         | 
| 2667 | 
            +
                        {
         | 
| 2668 | 
            +
                          "internalType": "uint16",
         | 
| 2669 | 
            +
                          "name": "openClaimsCount",
         | 
| 2670 | 
            +
                          "type": "uint16"
         | 
| 2671 | 
            +
                        },
         | 
| 2672 | 
            +
                        {
         | 
| 2673 | 
            +
                          "internalType": "Amount",
         | 
| 2674 | 
            +
                          "name": "claimAmount",
         | 
| 2675 | 
            +
                          "type": "uint96"
         | 
| 2676 | 
            +
                        },
         | 
| 2677 | 
            +
                        {
         | 
| 2678 | 
            +
                          "internalType": "Amount",
         | 
| 2679 | 
            +
                          "name": "payoutAmount",
         | 
| 2680 | 
            +
                          "type": "uint96"
         | 
| 2681 | 
            +
                        },
         | 
| 2682 | 
            +
                        {
         | 
| 2683 | 
            +
                          "internalType": "Timestamp",
         | 
| 2684 | 
            +
                          "name": "activatedAt",
         | 
| 2685 | 
            +
                          "type": "uint40"
         | 
| 2686 | 
            +
                        },
         | 
| 2687 | 
            +
                        {
         | 
| 2688 | 
            +
                          "internalType": "Timestamp",
         | 
| 2689 | 
            +
                          "name": "expiredAt",
         | 
| 2690 | 
            +
                          "type": "uint40"
         | 
| 2691 | 
            +
                        },
         | 
| 2692 | 
            +
                        {
         | 
| 2693 | 
            +
                          "internalType": "Timestamp",
         | 
| 2694 | 
            +
                          "name": "closedAt",
         | 
| 2695 | 
            +
                          "type": "uint40"
         | 
| 2696 | 
            +
                        }
         | 
| 2697 | 
            +
                      ],
         | 
| 2698 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 2699 | 
            +
                      "name": "policy",
         | 
| 2700 | 
            +
                      "type": "tuple"
         | 
| 2701 | 
            +
                    },
         | 
| 2702 | 
            +
                    {
         | 
| 2703 | 
            +
                      "internalType": "StateId",
         | 
| 2704 | 
            +
                      "name": "newState",
         | 
| 2705 | 
            +
                      "type": "uint8"
         | 
| 2706 | 
            +
                    }
         | 
| 2707 | 
            +
                  ],
         | 
| 2708 | 
            +
                  "name": "updatePolicyClaims",
         | 
| 2709 | 
            +
                  "outputs": [],
         | 
| 2710 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2711 | 
            +
                  "type": "function"
         | 
| 2712 | 
            +
                },
         | 
| 2713 | 
            +
                {
         | 
| 2714 | 
            +
                  "inputs": [
         | 
| 2715 | 
            +
                    {
         | 
| 2716 | 
            +
                      "internalType": "NftId",
         | 
| 2717 | 
            +
                      "name": "policyNftId",
         | 
| 2718 | 
            +
                      "type": "uint96"
         | 
| 2719 | 
            +
                    },
         | 
| 2720 | 
            +
                    {
         | 
| 2721 | 
            +
                      "internalType": "StateId",
         | 
| 2722 | 
            +
                      "name": "newState",
         | 
| 2723 | 
            +
                      "type": "uint8"
         | 
| 2724 | 
            +
                    }
         | 
| 2725 | 
            +
                  ],
         | 
| 2726 | 
            +
                  "name": "updatePolicyState",
         | 
| 2727 | 
            +
                  "outputs": [],
         | 
| 2728 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2729 | 
            +
                  "type": "function"
         | 
| 2730 | 
            +
                },
         | 
| 2731 | 
            +
                {
         | 
| 2732 | 
            +
                  "inputs": [
         | 
| 2733 | 
            +
                    {
         | 
| 2734 | 
            +
                      "internalType": "NftId",
         | 
| 2735 | 
            +
                      "name": "poolNftId",
         | 
| 2736 | 
            +
                      "type": "uint96"
         | 
| 2737 | 
            +
                    },
         | 
| 2738 | 
            +
                    {
         | 
| 2739 | 
            +
                      "components": [
         | 
| 2740 | 
            +
                        {
         | 
| 2741 | 
            +
                          "internalType": "NftId",
         | 
| 2742 | 
            +
                          "name": "productNftId",
         | 
| 2743 | 
            +
                          "type": "uint96"
         | 
| 2744 | 
            +
                        },
         | 
| 2745 | 
            +
                        {
         | 
| 2746 | 
            +
                          "internalType": "RoleId",
         | 
| 2747 | 
            +
                          "name": "bundleOwnerRole",
         | 
| 2748 | 
            +
                          "type": "uint64"
         | 
| 2749 | 
            +
                        },
         | 
| 2750 | 
            +
                        {
         | 
| 2751 | 
            +
                          "internalType": "Amount",
         | 
| 2752 | 
            +
                          "name": "maxCapitalAmount",
         | 
| 2753 | 
            +
                          "type": "uint96"
         | 
| 2754 | 
            +
                        },
         | 
| 2755 | 
            +
                        {
         | 
| 2756 | 
            +
                          "internalType": "bool",
         | 
| 2757 | 
            +
                          "name": "isInterceptingBundleTransfers",
         | 
| 2758 | 
            +
                          "type": "bool"
         | 
| 2759 | 
            +
                        },
         | 
| 2760 | 
            +
                        {
         | 
| 2761 | 
            +
                          "internalType": "bool",
         | 
| 2762 | 
            +
                          "name": "isExternallyManaged",
         | 
| 2763 | 
            +
                          "type": "bool"
         | 
| 2764 | 
            +
                        },
         | 
| 2765 | 
            +
                        {
         | 
| 2766 | 
            +
                          "internalType": "bool",
         | 
| 2767 | 
            +
                          "name": "isVerifyingApplications",
         | 
| 2768 | 
            +
                          "type": "bool"
         | 
| 2769 | 
            +
                        },
         | 
| 2770 | 
            +
                        {
         | 
| 2771 | 
            +
                          "internalType": "UFixed",
         | 
| 2772 | 
            +
                          "name": "collateralizationLevel",
         | 
| 2773 | 
            +
                          "type": "uint256"
         | 
| 2774 | 
            +
                        },
         | 
| 2775 | 
            +
                        {
         | 
| 2776 | 
            +
                          "internalType": "UFixed",
         | 
| 2777 | 
            +
                          "name": "retentionLevel",
         | 
| 2778 | 
            +
                          "type": "uint256"
         | 
| 2779 | 
            +
                        },
         | 
| 2780 | 
            +
                        {
         | 
| 2781 | 
            +
                          "components": [
         | 
| 2782 | 
            +
                            {
         | 
| 2783 | 
            +
                              "internalType": "UFixed",
         | 
| 2784 | 
            +
                              "name": "fractionalFee",
         | 
| 2785 | 
            +
                              "type": "uint256"
         | 
| 2786 | 
            +
                            },
         | 
| 2787 | 
            +
                            {
         | 
| 2788 | 
            +
                              "internalType": "uint256",
         | 
| 2789 | 
            +
                              "name": "fixedFee",
         | 
| 2790 | 
            +
                              "type": "uint256"
         | 
| 2791 | 
            +
                            }
         | 
| 2792 | 
            +
                          ],
         | 
| 2793 | 
            +
                          "internalType": "struct Fee",
         | 
| 2794 | 
            +
                          "name": "poolFee",
         | 
| 2795 | 
            +
                          "type": "tuple"
         | 
| 2796 | 
            +
                        },
         | 
| 2797 | 
            +
                        {
         | 
| 2798 | 
            +
                          "components": [
         | 
| 2799 | 
            +
                            {
         | 
| 2800 | 
            +
                              "internalType": "UFixed",
         | 
| 2801 | 
            +
                              "name": "fractionalFee",
         | 
| 2802 | 
            +
                              "type": "uint256"
         | 
| 2803 | 
            +
                            },
         | 
| 2804 | 
            +
                            {
         | 
| 2805 | 
            +
                              "internalType": "uint256",
         | 
| 2806 | 
            +
                              "name": "fixedFee",
         | 
| 2807 | 
            +
                              "type": "uint256"
         | 
| 2808 | 
            +
                            }
         | 
| 2809 | 
            +
                          ],
         | 
| 2810 | 
            +
                          "internalType": "struct Fee",
         | 
| 2811 | 
            +
                          "name": "stakingFee",
         | 
| 2812 | 
            +
                          "type": "tuple"
         | 
| 2813 | 
            +
                        },
         | 
| 2814 | 
            +
                        {
         | 
| 2815 | 
            +
                          "components": [
         | 
| 2816 | 
            +
                            {
         | 
| 2817 | 
            +
                              "internalType": "UFixed",
         | 
| 2818 | 
            +
                              "name": "fractionalFee",
         | 
| 2819 | 
            +
                              "type": "uint256"
         | 
| 2820 | 
            +
                            },
         | 
| 2821 | 
            +
                            {
         | 
| 2822 | 
            +
                              "internalType": "uint256",
         | 
| 2823 | 
            +
                              "name": "fixedFee",
         | 
| 2824 | 
            +
                              "type": "uint256"
         | 
| 2825 | 
            +
                            }
         | 
| 2826 | 
            +
                          ],
         | 
| 2827 | 
            +
                          "internalType": "struct Fee",
         | 
| 2828 | 
            +
                          "name": "performanceFee",
         | 
| 2829 | 
            +
                          "type": "tuple"
         | 
| 2830 | 
            +
                        }
         | 
| 2831 | 
            +
                      ],
         | 
| 2832 | 
            +
                      "internalType": "struct IComponents.PoolInfo",
         | 
| 2833 | 
            +
                      "name": "info",
         | 
| 2834 | 
            +
                      "type": "tuple"
         | 
| 2835 | 
            +
                    },
         | 
| 2836 | 
            +
                    {
         | 
| 2837 | 
            +
                      "internalType": "StateId",
         | 
| 2838 | 
            +
                      "name": "newState",
         | 
| 2839 | 
            +
                      "type": "uint8"
         | 
| 2840 | 
            +
                    }
         | 
| 2841 | 
            +
                  ],
         | 
| 2842 | 
            +
                  "name": "updatePool",
         | 
| 2843 | 
            +
                  "outputs": [],
         | 
| 2844 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2845 | 
            +
                  "type": "function"
         | 
| 2846 | 
            +
                },
         | 
| 2847 | 
            +
                {
         | 
| 2848 | 
            +
                  "inputs": [
         | 
| 2849 | 
            +
                    {
         | 
| 2850 | 
            +
                      "internalType": "NftId",
         | 
| 2851 | 
            +
                      "name": "productNftId",
         | 
| 2852 | 
            +
                      "type": "uint96"
         | 
| 2853 | 
            +
                    },
         | 
| 2854 | 
            +
                    {
         | 
| 2855 | 
            +
                      "components": [
         | 
| 2856 | 
            +
                        {
         | 
| 2857 | 
            +
                          "internalType": "NftId",
         | 
| 2858 | 
            +
                          "name": "distributionNftId",
         | 
| 2859 | 
            +
                          "type": "uint96"
         | 
| 2860 | 
            +
                        },
         | 
| 2861 | 
            +
                        {
         | 
| 2862 | 
            +
                          "internalType": "NftId",
         | 
| 2863 | 
            +
                          "name": "poolNftId",
         | 
| 2864 | 
            +
                          "type": "uint96"
         | 
| 2865 | 
            +
                        },
         | 
| 2866 | 
            +
                        {
         | 
| 2867 | 
            +
                          "components": [
         | 
| 2868 | 
            +
                            {
         | 
| 2869 | 
            +
                              "internalType": "UFixed",
         | 
| 2870 | 
            +
                              "name": "fractionalFee",
         | 
| 2871 | 
            +
                              "type": "uint256"
         | 
| 2872 | 
            +
                            },
         | 
| 2873 | 
            +
                            {
         | 
| 2874 | 
            +
                              "internalType": "uint256",
         | 
| 2875 | 
            +
                              "name": "fixedFee",
         | 
| 2876 | 
            +
                              "type": "uint256"
         | 
| 2877 | 
            +
                            }
         | 
| 2878 | 
            +
                          ],
         | 
| 2879 | 
            +
                          "internalType": "struct Fee",
         | 
| 2880 | 
            +
                          "name": "productFee",
         | 
| 2881 | 
            +
                          "type": "tuple"
         | 
| 2882 | 
            +
                        },
         | 
| 2883 | 
            +
                        {
         | 
| 2884 | 
            +
                          "components": [
         | 
| 2885 | 
            +
                            {
         | 
| 2886 | 
            +
                              "internalType": "UFixed",
         | 
| 2887 | 
            +
                              "name": "fractionalFee",
         | 
| 2888 | 
            +
                              "type": "uint256"
         | 
| 2889 | 
            +
                            },
         | 
| 2890 | 
            +
                            {
         | 
| 2891 | 
            +
                              "internalType": "uint256",
         | 
| 2892 | 
            +
                              "name": "fixedFee",
         | 
| 2893 | 
            +
                              "type": "uint256"
         | 
| 2894 | 
            +
                            }
         | 
| 2895 | 
            +
                          ],
         | 
| 2896 | 
            +
                          "internalType": "struct Fee",
         | 
| 2897 | 
            +
                          "name": "processingFee",
         | 
| 2898 | 
            +
                          "type": "tuple"
         | 
| 2899 | 
            +
                        },
         | 
| 2900 | 
            +
                        {
         | 
| 2901 | 
            +
                          "components": [
         | 
| 2902 | 
            +
                            {
         | 
| 2903 | 
            +
                              "internalType": "UFixed",
         | 
| 2904 | 
            +
                              "name": "fractionalFee",
         | 
| 2905 | 
            +
                              "type": "uint256"
         | 
| 2906 | 
            +
                            },
         | 
| 2907 | 
            +
                            {
         | 
| 2908 | 
            +
                              "internalType": "uint256",
         | 
| 2909 | 
            +
                              "name": "fixedFee",
         | 
| 2910 | 
            +
                              "type": "uint256"
         | 
| 2911 | 
            +
                            }
         | 
| 2912 | 
            +
                          ],
         | 
| 2913 | 
            +
                          "internalType": "struct Fee",
         | 
| 2914 | 
            +
                          "name": "distributionFee",
         | 
| 2915 | 
            +
                          "type": "tuple"
         | 
| 2916 | 
            +
                        },
         | 
| 2917 | 
            +
                        {
         | 
| 2918 | 
            +
                          "components": [
         | 
| 2919 | 
            +
                            {
         | 
| 2920 | 
            +
                              "internalType": "UFixed",
         | 
| 2921 | 
            +
                              "name": "fractionalFee",
         | 
| 2922 | 
            +
                              "type": "uint256"
         | 
| 2923 | 
            +
                            },
         | 
| 2924 | 
            +
                            {
         | 
| 2925 | 
            +
                              "internalType": "uint256",
         | 
| 2926 | 
            +
                              "name": "fixedFee",
         | 
| 2927 | 
            +
                              "type": "uint256"
         | 
| 2928 | 
            +
                            }
         | 
| 2929 | 
            +
                          ],
         | 
| 2930 | 
            +
                          "internalType": "struct Fee",
         | 
| 2931 | 
            +
                          "name": "minDistributionOwnerFee",
         | 
| 2932 | 
            +
                          "type": "tuple"
         | 
| 2933 | 
            +
                        },
         | 
| 2934 | 
            +
                        {
         | 
| 2935 | 
            +
                          "components": [
         | 
| 2936 | 
            +
                            {
         | 
| 2937 | 
            +
                              "internalType": "UFixed",
         | 
| 2938 | 
            +
                              "name": "fractionalFee",
         | 
| 2939 | 
            +
                              "type": "uint256"
         | 
| 2940 | 
            +
                            },
         | 
| 2941 | 
            +
                            {
         | 
| 2942 | 
            +
                              "internalType": "uint256",
         | 
| 2943 | 
            +
                              "name": "fixedFee",
         | 
| 2944 | 
            +
                              "type": "uint256"
         | 
| 2945 | 
            +
                            }
         | 
| 2946 | 
            +
                          ],
         | 
| 2947 | 
            +
                          "internalType": "struct Fee",
         | 
| 2948 | 
            +
                          "name": "poolFee",
         | 
| 2949 | 
            +
                          "type": "tuple"
         | 
| 2950 | 
            +
                        },
         | 
| 2951 | 
            +
                        {
         | 
| 2952 | 
            +
                          "components": [
         | 
| 2953 | 
            +
                            {
         | 
| 2954 | 
            +
                              "internalType": "UFixed",
         | 
| 2955 | 
            +
                              "name": "fractionalFee",
         | 
| 2956 | 
            +
                              "type": "uint256"
         | 
| 2957 | 
            +
                            },
         | 
| 2958 | 
            +
                            {
         | 
| 2959 | 
            +
                              "internalType": "uint256",
         | 
| 2960 | 
            +
                              "name": "fixedFee",
         | 
| 2961 | 
            +
                              "type": "uint256"
         | 
| 2962 | 
            +
                            }
         | 
| 2963 | 
            +
                          ],
         | 
| 2964 | 
            +
                          "internalType": "struct Fee",
         | 
| 2965 | 
            +
                          "name": "stakingFee",
         | 
| 2966 | 
            +
                          "type": "tuple"
         | 
| 2967 | 
            +
                        },
         | 
| 2968 | 
            +
                        {
         | 
| 2969 | 
            +
                          "components": [
         | 
| 2970 | 
            +
                            {
         | 
| 2971 | 
            +
                              "internalType": "UFixed",
         | 
| 2972 | 
            +
                              "name": "fractionalFee",
         | 
| 2973 | 
            +
                              "type": "uint256"
         | 
| 2974 | 
            +
                            },
         | 
| 2975 | 
            +
                            {
         | 
| 2976 | 
            +
                              "internalType": "uint256",
         | 
| 2977 | 
            +
                              "name": "fixedFee",
         | 
| 2978 | 
            +
                              "type": "uint256"
         | 
| 2979 | 
            +
                            }
         | 
| 2980 | 
            +
                          ],
         | 
| 2981 | 
            +
                          "internalType": "struct Fee",
         | 
| 2982 | 
            +
                          "name": "performanceFee",
         | 
| 2983 | 
            +
                          "type": "tuple"
         | 
| 2984 | 
            +
                        }
         | 
| 2985 | 
            +
                      ],
         | 
| 2986 | 
            +
                      "internalType": "struct IComponents.ProductInfo",
         | 
| 2987 | 
            +
                      "name": "info",
         | 
| 2988 | 
            +
                      "type": "tuple"
         | 
| 2989 | 
            +
                    },
         | 
| 2990 | 
            +
                    {
         | 
| 2991 | 
            +
                      "internalType": "StateId",
         | 
| 2992 | 
            +
                      "name": "newState",
         | 
| 2993 | 
            +
                      "type": "uint8"
         | 
| 2994 | 
            +
                    }
         | 
| 2995 | 
            +
                  ],
         | 
| 2996 | 
            +
                  "name": "updateProduct",
         | 
| 2997 | 
            +
                  "outputs": [],
         | 
| 2998 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2999 | 
            +
                  "type": "function"
         | 
| 3000 | 
            +
                },
         | 
| 3001 | 
            +
                {
         | 
| 3002 | 
            +
                  "inputs": [
         | 
| 3003 | 
            +
                    {
         | 
| 3004 | 
            +
                      "internalType": "ReferralId",
         | 
| 3005 | 
            +
                      "name": "referralId",
         | 
| 3006 | 
            +
                      "type": "bytes8"
         | 
| 3007 | 
            +
                    },
         | 
| 3008 | 
            +
                    {
         | 
| 3009 | 
            +
                      "components": [
         | 
| 3010 | 
            +
                        {
         | 
| 3011 | 
            +
                          "internalType": "NftId",
         | 
| 3012 | 
            +
                          "name": "distributorNftId",
         | 
| 3013 | 
            +
                          "type": "uint96"
         | 
| 3014 | 
            +
                        },
         | 
| 3015 | 
            +
                        {
         | 
| 3016 | 
            +
                          "internalType": "string",
         | 
| 3017 | 
            +
                          "name": "referralCode",
         | 
| 3018 | 
            +
                          "type": "string"
         | 
| 3019 | 
            +
                        },
         | 
| 3020 | 
            +
                        {
         | 
| 3021 | 
            +
                          "internalType": "UFixed",
         | 
| 3022 | 
            +
                          "name": "discountPercentage",
         | 
| 3023 | 
            +
                          "type": "uint256"
         | 
| 3024 | 
            +
                        },
         | 
| 3025 | 
            +
                        {
         | 
| 3026 | 
            +
                          "internalType": "uint32",
         | 
| 3027 | 
            +
                          "name": "maxReferrals",
         | 
| 3028 | 
            +
                          "type": "uint32"
         | 
| 3029 | 
            +
                        },
         | 
| 3030 | 
            +
                        {
         | 
| 3031 | 
            +
                          "internalType": "uint32",
         | 
| 3032 | 
            +
                          "name": "usedReferrals",
         | 
| 3033 | 
            +
                          "type": "uint32"
         | 
| 3034 | 
            +
                        },
         | 
| 3035 | 
            +
                        {
         | 
| 3036 | 
            +
                          "internalType": "Timestamp",
         | 
| 3037 | 
            +
                          "name": "expiryAt",
         | 
| 3038 | 
            +
                          "type": "uint40"
         | 
| 3039 | 
            +
                        },
         | 
| 3040 | 
            +
                        {
         | 
| 3041 | 
            +
                          "internalType": "bytes",
         | 
| 3042 | 
            +
                          "name": "data",
         | 
| 3043 | 
            +
                          "type": "bytes"
         | 
| 3044 | 
            +
                        }
         | 
| 3045 | 
            +
                      ],
         | 
| 3046 | 
            +
                      "internalType": "struct IDistribution.ReferralInfo",
         | 
| 3047 | 
            +
                      "name": "referralInfo",
         | 
| 3048 | 
            +
                      "type": "tuple"
         | 
| 3049 | 
            +
                    },
         | 
| 3050 | 
            +
                    {
         | 
| 3051 | 
            +
                      "internalType": "StateId",
         | 
| 3052 | 
            +
                      "name": "newState",
         | 
| 3053 | 
            +
                      "type": "uint8"
         | 
| 3054 | 
            +
                    }
         | 
| 3055 | 
            +
                  ],
         | 
| 3056 | 
            +
                  "name": "updateReferral",
         | 
| 3057 | 
            +
                  "outputs": [],
         | 
| 3058 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 3059 | 
            +
                  "type": "function"
         | 
| 3060 | 
            +
                },
         | 
| 3061 | 
            +
                {
         | 
| 3062 | 
            +
                  "inputs": [
         | 
| 3063 | 
            +
                    {
         | 
| 3064 | 
            +
                      "internalType": "ReferralId",
         | 
| 3065 | 
            +
                      "name": "referralId",
         | 
| 3066 | 
            +
                      "type": "bytes8"
         | 
| 3067 | 
            +
                    },
         | 
| 3068 | 
            +
                    {
         | 
| 3069 | 
            +
                      "internalType": "StateId",
         | 
| 3070 | 
            +
                      "name": "newState",
         | 
| 3071 | 
            +
                      "type": "uint8"
         | 
| 3072 | 
            +
                    }
         | 
| 3073 | 
            +
                  ],
         | 
| 3074 | 
            +
                  "name": "updateReferralState",
         | 
| 3075 | 
            +
                  "outputs": [],
         | 
| 3076 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 3077 | 
            +
                  "type": "function"
         | 
| 3078 | 
            +
                },
         | 
| 3079 | 
            +
                {
         | 
| 3080 | 
            +
                  "inputs": [
         | 
| 3081 | 
            +
                    {
         | 
| 3082 | 
            +
                      "internalType": "RequestId",
         | 
| 3083 | 
            +
                      "name": "requestId",
         | 
| 3084 | 
            +
                      "type": "uint64"
         | 
| 3085 | 
            +
                    },
         | 
| 3086 | 
            +
                    {
         | 
| 3087 | 
            +
                      "components": [
         | 
| 3088 | 
            +
                        {
         | 
| 3089 | 
            +
                          "internalType": "NftId",
         | 
| 3090 | 
            +
                          "name": "requesterNftId",
         | 
| 3091 | 
            +
                          "type": "uint96"
         | 
| 3092 | 
            +
                        },
         | 
| 3093 | 
            +
                        {
         | 
| 3094 | 
            +
                          "internalType": "string",
         | 
| 3095 | 
            +
                          "name": "callbackMethodName",
         | 
| 3096 | 
            +
                          "type": "string"
         | 
| 3097 | 
            +
                        },
         | 
| 3098 | 
            +
                        {
         | 
| 3099 | 
            +
                          "internalType": "NftId",
         | 
| 3100 | 
            +
                          "name": "oracleNftId",
         | 
| 3101 | 
            +
                          "type": "uint96"
         | 
| 3102 | 
            +
                        },
         | 
| 3103 | 
            +
                        {
         | 
| 3104 | 
            +
                          "internalType": "bytes",
         | 
| 3105 | 
            +
                          "name": "requestData",
         | 
| 3106 | 
            +
                          "type": "bytes"
         | 
| 3107 | 
            +
                        },
         | 
| 3108 | 
            +
                        {
         | 
| 3109 | 
            +
                          "internalType": "bytes",
         | 
| 3110 | 
            +
                          "name": "responseData",
         | 
| 3111 | 
            +
                          "type": "bytes"
         | 
| 3112 | 
            +
                        },
         | 
| 3113 | 
            +
                        {
         | 
| 3114 | 
            +
                          "internalType": "Timestamp",
         | 
| 3115 | 
            +
                          "name": "respondedAt",
         | 
| 3116 | 
            +
                          "type": "uint40"
         | 
| 3117 | 
            +
                        },
         | 
| 3118 | 
            +
                        {
         | 
| 3119 | 
            +
                          "internalType": "Timestamp",
         | 
| 3120 | 
            +
                          "name": "expiredAt",
         | 
| 3121 | 
            +
                          "type": "uint40"
         | 
| 3122 | 
            +
                        },
         | 
| 3123 | 
            +
                        {
         | 
| 3124 | 
            +
                          "internalType": "bool",
         | 
| 3125 | 
            +
                          "name": "isCancelled",
         | 
| 3126 | 
            +
                          "type": "bool"
         | 
| 3127 | 
            +
                        }
         | 
| 3128 | 
            +
                      ],
         | 
| 3129 | 
            +
                      "internalType": "struct IOracle.RequestInfo",
         | 
| 3130 | 
            +
                      "name": "request",
         | 
| 3131 | 
            +
                      "type": "tuple"
         | 
| 3132 | 
            +
                    },
         | 
| 3133 | 
            +
                    {
         | 
| 3134 | 
            +
                      "internalType": "StateId",
         | 
| 3135 | 
            +
                      "name": "newState",
         | 
| 3136 | 
            +
                      "type": "uint8"
         | 
| 3137 | 
            +
                    }
         | 
| 3138 | 
            +
                  ],
         | 
| 3139 | 
            +
                  "name": "updateRequest",
         | 
| 3140 | 
            +
                  "outputs": [],
         | 
| 3141 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 3142 | 
            +
                  "type": "function"
         | 
| 3143 | 
            +
                },
         | 
| 3144 | 
            +
                {
         | 
| 3145 | 
            +
                  "inputs": [
         | 
| 3146 | 
            +
                    {
         | 
| 3147 | 
            +
                      "internalType": "RequestId",
         | 
| 3148 | 
            +
                      "name": "requestId",
         | 
| 3149 | 
            +
                      "type": "uint64"
         | 
| 3150 | 
            +
                    },
         | 
| 3151 | 
            +
                    {
         | 
| 3152 | 
            +
                      "internalType": "StateId",
         | 
| 3153 | 
            +
                      "name": "newState",
         | 
| 3154 | 
            +
                      "type": "uint8"
         | 
| 3155 | 
            +
                    }
         | 
| 3156 | 
            +
                  ],
         | 
| 3157 | 
            +
                  "name": "updateRequestState",
         | 
| 3158 | 
            +
                  "outputs": [],
         | 
| 3159 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 3160 | 
            +
                  "type": "function"
         | 
| 3161 | 
            +
                },
         | 
| 3162 | 
            +
                {
         | 
| 3163 | 
            +
                  "inputs": [
         | 
| 3164 | 
            +
                    {
         | 
| 3165 | 
            +
                      "internalType": "RiskId",
         | 
| 3166 | 
            +
                      "name": "riskId",
         | 
| 3167 | 
            +
                      "type": "bytes8"
         | 
| 3168 | 
            +
                    },
         | 
| 3169 | 
            +
                    {
         | 
| 3170 | 
            +
                      "components": [
         | 
| 3171 | 
            +
                        {
         | 
| 3172 | 
            +
                          "internalType": "NftId",
         | 
| 3173 | 
            +
                          "name": "productNftId",
         | 
| 3174 | 
            +
                          "type": "uint96"
         | 
| 3175 | 
            +
                        },
         | 
| 3176 | 
            +
                        {
         | 
| 3177 | 
            +
                          "internalType": "bytes",
         | 
| 3178 | 
            +
                          "name": "data",
         | 
| 3179 | 
            +
                          "type": "bytes"
         | 
| 3180 | 
            +
                        }
         | 
| 3181 | 
            +
                      ],
         | 
| 3182 | 
            +
                      "internalType": "struct IRisk.RiskInfo",
         | 
| 3183 | 
            +
                      "name": "risk",
         | 
| 3184 | 
            +
                      "type": "tuple"
         | 
| 3185 | 
            +
                    },
         | 
| 3186 | 
            +
                    {
         | 
| 3187 | 
            +
                      "internalType": "StateId",
         | 
| 3188 | 
            +
                      "name": "newState",
         | 
| 3189 | 
            +
                      "type": "uint8"
         | 
| 3190 | 
            +
                    }
         | 
| 3191 | 
            +
                  ],
         | 
| 3192 | 
            +
                  "name": "updateRisk",
         | 
| 3193 | 
            +
                  "outputs": [],
         | 
| 3194 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 3195 | 
            +
                  "type": "function"
         | 
| 3196 | 
            +
                },
         | 
| 3197 | 
            +
                {
         | 
| 3198 | 
            +
                  "inputs": [
         | 
| 3199 | 
            +
                    {
         | 
| 3200 | 
            +
                      "internalType": "RiskId",
         | 
| 3201 | 
            +
                      "name": "riskId",
         | 
| 3202 | 
            +
                      "type": "bytes8"
         | 
| 3203 | 
            +
                    },
         | 
| 3204 | 
            +
                    {
         | 
| 3205 | 
            +
                      "internalType": "StateId",
         | 
| 3206 | 
            +
                      "name": "newState",
         | 
| 3207 | 
            +
                      "type": "uint8"
         | 
| 3208 | 
            +
                    }
         | 
| 3209 | 
            +
                  ],
         | 
| 3210 | 
            +
                  "name": "updateRiskState",
         | 
| 3211 | 
            +
                  "outputs": [],
         | 
| 3212 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 3213 | 
            +
                  "type": "function"
         | 
| 3214 | 
            +
                }
         | 
| 3215 | 
            +
              ],
         | 
| 3216 | 
            +
              "bytecode": "0x608060405234801561001057600080fd5b506157ca80620000216000396000f3fe608060405234801561001057600080fd5b50600436106103af5760003560e01c80637a9e5e4b116101f4578063a89896751161011a578063c4d66de8116100ad578063f48016ce1161007c578063f48016ce146109c3578063f5884fc5146107a8578063fae5df9b146109e4578063fe1f18d6146109f757600080fd5b8063c4d66de81461094c578063ca0e7f081461095f578063e80c61ed14610972578063e9e96c701461098557600080fd5b8063b5b3d9f9116100e9578063b5b3d9f9146108f3578063b6d7cd6214610906578063bf1db3f914610919578063bf7e214f1461092c57600080fd5b8063a8989675146108a7578063af902500146108ba578063b0628dc3146108cd578063b4d7efe2146108e057600080fd5b8063985aeba711610192578063a46eb8dc11610161578063a46eb8dc146107e1578063a5961b4c146107f4578063a6a67b1f14610881578063a76ee0181461089457600080fd5b8063985aeba7146107a85780639f8151e5146107bb578063a1fc1004146107a8578063a2842229146107ce57600080fd5b806381c2b282116101ce57806381c2b282146107285780638eaa6ac01461073b5780638eb9000d1461075b5780638fb360371461078757600080fd5b80637a9e5e4b146106ef5780637cca1124146107025780637cef48421461071557600080fd5b80633870a770116102d957806353ebe129116102775780635eede174116102465780635eede1741461064457806361105e0e146106b6578063763bb754146106c957806378929823146106dc57600080fd5b806353ebe129146105fe57806354f6127f146106115780635a8416b0146106315780635d4345cc146104c357600080fd5b8063468bce06116102b3578063468bce06146105bd5780634846003a146105c557806351dd844b146105d8578063533086d4146105eb57600080fd5b80633870a7701461057457806338a699a41461058757806340529b0f146105aa57600080fd5b80630fad0eb111610351578063275c059511610320578063275c0595146105285780632a8ea7ac1461053b5780632f61088a1461054e57806330a130ba1461056157600080fd5b80630fad0eb1146104c35780631e40b363146104d6578063228e42ec146104e9578063248a77dd1461051557600080fd5b806309648a9d1161038d57806309648a9d1461043d5780630cfc3ba3146104775780630d3581811461048a5780630f6c29ef146104b057600080fd5b80630232ca49146103b457806303c099ac146103fd5780630632b17d14610412575b600080fd5b6103e06103c23660046135e5565b6001600160601b039081166000908152600260205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61041061040b36600461388f565b610a0a565b005b610425610420366004613a12565b610a50565b6040516001600160401b0390911681526020016103f4565b61046561044b366004613a4e565b600090815260076020526040902054610100900460ff1690565b60405160ff90911681526020016103f4565b610410610485366004613b45565b610b10565b610465610498366004613ba6565b60ff9081166000908152600560205260409020541690565b6104106104be366004613c79565b610b37565b6104106104d1366004613ceb565b610b64565b6104106104e4366004613e18565b610b81565b6103e06104f73660046135e5565b6001600160601b039081166000908152602081905260409020541690565b6103e0610523366004613e5f565b610ba9565b610410610536366004613ead565b610bc7565b61041061054936600461406e565b610c61565b61041061055c366004614117565b610c96565b61041061056f36600461422f565b610d36565b610410610582366004614274565b610dd6565b61059a610595366004613a4e565b610dec565b60405190151581526020016103f4565b6104106105b8366004613ceb565b610e77565b610410610e8e565b6104106105d33660046142b2565b610ec8565b6104106105e63660046143cc565b610ef9565b6103e06105f9366004613e5f565b610f21565b6103e061060c366004613e5f565b610f36565b61062461061f366004613a4e565b610f4b565b6040516103f49190614463565b61041061063f366004614476565b610ff0565b61068c6106523660046135e5565b6001600160601b03908116600090815260208181526040808320546001835281842054600290935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016103f4565b6104106106c4366004614579565b611090565b6104106106d7366004614687565b611130565b6104106106ea3660046146c8565b611158565b6104106106fd3660046146ff565b611180565b61041061071036600461471c565b611208565b610410610723366004614761565b611230565b61041061073636600461477f565b6112bf565b61074e610749366004613a4e565b6112e6565b6040516103f491906147d4565b6103e06107693660046135e5565b6001600160601b039081166000908152600160205260409020541690565b61078f61140b565b6040516001600160e01b031990911681526020016103f4565b6104106107b6366004614833565b611444565b6103e06107c9366004613e5f565b61146c565b6104106107dc366004614761565b611481565b6104106107ef36600461487a565b6114cf565b610874610802366004613a4e565b604080516080808201835260008083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b6040516103f491906148bf565b61041061088f3660046149b7565b611500565b6104106108a23660046149e5565b611528565b6104106108b5366004614a2c565b6115c8565b6104106108c8366004614761565b6116b9565b6103e06108db366004613e5f565b611707565b6104106108ee366004614a5c565b61171c565b610410610901366004614a7a565b611769565b610410610914366004614abb565b611791565b61059a610927366004613ba6565b6117a7565b6109346117f4565b6040516001600160a01b0390911681526020016103f4565b61041061095a3660046146ff565b611810565b61041061096d366004614aeb565b61198e565b6103e0610980366004613e5f565b611a2e565b61059a610993366004614a2c565b60ff9283166000908152600660209081526040808320948616835293815283822092851682529190915220541690565b6109d66109d1366004614b40565b611a43565b6040519081526020016103f4565b6104106109f2366004614b6e565b611ac7565b610410610a05366004613ceb565b611aee565b610a17335b600036611b05565b610a4b610a2584600b611c03565b83604051602001610a369190614bc6565b60405160208183030381529060405283611c4f565b505050565b6000610a5b33610a0f565b610a63611dcb565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610b0b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610ac2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae69190614c49565b83604051602001610af79190614c62565b604051602081830303815290604052611e5e565b919050565b610b1933610a0f565b610a4b610b268484612212565b82604051602001610af79190614d37565b610b4033610a0f565b610b5e610b4d858561225f565b83604051602001610a369190614dd7565b50505050565b610b6d33610a0f565b610a4b610b7b836015611c03565b826122ad565b610b8a33610a0f565b610a4b610b9884601c611c03565b83604051602001610a369190614e31565b6000610bb433610a0f565b610bbe83836125b2565b90505b92915050565b610bd033610a0f565b604051630f37f38f60e41b81526001600160401b0384166004820152610a4b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610c2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c509190614c49565b83604051602001610a369190614c62565b610c6a33610a0f565b610c73826126ae565b610c92610c81836015611c03565b82604051602001610af79190614e9e565b5050565b610c9f33610a0f565b6040516355ee627560e01b8152610c929073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590610ce4906001600160c01b031987169060040161504e565b602060405180830381865af4158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d259190614c49565b82604051602001610af79190615063565b610d3f33610a0f565b6040516355ee627560e01b8152610c929073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610d84906001600160c01b031987169060040161504e565b602060405180830381865af4158015610da1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc59190614c49565b82604051602001610af79190615091565b610ddf33610a0f565b610b5e610b7b848461225f565b60008181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc19190615141565b610e8033610a0f565b610a4b610b7b83601c611c03565b610e9661275e565b610e9e6127a7565b610ea66128ca565b610eae6129be565b610eb6612af5565b610ebe612c21565b610ec6612cdd565b565b610ed133610a0f565b610eda826126ae565b610c92610ee883600b611c03565b82604051602001610af79190614bc6565b610f0233610a0f565b610a4b610f1084601e611c03565b83604051602001610a36919061515e565b6000610f2c33610a0f565b610bbe8383612de1565b6000610f4133610a0f565b610bbe8383612ec5565b6000818152600760205260409020600101805460609190610f6b906151e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f97906151e4565b8015610fe45780601f10610fb957610100808354040283529160200191610fe4565b820191906000526020600020905b815481529060010190602001808311610fc757829003601f168201915b50505050509050919050565b610ff933610a0f565b6040516355ee627560e01b8152610a4b9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee62759061103e906001600160c01b031988169060040161504e565b602060405180830381865af415801561105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107f9190614c49565b83604051602001610a369190615091565b61109933610a0f565b6040516355ee627560e01b8152610a4b9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906110de906001600160c01b031988169060040161504e565b602060405180830381865af41580156110fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111f9190614c49565b83604051602001610a36919061521e565b61113933610a0f565b610a4b61114784600f611c03565b83604051602001610a3691906152b0565b61116133610a0f565b610c9261116f83600f611c03565b82604051602001610af791906152b0565b336111896117f4565b6001600160a01b0316816001600160a01b0316146111c95760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b6000036111ff576040516361798f2f60e11b81526001600160a01b03831660048201526024016111c0565b610c9282612fa9565b61121133610a0f565b610c9261121f83601c611c03565b82604051602001610af79190614e31565b61123933610a0f565b6040516355ee627560e01b8152610a4b9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee62759061127e906001600160c01b031987169060040161504e565b602060405180830381865af415801561129b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7b9190614c49565b6112c833610a0f565b610a4b6112d5848461225f565b82604051602001610af79190614dd7565b6040805160c081018252600091810182815260608083018490526080830184905260a083019390935281526020810191909152600082815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a08201529283526001810180549192840191611382906151e4565b80601f01602080910402602001604051908101604052809291908181526020018280546113ae906151e4565b80156113fb5780601f106113d0576101008083540402835291602001916113fb565b820191906000526020600020905b8154815290600101906020018083116113de57829003601f168201915b5050505050815250509050919050565b600080516020615775833981519152805460009190600160a01b900460ff1661143557600061143e565b638fb3603760e01b5b91505090565b61144d33610a0f565b610a4b61145b846015611c03565b83604051602001610a369190614e9e565b600061147733610a0f565b610bbe838361300a565b61148a33610a0f565b6040516355ee627560e01b8152610a4b9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee62759061127e906001600160c01b031987169060040161504e565b6114d833610a0f565b6114e1826126ae565b610c926114ef83601e611c03565b82604051602001610af7919061515e565b61150933610a0f565b610c9261151783600c611c03565b82604051602001610af791906153a3565b61153133610a0f565b6040516355ee627560e01b8152610a4b9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611576906001600160c01b031988169060040161504e565b602060405180830381865af4158015611593573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b79190614c49565b83604051602001610a369190615063565b60ff8381166000908152600560205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561162d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116519190615141565b1561165b57505050565b60ff808416600090815260066020908152604080832086851684528252808320858516845290915290205416610a4b57604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016111c0565b6116c233610a0f565b6040516355ee627560e01b8152610a4b9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee62759061127e906001600160c01b031987169060040161504e565b600061171233610a0f565b610bbe83836130ec565b61172533610a0f565b604051630f37f38f60e41b81526001600160401b0383166004820152610a4b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f09060240161127e565b61177233610a0f565b610a4b61178084600c611c03565b83604051602001610a3691906153a3565b61179a33610a0f565b610b5e610b7b8484612212565b60ff81811660009081526005602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610e36565b600080516020615775833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156118555750825b90506000826001600160401b031660011480156118715750303b155b90508115801561187f575080155b1561189d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156118c757845460ff60401b1916600160401b1785555b6000866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611907573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192b9190615486565b9050611936816131ce565b61193e610e8e565b50831561198657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b505050505050565b61199733610a0f565b6040516355ee627560e01b8152610c929073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906119dc906001600160c01b031987169060040161504e565b602060405180830381865af41580156119f9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1d9190614c49565b82604051602001610af7919061521e565b6000611a3933610a0f565b610bbe83836131e2565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190614c49565b611ad033610a0f565b610b5e611add8585612212565b83604051602001610a369190614d37565b611af733610a0f565b610a4b610b7b83601e611c03565b600080516020615775833981519152600080611b40611b226117f4565b8730611b32600460008a8c6154a3565b611b3b916154cd565b6132c6565b91509150816119865763ffffffff811615611be057825460ff60a01b1916600160a01b178355611b6e6117f4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611b9d939291906154fd565b600060405180830381600087803b158015611bb757600080fd5b505af1158015611bcb573d6000803e3d6000fd5b5050845460ff60a01b19168555506119869050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016111c0565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611a86565b6000611c5b84836122ad565b6000858152600760205260409020909150600101611c798482615583565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d109190615642565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015611d60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d84919061565f565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b6008805460009182611ddc8361567c565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5991906156a3565b905090565b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611eb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed59190615642565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611f2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4e9190615141565b15611f71576040516307014a8d60e51b815260ff821660048201526024016111c0565b600083815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611fda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffe9190615141565b1561202857604051633f92eac960e21b81526004810185905260ff831660248201526044016111c0565b60006120326133d2565b9050600061203f846117a7565b61204a576004612060565b60ff808516600090815260056020526040902054165b835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b9190910217845560008781526007602052604090209091506001016120d38682615583565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612146573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216a9190615642565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156121ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121de919061565f565b6040805160ff938416815260ff1990921660208301529184169181019190915233606082015232608082015260a00161197d565b604051637d56159160e11b815261ffff821660048201526001600160601b038316602482015260009073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611a86565b604051635927341160e01b815262ffffff821660048201526001600160601b038316602482015260009073__$0f9396e6447a4be57af83e53f51d234633$__90635927341190604401611a86565b60405163037c8cb160e51b815260ff8216600482015260009073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015612302573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123269190615141565b156123475760405163093b89e160e11b8152600481018490526024016111c0565b50600082815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156123c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e49190615141565b156124055760405163566ebf7960e01b8152600481018690526024016111c0565b60ff8085161461258457815461241f9060ff1682866115c8565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156124a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c79190615642565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612517573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253b919061565f565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b61258c6133d2565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b6001600160601b038216600090815260036020526040812054839060ff166125f857604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b0380851660009081526001602052604090205461261d911684613441565b6001600160601b03858116600090815260016020908152604080832080546001600160601b03191694861694909417909355600490528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916126969187918791879163ffffffff909116906156c0565b60405180910390a16126a7846134c9565b5092915050565b6001600160601b03811660009081526003602052604090205460ff16156126f3576040516314d5804160e01b81526001600160601b03821660048201526024016111c0565b6001600160601b0381166000908152600360205260409020805460ff1916600117905561271f816134c9565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610ec657604051631afcd79f60e31b815260040160405180910390fd5b7f3fb1f8b5b572f385df2ff517fa4200d6781fd017f742a2f073e874e0dca7758b8054600460ff19918216179091557fa38294a430c9d56119aa0494393af7baee29b36db8610955904203b2dc0d4b0e8054821660019081179091557faabd79db0796e2d89bfe8696a82fbf6d2311a758e061bcc90c8bf3de6ba08b4e80548316821790557f1c034d70532bb968580b3cead82cdee06245a7d4ea4fc0a0598c9d941549db3e80549092168117909155601e600090815260066020527fb6ba906ff52451a7a924e2eaeb8aea3ebee7350a8703e5e417edb25358c7dcc190606e5b60ff1660ff16815260200190815260200160002060006128a660c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f40f28f99a40bc9f6beea1013afdbc3cdcc689eb76b82c4de06c0acf1e1932ed58054600460ff1991821681179092557fd0d45eb00d049ccc46c339c71e63d90eea012e3db7256c4ce5a37e3ef4bde5ea80548216600190811790915560009283527f6f1fcfd2b22fe622991f7a4235fe1cefd5d6165948a5d5e8668ebd75e7881f246020527fe5510651289c67d4e8f0e7519899867b473e44abf356dbdbad5a29ca137bfc528054909216811790915590600690600b5b60ff1660ff16815260200190815260200160002060006129a0606e90565b60ff1660ff16815260200190815260200160002060006128a660d290565b7fdcae836ed36bf3d20474cfcca00229d5b3b00239a2a956d8ca4bf29e25a7143c8054600a60ff19918216179091557f2904e68c7a2b9b93d33af7507f4a643c6b0086d6fe2b31ff5a5fbc03699e4b8b8054821660019081179091557fbe12cc7efb7411c44beea05fe4d45203c4db5cef133202c25bd3ce7a44514dce80548316821790557f4f55fb356af25cbc2dd445c53c373fb68509850aba36a91b82fdeaae21b0fb4880548316821790557f8fc126f8eb253a1b51796c6e2b7888b31d478c4b83044f9573d937595c30830080548316821790557fb7d86cc33cf49cee7ee3c69728b50600d31f279520c03623c582359cac1cf203805490921681179091556015600090815260066020527feda6feebfb4ffb7de2d0dc45a13b92dc953c2ed6ee96fa7fe8179e7c4266747f906004612888565b7fb8657d180a4d2444fb942e94a4266075e5a1b59d96d88e88cf308d6927f00ff2805460ff199081166032179091557fb8d4b36fa3f605ad94cd0cac80f13c92af675fa832d6df8dc3ba620fe2bae5aa8054821660019081179091557f9f5a5f335709add57c36a55369203f75fab90769f90dc5c1d6b4f51e64f7931e80548316821790557fac51428db552575d93acd1b0206748187cdf03c3d4880b224b6b843f82e3ad6d80548316821790557f1759eeb783be12e6871ee15567296c25cea65699ad38e9965540ba6254a9037f8054603c93168317905560009182527f84f72166cd6dc886f96a4867c4575af2a636c629c04227c9418bfffa7a09a9ed602052907fd29801b20059b93ddfd5c6b35ed7b939364988e76b05e24456e4e78c8a3e96449060dc6128a6565b7f5cc25df4297f13907c2e8c8bb7612ac7d899f1e24c7e8664c22a89192ac286a78054600460ff1991821681179092557f210997b37b2d43faf47705b743346fb1b15ea96e448556607a491761f91e01d780548216600190811790915560009283527f62b939e4fd6f81e35ee2bfd6159b5f0fdc60eba32ce925e23fbacd5164be4c476020527f994510576db8bc5180614979b295aff86a861cb3965845612b5e9a9ef49f653e80549092168117909155906006906018612982565b7fce1f324a8a5d5daa4a6b2281780ab321637fd4089413dd89c573bbf705027cb98054600460ff1991821681179092557f17765961060f66318b8d1c9d16f37975e1f7d99f2e57f6ba8e618a045d1691568054821660019081179091557f7b2fffb8b571683ba7f6b314c4f61b812b39faac6c91c75f6cef800f300291fc80548316821790557ff2ece9920c5eb8e61fb6da50740b25ea927174d5d412d76ec051f6da7c89ae4c8054909216811790915560009182527f2d88733daa8d83575c1c435b1a4140007e667f8dfbe2e5678ffec947a513e5cd602052907fbeddbe65619271258b6647d557767a93c417716f295dde3ab0ac84ff252b32949060486128a6565b6001600160601b038216600090815260036020526040812054839060ff16612e2757604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b03808516600090815260026020526040902054612e4c911684613569565b6001600160601b03858116600090815260026020908152604080832080546001600160601b03191694861694909417909355600490528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916126969187918791879163ffffffff909116906156c0565b6001600160601b038216600090815260036020526040812054839060ff16612f0b57604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b03808516600090815260016020526040902054612f30911684613569565b6001600160601b03858116600090815260016020908152604080832080546001600160601b03191694861694909417909355600490528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916126969187918791879163ffffffff909116906156c0565b60008051602061577583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6001600160601b038216600090815260036020526040812054839060ff1661305057604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b03808516600090815260208190526040902054613075911684613441565b6001600160601b0385811660009081526020818152604080832080546001600160601b03191694861694909417909355600490528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916126969187918791879163ffffffff909116906156c0565b6001600160601b038216600090815260036020526040812054839060ff1661313257604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b03808516600090815260208190526040902054613157911684613569565b6001600160601b0385811660009081526020818152604080832080546001600160601b03191694861694909417909355600490528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916126969187918791879163ffffffff909116906156c0565b6131d661275e565b6131df816135b4565b50565b6001600160601b038216600090815260036020526040812054839060ff1661322857604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b0380851660009081526002602052604090205461324d911684613441565b6001600160601b03858116600090815260026020908152604080832080546001600160601b03191694861694909417909355600490528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916126969187918791879163ffffffff909116906156c0565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161333591906156ef565b600060405180830381855afa9150503d8060008114613370576040519150601f19603f3d011682016040523d82523d6000602084013e613375565b606091505b509150915081156133c75760408151106133a7578080602001905181019061339d919061570b565b90945092506133c7565b60208151106133c757808060200190518101906133c49190615141565b93505b505094509492505050565b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af415801561341d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e59919061573a565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af41580156134a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190615757565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613512573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613536919061573a565b6001600160601b03919091166000908152600460205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613488565b6135bc61275e565b6131df81612fa9565b6001600160601b03811681146131df57600080fd5b8035610b0b816135c5565b6000602082840312156135f757600080fd5b8135613602816135c5565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b038111828210171561364157613641613609565b60405290565b60405161010081016001600160401b038111828210171561364157613641613609565b60405160e081016001600160401b038111828210171561364157613641613609565b60405161022081016001600160401b038111828210171561364157613641613609565b604080519081016001600160401b038111828210171561364157613641613609565b60405161012081016001600160401b038111828210171561364157613641613609565b60405161016081016001600160401b038111828210171561364157613641613609565b600082601f83011261372857600080fd5b81356001600160401b038082111561374257613742613609565b604051601f8301601f19908116603f0116810190828211818310171561376a5761376a613609565b8160405283815286602085880101111561378357600080fd5b836020870160208301376000602085830101528094505050505092915050565b6001600160a01b03811681146131df57600080fd5b8035610b0b816137a3565b600060c082840312156137d557600080fd5b6137dd61361f565b905081356001600160401b03808211156137f657600080fd5b61380285838601613717565b8352613810602085016135da565b6020840152613821604085016137b8565b6040840152613832606085016137b8565b6060840152613843608085016137b8565b608084015260a084013591508082111561385c57600080fd5b5061386984828501613717565b60a08301525092915050565b60ff811681146131df57600080fd5b8035610b0b81613875565b6000806000606084860312156138a457600080fd5b83356138af816135c5565b925060208401356001600160401b038111156138ca57600080fd5b6138d6868287016137c3565b92505060408401356138e781613875565b809150509250925092565b64ffffffffff811681146131df57600080fd5b8035610b0b816138f2565b80151581146131df57600080fd5b8035610b0b81613910565b6000610100828403121561393c57600080fd5b613944613647565b905061394f826135da565b815260208201356001600160401b038082111561396b57600080fd5b61397785838601613717565b6020840152613988604085016135da565b604084015260608401359150808211156139a157600080fd5b6139ad85838601613717565b606084015260808401359150808211156139c657600080fd5b506139d384828501613717565b6080830152506139e560a08301613905565b60a08201526139f660c08301613905565b60c0820152613a0760e0830161391e565b60e082015292915050565b600060208284031215613a2457600080fd5b81356001600160401b03811115613a3a57600080fd5b613a4684828501613929565b949350505050565b600060208284031215613a6057600080fd5b5035919050565b61ffff811681146131df57600080fd5b8035610b0b81613a67565b600060e08284031215613a9457600080fd5b613a9c61366a565b9050613aa7826135da565b8152613ab5602083016135da565b6020820152613ac660408301613884565b6040820152613ad760608301613884565b606082015260808201356001600160401b0380821115613af657600080fd5b613b0285838601613717565b608084015260a0840135915080821115613b1b57600080fd5b50613b2884828501613717565b60a083015250613b3a60c08301613905565b60c082015292915050565b600080600060608486031215613b5a57600080fd5b8335613b65816135c5565b92506020840135613b7581613a67565b915060408401356001600160401b03811115613b9057600080fd5b613b9c86828701613a82565b9150509250925092565b600060208284031215613bb857600080fd5b813561360281613875565b803562ffffff81168114610b0b57600080fd5b600060808284031215613be857600080fd5b604051608081016001600160401b038282108183111715613c0b57613c0b613609565b8160405282935084359150613c1f82613a67565b908252602084013590613c31826135c5565b8160208401526040850135915080821115613c4b57600080fd5b50613c5885828601613717565b6040830152506060830135613c6c816138f2565b6060919091015292915050565b60008060008060808587031215613c8f57600080fd5b8435613c9a816135c5565b9350613ca860208601613bc3565b925060408501356001600160401b03811115613cc357600080fd5b613ccf87828801613bd6565b9250506060850135613ce081613875565b939692955090935050565b60008060408385031215613cfe57600080fd5b8235613d09816135c5565b91506020830135613d1981613875565b809150509250929050565b6001600160c01b0319811681146131df57600080fd5b8035610b0b81613d24565b63ffffffff811681146131df57600080fd5b8035610b0b81613d45565b600060a08284031215613d7457600080fd5b60405160a081016001600160401b038282108183111715613d9757613d97613609565b8160405282935084359150613dab82613d24565b908252602084013590613dbd82613910565b8160208401526040850135915080821115613dd757600080fd5b50613de485828601613717565b6040830152506060830135613df8816135c5565b60608201526080830135613e0b81613d45565b6080919091015292915050565b600080600060608486031215613e2d57600080fd5b8335613e38816135c5565b925060208401356001600160401b03811115613e5357600080fd5b6138d686828701613d62565b60008060408385031215613e7257600080fd5b8235613e7d816135c5565b91506020830135613d19816135c5565b6001600160401b03811681146131df57600080fd5b8035610b0b81613e8d565b600080600060608486031215613ec257600080fd5b8335613ecd81613e8d565b925060208401356001600160401b03811115613ee857600080fd5b6138d686828701613929565b60006102208284031215613f0757600080fd5b613f0f61368c565b9050613f1a826135da565b8152613f28602083016135da565b6020820152613f3960408301613d3a565b6040820152613f4a60608301613d3a565b6060820152613f5b608083016135da565b6080820152613f6c60a083016135da565b60a0820152613f7d60c083016135da565b60c0820152613f8e60e08301613905565b60e0820152610100808301356001600160401b0380821115613faf57600080fd5b613fbb86838701613717565b83850152610120925082850135915080821115613fd757600080fd5b50613fe485828601613717565b828401525050610140613ff8818401613a77565b9082015261016061400a838201613a77565b9082015261018061401c8382016135da565b908201526101a061402e8382016135da565b908201526101c0614040838201613905565b908201526101e0614052838201613905565b90820152610200614064838201613905565b9082015292915050565b6000806040838503121561408157600080fd5b823561408c816135c5565b915060208301356001600160401b038111156140a757600080fd5b6140b385828601613ef4565b9150509250929050565b6000604082840312156140cf57600080fd5b6140d76136af565b905081356140e4816135c5565b815260208201356001600160401b038111156140ff57600080fd5b61410b84828501613717565b60208301525092915050565b6000806040838503121561412a57600080fd5b823561413581613d24565b915060208301356001600160401b0381111561415057600080fd5b6140b3858286016140bd565b6000610120828403121561416f57600080fd5b6141776136d1565b905081356001600160401b038082111561419057600080fd5b61419c85838601613717565b83526020840135602084015260408401356040840152606084013560608401526141c860808501613d57565b60808401526141d960a08501613d57565b60a08401526141ea60c0850161391e565b60c08401526141fb60e0850161391e565b60e08401526101009150818401358181111561421657600080fd5b61422286828701613717565b8385015250505092915050565b6000806040838503121561424257600080fd5b823561424d81613d24565b915060208301356001600160401b0381111561426857600080fd5b6140b38582860161415c565b60008060006060848603121561428957600080fd5b8335614294816135c5565b92506142a260208501613bc3565b915060408401356138e781613875565b600080604083850312156142c557600080fd5b82356142d0816135c5565b915060208301356001600160401b038111156142eb57600080fd5b6140b3858286016137c3565b60006040828403121561430957600080fd5b6143116136af565b9050813581526020820135602082015292915050565b600060e0828403121561433957600080fd5b61434161361f565b9050813561434e816135c5565b815261435d83602084016142f7565b602082015260608201356001600160401b0381111561437b57600080fd5b61438784828501613717565b604083015250608082013561439b816138f2565b606082015260a08201356143ae816138f2565b608082015260c08201356143c1816138f2565b60a082015292915050565b6000806000606084860312156143e157600080fd5b83356143ec816135c5565b925060208401356001600160401b0381111561440757600080fd5b6138d686828701614327565b60005b8381101561442e578181015183820152602001614416565b50506000910152565b6000815180845261444f816020860160208601614413565b601f01601f19169290920160200192915050565b602081526000610bbe6020830184614437565b60008060006060848603121561448b57600080fd5b833561449681613d24565b925060208401356001600160401b038111156144b157600080fd5b6138d68682870161415c565b600060e082840312156144cf57600080fd5b6144d761366a565b90506144e2826135da565b815260208201356001600160401b03808211156144fe57600080fd5b61450a85838601613717565b60208401526040840135604084015261452560608501613d57565b606084015261453660808501613d57565b608084015261454760a08501613905565b60a084015260c084013591508082111561456057600080fd5b5061456d84828501613717565b60c08301525092915050565b60008060006060848603121561458e57600080fd5b833561459981613d24565b925060208401356001600160401b038111156145b457600080fd5b6138d6868287016144bd565b60006101c082840312156145d357600080fd5b6145db6136f4565b90506145e6826135da565b81526145f460208301613ea2565b6020820152614605604083016135da565b60408201526146166060830161391e565b60608201526146276080830161391e565b608082015261463860a0830161391e565b60a082015260c082013560c082015260e082013560e0820152610100614660848285016142f7565b90820152610140614673848483016142f7565b6101208301526140648461018085016142f7565b6000806000610200848603121561469d57600080fd5b83356146a8816135c5565b92506146b785602086016145c0565b91506101e08401356138e781613875565b6000806101e083850312156146dc57600080fd5b82356146e7816135c5565b91506146f684602085016145c0565b90509250929050565b60006020828403121561471157600080fd5b8135613602816137a3565b6000806040838503121561472f57600080fd5b823561473a816135c5565b915060208301356001600160401b0381111561475557600080fd5b6140b385828601613d62565b6000806040838503121561477457600080fd5b8235613d0981613d24565b60008060006060848603121561479457600080fd5b833561479f816135c5565b92506147ad60208501613bc3565b915060408401356001600160401b038111156147c857600080fd5b613b9c86828701613bd6565b6020815261481960208201835160ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000602083015160a080840152613a4660c0840182614437565b60008060006060848603121561484857600080fd5b8335614853816135c5565b925060208401356001600160401b0381111561486e57600080fd5b6138d686828701613ef4565b6000806040838503121561488d57600080fd5b8235614898816135c5565b915060208301356001600160401b038111156148b357600080fd5b6140b385828601614327565b60808101610bc1828460ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000610200828403121561491357600080fd5b61491b6136d1565b9050614926826135da565b8152614934602083016135da565b602082015261494683604084016142f7565b604082015261495883608084016142f7565b606082015261496a8360c084016142f7565b608082015261010061497e848285016142f7565b60a08301526149918461014085016142f7565b60c08301526149a48461018085016142f7565b60e0830152614064846101c085016142f7565b60008061022083850312156149cb57600080fd5b82356149d6816135c5565b91506146f68460208501614900565b6000806000606084860312156149fa57600080fd5b8335614a0581613d24565b925060208401356001600160401b03811115614a2057600080fd5b6138d6868287016140bd565b600080600060608486031215614a4157600080fd5b8335614a4c81613875565b925060208401356142a281613875565b60008060408385031215614a6f57600080fd5b8235613d0981613e8d565b60008060006102408486031215614a9057600080fd5b8335614a9b816135c5565b9250614aaa8560208601614900565b91506102208401356138e781613875565b600080600060608486031215614ad057600080fd5b8335614adb816135c5565b925060208401356142a281613a67565b60008060408385031215614afe57600080fd5b8235614b0981613d24565b915060208301356001600160401b03811115614b2457600080fd5b6140b3858286016144bd565b60ff19811681146131df57600080fd5b60008060408385031215614b5357600080fd5b8235614b5e81613875565b91506020830135613d1981614b30565b60008060008060808587031215614b8457600080fd5b8435614b8f816135c5565b93506020850135614b9f81613a67565b925060408501356001600160401b03811115614bba57600080fd5b613ccf87828801613a82565b602081526000825160c06020840152614be260e0840182614437565b90506001600160601b036020850151166040840152604084015160018060a01b0380821660608601528060608701511660808601528060808701511660a0860152505060a0840151601f198483030160c0850152614c408282614437565b95945050505050565b600060208284031215614c5b57600080fd5b5051919050565b60208152614c7c6020820183516001600160601b03169052565b60006020830151610100806040850152614c9a610120850183614437565b91506040850151614cb660608601826001600160601b03169052565b506060850151601f1980868503016080870152614cd38483614437565b935060808701519150808685030160a087015250614cf18382614437565b92505060a0850151614d0c60c086018264ffffffffff169052565b5060c085015164ffffffffff811660e08601525060e0850151801515858301525b5090949350505050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff60408401511660608301526060830151614d7c608084018260ff169052565b50608083015160e060a0840152614d97610100840182614437565b905060a0840151601f198483030160c0850152614db48282614437565b91505060c0840151614dcf60e085018264ffffffffff169052565b509392505050565b6020815261ffff82511660208201526001600160601b0360208301511660408201526000604083015160806060840152614e1460a0840182614437565b905064ffffffffff60608501511660808401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152614e6f60c0840182614437565b90506001600160601b03606085015116608084015263ffffffff60808501511660a08401528091505092915050565b60208152614eb86020820183516001600160601b03169052565b60006020830151614ed460408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e0830151610100614f5a8185018364ffffffffff169052565b808501519150506102206101208181860152614f7a610240860184614437565b9250808601519050610140601f198685030181870152614f9a8483614437565b935080870151915050610160614fb58187018361ffff169052565b8601519050610180614fcc8682018361ffff169052565b86015190506101a0614fe8868201836001600160601b03169052565b86015190506101c0615004868201836001600160601b03169052565b86015190506101e061501e8682018364ffffffffff169052565b86015190506102006150388682018364ffffffffff169052565b86015164ffffffffff8116838701529050614d2d565b6001600160c01b031991909116815260200190565b602081526001600160601b03825116602082015260006020830151604080840152613a466060840182614437565b60208152600082516101208060208501526150b0610140850183614437565b915060208501516040850152604085015160608501526060850151608085015260808501516150e760a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e085015161010061511d8187018315159052565b860151858403601f19018387015290506151378382614437565b9695505050505050565b60006020828403121561515357600080fd5b815161360281613910565b602081526001600160601b03825116602082015260006020830151615190604084018280518252602090810151910152565b50604083015160e060808401526151ab610100840182614437565b9050606084015164ffffffffff80821660a08601528060808701511660c08601528060a08701511660e086015250508091505092915050565b600181811c908216806151f857607f821691505b60208210810361521857634e487b7160e01b600052602260045260246000fd5b50919050565b602081526001600160601b0382511660208201526000602083015160e0604084015261524e610100840182614437565b90506040840151606084015263ffffffff6060850151166080840152608084015161528160a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e0850152614c408282614437565b81516001600160601b031681526101c0810160208301516152dc60208401826001600160401b03169052565b5060408301516152f760408401826001600160601b03169052565b50606083015161530b606084018215159052565b50608083015161531f608084018215159052565b5060a083015161533360a084018215159052565b5060c083015160c083015260e083015160e0830152610100808401516153658285018280518252602090810151910152565b50506101208301516101406153868185018380518252602090810151910152565b840151805161018085015260208101516101a085015290506126a7565b81516001600160601b031681526020808301516102008301916153d0908401826001600160601b03169052565b5060408301516153ed604084018280518252602090810151910152565b50606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a083015161010061543a8185018380518252602090810151910152565b60c0850151805161014086015260209081015161016086015260e086015180516101808701528101516101a08601529085015180516101c0860152908101516101e085015290506126a7565b60006020828403121561549857600080fd5b8151613602816137a3565b600080858511156154b357600080fd5b838611156154c057600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156154f55780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f821115610a4b57600081815260208120601f850160051c810160208610156155645750805b601f850160051c820191505b8181101561198657828155600101615570565b81516001600160401b0381111561559c5761559c613609565b6155b0816155aa84546151e4565b8461553d565b602080601f8311600181146155e557600084156155cd5750858301515b600019600386901b1c1916600185901b178555611986565b600085815260208120601f198616915b82811015615614578886015182559484019460019091019084016155f5565b50858210156156325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561565457600080fd5b815161360281613875565b60006020828403121561567157600080fd5b815161360281614b30565b60006001820161569c57634e487b7160e01b600052601160045260246000fd5b5060010190565b6000602082840312156156b557600080fd5b815161360281613e8d565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b60008251615701818460208701614413565b9190910192915050565b6000806040838503121561571e57600080fd5b825161572981613910565b6020840151909250613d1981613d45565b60006020828403121561574c57600080fd5b815161360281613d45565b60006020828403121561576957600080fd5b8151613602816135c556fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a264697066735822122077c8887f22b5a2627f80a44bc33d7de004d7f2d6dd2fdeb6785d1b029a20d27564736f6c63430008140033",
         | 
| 3217 | 
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106103af5760003560e01c80637a9e5e4b116101f4578063a89896751161011a578063c4d66de8116100ad578063f48016ce1161007c578063f48016ce146109c3578063f5884fc5146107a8578063fae5df9b146109e4578063fe1f18d6146109f757600080fd5b8063c4d66de81461094c578063ca0e7f081461095f578063e80c61ed14610972578063e9e96c701461098557600080fd5b8063b5b3d9f9116100e9578063b5b3d9f9146108f3578063b6d7cd6214610906578063bf1db3f914610919578063bf7e214f1461092c57600080fd5b8063a8989675146108a7578063af902500146108ba578063b0628dc3146108cd578063b4d7efe2146108e057600080fd5b8063985aeba711610192578063a46eb8dc11610161578063a46eb8dc146107e1578063a5961b4c146107f4578063a6a67b1f14610881578063a76ee0181461089457600080fd5b8063985aeba7146107a85780639f8151e5146107bb578063a1fc1004146107a8578063a2842229146107ce57600080fd5b806381c2b282116101ce57806381c2b282146107285780638eaa6ac01461073b5780638eb9000d1461075b5780638fb360371461078757600080fd5b80637a9e5e4b146106ef5780637cca1124146107025780637cef48421461071557600080fd5b80633870a770116102d957806353ebe129116102775780635eede174116102465780635eede1741461064457806361105e0e146106b6578063763bb754146106c957806378929823146106dc57600080fd5b806353ebe129146105fe57806354f6127f146106115780635a8416b0146106315780635d4345cc146104c357600080fd5b8063468bce06116102b3578063468bce06146105bd5780634846003a146105c557806351dd844b146105d8578063533086d4146105eb57600080fd5b80633870a7701461057457806338a699a41461058757806340529b0f146105aa57600080fd5b80630fad0eb111610351578063275c059511610320578063275c0595146105285780632a8ea7ac1461053b5780632f61088a1461054e57806330a130ba1461056157600080fd5b80630fad0eb1146104c35780631e40b363146104d6578063228e42ec146104e9578063248a77dd1461051557600080fd5b806309648a9d1161038d57806309648a9d1461043d5780630cfc3ba3146104775780630d3581811461048a5780630f6c29ef146104b057600080fd5b80630232ca49146103b457806303c099ac146103fd5780630632b17d14610412575b600080fd5b6103e06103c23660046135e5565b6001600160601b039081166000908152600260205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61041061040b36600461388f565b610a0a565b005b610425610420366004613a12565b610a50565b6040516001600160401b0390911681526020016103f4565b61046561044b366004613a4e565b600090815260076020526040902054610100900460ff1690565b60405160ff90911681526020016103f4565b610410610485366004613b45565b610b10565b610465610498366004613ba6565b60ff9081166000908152600560205260409020541690565b6104106104be366004613c79565b610b37565b6104106104d1366004613ceb565b610b64565b6104106104e4366004613e18565b610b81565b6103e06104f73660046135e5565b6001600160601b039081166000908152602081905260409020541690565b6103e0610523366004613e5f565b610ba9565b610410610536366004613ead565b610bc7565b61041061054936600461406e565b610c61565b61041061055c366004614117565b610c96565b61041061056f36600461422f565b610d36565b610410610582366004614274565b610dd6565b61059a610595366004613a4e565b610dec565b60405190151581526020016103f4565b6104106105b8366004613ceb565b610e77565b610410610e8e565b6104106105d33660046142b2565b610ec8565b6104106105e63660046143cc565b610ef9565b6103e06105f9366004613e5f565b610f21565b6103e061060c366004613e5f565b610f36565b61062461061f366004613a4e565b610f4b565b6040516103f49190614463565b61041061063f366004614476565b610ff0565b61068c6106523660046135e5565b6001600160601b03908116600090815260208181526040808320546001835281842054600290935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016103f4565b6104106106c4366004614579565b611090565b6104106106d7366004614687565b611130565b6104106106ea3660046146c8565b611158565b6104106106fd3660046146ff565b611180565b61041061071036600461471c565b611208565b610410610723366004614761565b611230565b61041061073636600461477f565b6112bf565b61074e610749366004613a4e565b6112e6565b6040516103f491906147d4565b6103e06107693660046135e5565b6001600160601b039081166000908152600160205260409020541690565b61078f61140b565b6040516001600160e01b031990911681526020016103f4565b6104106107b6366004614833565b611444565b6103e06107c9366004613e5f565b61146c565b6104106107dc366004614761565b611481565b6104106107ef36600461487a565b6114cf565b610874610802366004613a4e565b604080516080808201835260008083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b6040516103f491906148bf565b61041061088f3660046149b7565b611500565b6104106108a23660046149e5565b611528565b6104106108b5366004614a2c565b6115c8565b6104106108c8366004614761565b6116b9565b6103e06108db366004613e5f565b611707565b6104106108ee366004614a5c565b61171c565b610410610901366004614a7a565b611769565b610410610914366004614abb565b611791565b61059a610927366004613ba6565b6117a7565b6109346117f4565b6040516001600160a01b0390911681526020016103f4565b61041061095a3660046146ff565b611810565b61041061096d366004614aeb565b61198e565b6103e0610980366004613e5f565b611a2e565b61059a610993366004614a2c565b60ff9283166000908152600660209081526040808320948616835293815283822092851682529190915220541690565b6109d66109d1366004614b40565b611a43565b6040519081526020016103f4565b6104106109f2366004614b6e565b611ac7565b610410610a05366004613ceb565b611aee565b610a17335b600036611b05565b610a4b610a2584600b611c03565b83604051602001610a369190614bc6565b60405160208183030381529060405283611c4f565b505050565b6000610a5b33610a0f565b610a63611dcb565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610b0b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610ac2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae69190614c49565b83604051602001610af79190614c62565b604051602081830303815290604052611e5e565b919050565b610b1933610a0f565b610a4b610b268484612212565b82604051602001610af79190614d37565b610b4033610a0f565b610b5e610b4d858561225f565b83604051602001610a369190614dd7565b50505050565b610b6d33610a0f565b610a4b610b7b836015611c03565b826122ad565b610b8a33610a0f565b610a4b610b9884601c611c03565b83604051602001610a369190614e31565b6000610bb433610a0f565b610bbe83836125b2565b90505b92915050565b610bd033610a0f565b604051630f37f38f60e41b81526001600160401b0384166004820152610a4b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610c2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c509190614c49565b83604051602001610a369190614c62565b610c6a33610a0f565b610c73826126ae565b610c92610c81836015611c03565b82604051602001610af79190614e9e565b5050565b610c9f33610a0f565b6040516355ee627560e01b8152610c929073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590610ce4906001600160c01b031987169060040161504e565b602060405180830381865af4158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d259190614c49565b82604051602001610af79190615063565b610d3f33610a0f565b6040516355ee627560e01b8152610c929073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610d84906001600160c01b031987169060040161504e565b602060405180830381865af4158015610da1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc59190614c49565b82604051602001610af79190615091565b610ddf33610a0f565b610b5e610b7b848461225f565b60008181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc19190615141565b610e8033610a0f565b610a4b610b7b83601c611c03565b610e9661275e565b610e9e6127a7565b610ea66128ca565b610eae6129be565b610eb6612af5565b610ebe612c21565b610ec6612cdd565b565b610ed133610a0f565b610eda826126ae565b610c92610ee883600b611c03565b82604051602001610af79190614bc6565b610f0233610a0f565b610a4b610f1084601e611c03565b83604051602001610a36919061515e565b6000610f2c33610a0f565b610bbe8383612de1565b6000610f4133610a0f565b610bbe8383612ec5565b6000818152600760205260409020600101805460609190610f6b906151e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f97906151e4565b8015610fe45780601f10610fb957610100808354040283529160200191610fe4565b820191906000526020600020905b815481529060010190602001808311610fc757829003601f168201915b50505050509050919050565b610ff933610a0f565b6040516355ee627560e01b8152610a4b9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee62759061103e906001600160c01b031988169060040161504e565b602060405180830381865af415801561105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107f9190614c49565b83604051602001610a369190615091565b61109933610a0f565b6040516355ee627560e01b8152610a4b9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906110de906001600160c01b031988169060040161504e565b602060405180830381865af41580156110fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111f9190614c49565b83604051602001610a36919061521e565b61113933610a0f565b610a4b61114784600f611c03565b83604051602001610a3691906152b0565b61116133610a0f565b610c9261116f83600f611c03565b82604051602001610af791906152b0565b336111896117f4565b6001600160a01b0316816001600160a01b0316146111c95760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b6000036111ff576040516361798f2f60e11b81526001600160a01b03831660048201526024016111c0565b610c9282612fa9565b61121133610a0f565b610c9261121f83601c611c03565b82604051602001610af79190614e31565b61123933610a0f565b6040516355ee627560e01b8152610a4b9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee62759061127e906001600160c01b031987169060040161504e565b602060405180830381865af415801561129b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7b9190614c49565b6112c833610a0f565b610a4b6112d5848461225f565b82604051602001610af79190614dd7565b6040805160c081018252600091810182815260608083018490526080830184905260a083019390935281526020810191909152600082815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a08201529283526001810180549192840191611382906151e4565b80601f01602080910402602001604051908101604052809291908181526020018280546113ae906151e4565b80156113fb5780601f106113d0576101008083540402835291602001916113fb565b820191906000526020600020905b8154815290600101906020018083116113de57829003601f168201915b5050505050815250509050919050565b600080516020615775833981519152805460009190600160a01b900460ff1661143557600061143e565b638fb3603760e01b5b91505090565b61144d33610a0f565b610a4b61145b846015611c03565b83604051602001610a369190614e9e565b600061147733610a0f565b610bbe838361300a565b61148a33610a0f565b6040516355ee627560e01b8152610a4b9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee62759061127e906001600160c01b031987169060040161504e565b6114d833610a0f565b6114e1826126ae565b610c926114ef83601e611c03565b82604051602001610af7919061515e565b61150933610a0f565b610c9261151783600c611c03565b82604051602001610af791906153a3565b61153133610a0f565b6040516355ee627560e01b8152610a4b9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611576906001600160c01b031988169060040161504e565b602060405180830381865af4158015611593573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b79190614c49565b83604051602001610a369190615063565b60ff8381166000908152600560205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561162d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116519190615141565b1561165b57505050565b60ff808416600090815260066020908152604080832086851684528252808320858516845290915290205416610a4b57604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016111c0565b6116c233610a0f565b6040516355ee627560e01b8152610a4b9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee62759061127e906001600160c01b031987169060040161504e565b600061171233610a0f565b610bbe83836130ec565b61172533610a0f565b604051630f37f38f60e41b81526001600160401b0383166004820152610a4b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f09060240161127e565b61177233610a0f565b610a4b61178084600c611c03565b83604051602001610a3691906153a3565b61179a33610a0f565b610b5e610b7b8484612212565b60ff81811660009081526005602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610e36565b600080516020615775833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156118555750825b90506000826001600160401b031660011480156118715750303b155b90508115801561187f575080155b1561189d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156118c757845460ff60401b1916600160401b1785555b6000866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611907573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192b9190615486565b9050611936816131ce565b61193e610e8e565b50831561198657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b505050505050565b61199733610a0f565b6040516355ee627560e01b8152610c929073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906119dc906001600160c01b031987169060040161504e565b602060405180830381865af41580156119f9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1d9190614c49565b82604051602001610af7919061521e565b6000611a3933610a0f565b610bbe83836131e2565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190614c49565b611ad033610a0f565b610b5e611add8585612212565b83604051602001610a369190614d37565b611af733610a0f565b610a4b610b7b83601e611c03565b600080516020615775833981519152600080611b40611b226117f4565b8730611b32600460008a8c6154a3565b611b3b916154cd565b6132c6565b91509150816119865763ffffffff811615611be057825460ff60a01b1916600160a01b178355611b6e6117f4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611b9d939291906154fd565b600060405180830381600087803b158015611bb757600080fd5b505af1158015611bcb573d6000803e3d6000fd5b5050845460ff60a01b19168555506119869050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016111c0565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611a86565b6000611c5b84836122ad565b6000858152600760205260409020909150600101611c798482615583565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d109190615642565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015611d60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d84919061565f565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b6008805460009182611ddc8361567c565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5991906156a3565b905090565b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611eb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed59190615642565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611f2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4e9190615141565b15611f71576040516307014a8d60e51b815260ff821660048201526024016111c0565b600083815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611fda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffe9190615141565b1561202857604051633f92eac960e21b81526004810185905260ff831660248201526044016111c0565b60006120326133d2565b9050600061203f846117a7565b61204a576004612060565b60ff808516600090815260056020526040902054165b835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b9190910217845560008781526007602052604090209091506001016120d38682615583565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612146573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216a9190615642565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156121ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121de919061565f565b6040805160ff938416815260ff1990921660208301529184169181019190915233606082015232608082015260a00161197d565b604051637d56159160e11b815261ffff821660048201526001600160601b038316602482015260009073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611a86565b604051635927341160e01b815262ffffff821660048201526001600160601b038316602482015260009073__$0f9396e6447a4be57af83e53f51d234633$__90635927341190604401611a86565b60405163037c8cb160e51b815260ff8216600482015260009073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015612302573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123269190615141565b156123475760405163093b89e160e11b8152600481018490526024016111c0565b50600082815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156123c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e49190615141565b156124055760405163566ebf7960e01b8152600481018690526024016111c0565b60ff8085161461258457815461241f9060ff1682866115c8565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156124a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c79190615642565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612517573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253b919061565f565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b61258c6133d2565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b6001600160601b038216600090815260036020526040812054839060ff166125f857604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b0380851660009081526001602052604090205461261d911684613441565b6001600160601b03858116600090815260016020908152604080832080546001600160601b03191694861694909417909355600490528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916126969187918791879163ffffffff909116906156c0565b60405180910390a16126a7846134c9565b5092915050565b6001600160601b03811660009081526003602052604090205460ff16156126f3576040516314d5804160e01b81526001600160601b03821660048201526024016111c0565b6001600160601b0381166000908152600360205260409020805460ff1916600117905561271f816134c9565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610ec657604051631afcd79f60e31b815260040160405180910390fd5b7f3fb1f8b5b572f385df2ff517fa4200d6781fd017f742a2f073e874e0dca7758b8054600460ff19918216179091557fa38294a430c9d56119aa0494393af7baee29b36db8610955904203b2dc0d4b0e8054821660019081179091557faabd79db0796e2d89bfe8696a82fbf6d2311a758e061bcc90c8bf3de6ba08b4e80548316821790557f1c034d70532bb968580b3cead82cdee06245a7d4ea4fc0a0598c9d941549db3e80549092168117909155601e600090815260066020527fb6ba906ff52451a7a924e2eaeb8aea3ebee7350a8703e5e417edb25358c7dcc190606e5b60ff1660ff16815260200190815260200160002060006128a660c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f40f28f99a40bc9f6beea1013afdbc3cdcc689eb76b82c4de06c0acf1e1932ed58054600460ff1991821681179092557fd0d45eb00d049ccc46c339c71e63d90eea012e3db7256c4ce5a37e3ef4bde5ea80548216600190811790915560009283527f6f1fcfd2b22fe622991f7a4235fe1cefd5d6165948a5d5e8668ebd75e7881f246020527fe5510651289c67d4e8f0e7519899867b473e44abf356dbdbad5a29ca137bfc528054909216811790915590600690600b5b60ff1660ff16815260200190815260200160002060006129a0606e90565b60ff1660ff16815260200190815260200160002060006128a660d290565b7fdcae836ed36bf3d20474cfcca00229d5b3b00239a2a956d8ca4bf29e25a7143c8054600a60ff19918216179091557f2904e68c7a2b9b93d33af7507f4a643c6b0086d6fe2b31ff5a5fbc03699e4b8b8054821660019081179091557fbe12cc7efb7411c44beea05fe4d45203c4db5cef133202c25bd3ce7a44514dce80548316821790557f4f55fb356af25cbc2dd445c53c373fb68509850aba36a91b82fdeaae21b0fb4880548316821790557f8fc126f8eb253a1b51796c6e2b7888b31d478c4b83044f9573d937595c30830080548316821790557fb7d86cc33cf49cee7ee3c69728b50600d31f279520c03623c582359cac1cf203805490921681179091556015600090815260066020527feda6feebfb4ffb7de2d0dc45a13b92dc953c2ed6ee96fa7fe8179e7c4266747f906004612888565b7fb8657d180a4d2444fb942e94a4266075e5a1b59d96d88e88cf308d6927f00ff2805460ff199081166032179091557fb8d4b36fa3f605ad94cd0cac80f13c92af675fa832d6df8dc3ba620fe2bae5aa8054821660019081179091557f9f5a5f335709add57c36a55369203f75fab90769f90dc5c1d6b4f51e64f7931e80548316821790557fac51428db552575d93acd1b0206748187cdf03c3d4880b224b6b843f82e3ad6d80548316821790557f1759eeb783be12e6871ee15567296c25cea65699ad38e9965540ba6254a9037f8054603c93168317905560009182527f84f72166cd6dc886f96a4867c4575af2a636c629c04227c9418bfffa7a09a9ed602052907fd29801b20059b93ddfd5c6b35ed7b939364988e76b05e24456e4e78c8a3e96449060dc6128a6565b7f5cc25df4297f13907c2e8c8bb7612ac7d899f1e24c7e8664c22a89192ac286a78054600460ff1991821681179092557f210997b37b2d43faf47705b743346fb1b15ea96e448556607a491761f91e01d780548216600190811790915560009283527f62b939e4fd6f81e35ee2bfd6159b5f0fdc60eba32ce925e23fbacd5164be4c476020527f994510576db8bc5180614979b295aff86a861cb3965845612b5e9a9ef49f653e80549092168117909155906006906018612982565b7fce1f324a8a5d5daa4a6b2281780ab321637fd4089413dd89c573bbf705027cb98054600460ff1991821681179092557f17765961060f66318b8d1c9d16f37975e1f7d99f2e57f6ba8e618a045d1691568054821660019081179091557f7b2fffb8b571683ba7f6b314c4f61b812b39faac6c91c75f6cef800f300291fc80548316821790557ff2ece9920c5eb8e61fb6da50740b25ea927174d5d412d76ec051f6da7c89ae4c8054909216811790915560009182527f2d88733daa8d83575c1c435b1a4140007e667f8dfbe2e5678ffec947a513e5cd602052907fbeddbe65619271258b6647d557767a93c417716f295dde3ab0ac84ff252b32949060486128a6565b6001600160601b038216600090815260036020526040812054839060ff16612e2757604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b03808516600090815260026020526040902054612e4c911684613569565b6001600160601b03858116600090815260026020908152604080832080546001600160601b03191694861694909417909355600490528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916126969187918791879163ffffffff909116906156c0565b6001600160601b038216600090815260036020526040812054839060ff16612f0b57604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b03808516600090815260016020526040902054612f30911684613569565b6001600160601b03858116600090815260016020908152604080832080546001600160601b03191694861694909417909355600490528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916126969187918791879163ffffffff909116906156c0565b60008051602061577583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6001600160601b038216600090815260036020526040812054839060ff1661305057604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b03808516600090815260208190526040902054613075911684613441565b6001600160601b0385811660009081526020818152604080832080546001600160601b03191694861694909417909355600490528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916126969187918791879163ffffffff909116906156c0565b6001600160601b038216600090815260036020526040812054839060ff1661313257604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b03808516600090815260208190526040902054613157911684613569565b6001600160601b0385811660009081526020818152604080832080546001600160601b03191694861694909417909355600490528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916126969187918791879163ffffffff909116906156c0565b6131d661275e565b6131df816135b4565b50565b6001600160601b038216600090815260036020526040812054839060ff1661322857604051631e94ffd760e11b81526001600160601b03821660048201526024016111c0565b6001600160601b0380851660009081526002602052604090205461324d911684613441565b6001600160601b03858116600090815260026020908152604080832080546001600160601b03191694861694909417909355600490528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916126969187918791879163ffffffff909116906156c0565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161333591906156ef565b600060405180830381855afa9150503d8060008114613370576040519150601f19603f3d011682016040523d82523d6000602084013e613375565b606091505b509150915081156133c75760408151106133a7578080602001905181019061339d919061570b565b90945092506133c7565b60208151106133c757808060200190518101906133c49190615141565b93505b505094509492505050565b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af415801561341d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e59919061573a565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af41580156134a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190615757565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613512573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613536919061573a565b6001600160601b03919091166000908152600460205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613488565b6135bc61275e565b6131df81612fa9565b6001600160601b03811681146131df57600080fd5b8035610b0b816135c5565b6000602082840312156135f757600080fd5b8135613602816135c5565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b038111828210171561364157613641613609565b60405290565b60405161010081016001600160401b038111828210171561364157613641613609565b60405160e081016001600160401b038111828210171561364157613641613609565b60405161022081016001600160401b038111828210171561364157613641613609565b604080519081016001600160401b038111828210171561364157613641613609565b60405161012081016001600160401b038111828210171561364157613641613609565b60405161016081016001600160401b038111828210171561364157613641613609565b600082601f83011261372857600080fd5b81356001600160401b038082111561374257613742613609565b604051601f8301601f19908116603f0116810190828211818310171561376a5761376a613609565b8160405283815286602085880101111561378357600080fd5b836020870160208301376000602085830101528094505050505092915050565b6001600160a01b03811681146131df57600080fd5b8035610b0b816137a3565b600060c082840312156137d557600080fd5b6137dd61361f565b905081356001600160401b03808211156137f657600080fd5b61380285838601613717565b8352613810602085016135da565b6020840152613821604085016137b8565b6040840152613832606085016137b8565b6060840152613843608085016137b8565b608084015260a084013591508082111561385c57600080fd5b5061386984828501613717565b60a08301525092915050565b60ff811681146131df57600080fd5b8035610b0b81613875565b6000806000606084860312156138a457600080fd5b83356138af816135c5565b925060208401356001600160401b038111156138ca57600080fd5b6138d6868287016137c3565b92505060408401356138e781613875565b809150509250925092565b64ffffffffff811681146131df57600080fd5b8035610b0b816138f2565b80151581146131df57600080fd5b8035610b0b81613910565b6000610100828403121561393c57600080fd5b613944613647565b905061394f826135da565b815260208201356001600160401b038082111561396b57600080fd5b61397785838601613717565b6020840152613988604085016135da565b604084015260608401359150808211156139a157600080fd5b6139ad85838601613717565b606084015260808401359150808211156139c657600080fd5b506139d384828501613717565b6080830152506139e560a08301613905565b60a08201526139f660c08301613905565b60c0820152613a0760e0830161391e565b60e082015292915050565b600060208284031215613a2457600080fd5b81356001600160401b03811115613a3a57600080fd5b613a4684828501613929565b949350505050565b600060208284031215613a6057600080fd5b5035919050565b61ffff811681146131df57600080fd5b8035610b0b81613a67565b600060e08284031215613a9457600080fd5b613a9c61366a565b9050613aa7826135da565b8152613ab5602083016135da565b6020820152613ac660408301613884565b6040820152613ad760608301613884565b606082015260808201356001600160401b0380821115613af657600080fd5b613b0285838601613717565b608084015260a0840135915080821115613b1b57600080fd5b50613b2884828501613717565b60a083015250613b3a60c08301613905565b60c082015292915050565b600080600060608486031215613b5a57600080fd5b8335613b65816135c5565b92506020840135613b7581613a67565b915060408401356001600160401b03811115613b9057600080fd5b613b9c86828701613a82565b9150509250925092565b600060208284031215613bb857600080fd5b813561360281613875565b803562ffffff81168114610b0b57600080fd5b600060808284031215613be857600080fd5b604051608081016001600160401b038282108183111715613c0b57613c0b613609565b8160405282935084359150613c1f82613a67565b908252602084013590613c31826135c5565b8160208401526040850135915080821115613c4b57600080fd5b50613c5885828601613717565b6040830152506060830135613c6c816138f2565b6060919091015292915050565b60008060008060808587031215613c8f57600080fd5b8435613c9a816135c5565b9350613ca860208601613bc3565b925060408501356001600160401b03811115613cc357600080fd5b613ccf87828801613bd6565b9250506060850135613ce081613875565b939692955090935050565b60008060408385031215613cfe57600080fd5b8235613d09816135c5565b91506020830135613d1981613875565b809150509250929050565b6001600160c01b0319811681146131df57600080fd5b8035610b0b81613d24565b63ffffffff811681146131df57600080fd5b8035610b0b81613d45565b600060a08284031215613d7457600080fd5b60405160a081016001600160401b038282108183111715613d9757613d97613609565b8160405282935084359150613dab82613d24565b908252602084013590613dbd82613910565b8160208401526040850135915080821115613dd757600080fd5b50613de485828601613717565b6040830152506060830135613df8816135c5565b60608201526080830135613e0b81613d45565b6080919091015292915050565b600080600060608486031215613e2d57600080fd5b8335613e38816135c5565b925060208401356001600160401b03811115613e5357600080fd5b6138d686828701613d62565b60008060408385031215613e7257600080fd5b8235613e7d816135c5565b91506020830135613d19816135c5565b6001600160401b03811681146131df57600080fd5b8035610b0b81613e8d565b600080600060608486031215613ec257600080fd5b8335613ecd81613e8d565b925060208401356001600160401b03811115613ee857600080fd5b6138d686828701613929565b60006102208284031215613f0757600080fd5b613f0f61368c565b9050613f1a826135da565b8152613f28602083016135da565b6020820152613f3960408301613d3a565b6040820152613f4a60608301613d3a565b6060820152613f5b608083016135da565b6080820152613f6c60a083016135da565b60a0820152613f7d60c083016135da565b60c0820152613f8e60e08301613905565b60e0820152610100808301356001600160401b0380821115613faf57600080fd5b613fbb86838701613717565b83850152610120925082850135915080821115613fd757600080fd5b50613fe485828601613717565b828401525050610140613ff8818401613a77565b9082015261016061400a838201613a77565b9082015261018061401c8382016135da565b908201526101a061402e8382016135da565b908201526101c0614040838201613905565b908201526101e0614052838201613905565b90820152610200614064838201613905565b9082015292915050565b6000806040838503121561408157600080fd5b823561408c816135c5565b915060208301356001600160401b038111156140a757600080fd5b6140b385828601613ef4565b9150509250929050565b6000604082840312156140cf57600080fd5b6140d76136af565b905081356140e4816135c5565b815260208201356001600160401b038111156140ff57600080fd5b61410b84828501613717565b60208301525092915050565b6000806040838503121561412a57600080fd5b823561413581613d24565b915060208301356001600160401b0381111561415057600080fd5b6140b3858286016140bd565b6000610120828403121561416f57600080fd5b6141776136d1565b905081356001600160401b038082111561419057600080fd5b61419c85838601613717565b83526020840135602084015260408401356040840152606084013560608401526141c860808501613d57565b60808401526141d960a08501613d57565b60a08401526141ea60c0850161391e565b60c08401526141fb60e0850161391e565b60e08401526101009150818401358181111561421657600080fd5b61422286828701613717565b8385015250505092915050565b6000806040838503121561424257600080fd5b823561424d81613d24565b915060208301356001600160401b0381111561426857600080fd5b6140b38582860161415c565b60008060006060848603121561428957600080fd5b8335614294816135c5565b92506142a260208501613bc3565b915060408401356138e781613875565b600080604083850312156142c557600080fd5b82356142d0816135c5565b915060208301356001600160401b038111156142eb57600080fd5b6140b3858286016137c3565b60006040828403121561430957600080fd5b6143116136af565b9050813581526020820135602082015292915050565b600060e0828403121561433957600080fd5b61434161361f565b9050813561434e816135c5565b815261435d83602084016142f7565b602082015260608201356001600160401b0381111561437b57600080fd5b61438784828501613717565b604083015250608082013561439b816138f2565b606082015260a08201356143ae816138f2565b608082015260c08201356143c1816138f2565b60a082015292915050565b6000806000606084860312156143e157600080fd5b83356143ec816135c5565b925060208401356001600160401b0381111561440757600080fd5b6138d686828701614327565b60005b8381101561442e578181015183820152602001614416565b50506000910152565b6000815180845261444f816020860160208601614413565b601f01601f19169290920160200192915050565b602081526000610bbe6020830184614437565b60008060006060848603121561448b57600080fd5b833561449681613d24565b925060208401356001600160401b038111156144b157600080fd5b6138d68682870161415c565b600060e082840312156144cf57600080fd5b6144d761366a565b90506144e2826135da565b815260208201356001600160401b03808211156144fe57600080fd5b61450a85838601613717565b60208401526040840135604084015261452560608501613d57565b606084015261453660808501613d57565b608084015261454760a08501613905565b60a084015260c084013591508082111561456057600080fd5b5061456d84828501613717565b60c08301525092915050565b60008060006060848603121561458e57600080fd5b833561459981613d24565b925060208401356001600160401b038111156145b457600080fd5b6138d6868287016144bd565b60006101c082840312156145d357600080fd5b6145db6136f4565b90506145e6826135da565b81526145f460208301613ea2565b6020820152614605604083016135da565b60408201526146166060830161391e565b60608201526146276080830161391e565b608082015261463860a0830161391e565b60a082015260c082013560c082015260e082013560e0820152610100614660848285016142f7565b90820152610140614673848483016142f7565b6101208301526140648461018085016142f7565b6000806000610200848603121561469d57600080fd5b83356146a8816135c5565b92506146b785602086016145c0565b91506101e08401356138e781613875565b6000806101e083850312156146dc57600080fd5b82356146e7816135c5565b91506146f684602085016145c0565b90509250929050565b60006020828403121561471157600080fd5b8135613602816137a3565b6000806040838503121561472f57600080fd5b823561473a816135c5565b915060208301356001600160401b0381111561475557600080fd5b6140b385828601613d62565b6000806040838503121561477457600080fd5b8235613d0981613d24565b60008060006060848603121561479457600080fd5b833561479f816135c5565b92506147ad60208501613bc3565b915060408401356001600160401b038111156147c857600080fd5b613b9c86828701613bd6565b6020815261481960208201835160ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000602083015160a080840152613a4660c0840182614437565b60008060006060848603121561484857600080fd5b8335614853816135c5565b925060208401356001600160401b0381111561486e57600080fd5b6138d686828701613ef4565b6000806040838503121561488d57600080fd5b8235614898816135c5565b915060208301356001600160401b038111156148b357600080fd5b6140b385828601614327565b60808101610bc1828460ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000610200828403121561491357600080fd5b61491b6136d1565b9050614926826135da565b8152614934602083016135da565b602082015261494683604084016142f7565b604082015261495883608084016142f7565b606082015261496a8360c084016142f7565b608082015261010061497e848285016142f7565b60a08301526149918461014085016142f7565b60c08301526149a48461018085016142f7565b60e0830152614064846101c085016142f7565b60008061022083850312156149cb57600080fd5b82356149d6816135c5565b91506146f68460208501614900565b6000806000606084860312156149fa57600080fd5b8335614a0581613d24565b925060208401356001600160401b03811115614a2057600080fd5b6138d6868287016140bd565b600080600060608486031215614a4157600080fd5b8335614a4c81613875565b925060208401356142a281613875565b60008060408385031215614a6f57600080fd5b8235613d0981613e8d565b60008060006102408486031215614a9057600080fd5b8335614a9b816135c5565b9250614aaa8560208601614900565b91506102208401356138e781613875565b600080600060608486031215614ad057600080fd5b8335614adb816135c5565b925060208401356142a281613a67565b60008060408385031215614afe57600080fd5b8235614b0981613d24565b915060208301356001600160401b03811115614b2457600080fd5b6140b3858286016144bd565b60ff19811681146131df57600080fd5b60008060408385031215614b5357600080fd5b8235614b5e81613875565b91506020830135613d1981614b30565b60008060008060808587031215614b8457600080fd5b8435614b8f816135c5565b93506020850135614b9f81613a67565b925060408501356001600160401b03811115614bba57600080fd5b613ccf87828801613a82565b602081526000825160c06020840152614be260e0840182614437565b90506001600160601b036020850151166040840152604084015160018060a01b0380821660608601528060608701511660808601528060808701511660a0860152505060a0840151601f198483030160c0850152614c408282614437565b95945050505050565b600060208284031215614c5b57600080fd5b5051919050565b60208152614c7c6020820183516001600160601b03169052565b60006020830151610100806040850152614c9a610120850183614437565b91506040850151614cb660608601826001600160601b03169052565b506060850151601f1980868503016080870152614cd38483614437565b935060808701519150808685030160a087015250614cf18382614437565b92505060a0850151614d0c60c086018264ffffffffff169052565b5060c085015164ffffffffff811660e08601525060e0850151801515858301525b5090949350505050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff60408401511660608301526060830151614d7c608084018260ff169052565b50608083015160e060a0840152614d97610100840182614437565b905060a0840151601f198483030160c0850152614db48282614437565b91505060c0840151614dcf60e085018264ffffffffff169052565b509392505050565b6020815261ffff82511660208201526001600160601b0360208301511660408201526000604083015160806060840152614e1460a0840182614437565b905064ffffffffff60608501511660808401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152614e6f60c0840182614437565b90506001600160601b03606085015116608084015263ffffffff60808501511660a08401528091505092915050565b60208152614eb86020820183516001600160601b03169052565b60006020830151614ed460408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e0830151610100614f5a8185018364ffffffffff169052565b808501519150506102206101208181860152614f7a610240860184614437565b9250808601519050610140601f198685030181870152614f9a8483614437565b935080870151915050610160614fb58187018361ffff169052565b8601519050610180614fcc8682018361ffff169052565b86015190506101a0614fe8868201836001600160601b03169052565b86015190506101c0615004868201836001600160601b03169052565b86015190506101e061501e8682018364ffffffffff169052565b86015190506102006150388682018364ffffffffff169052565b86015164ffffffffff8116838701529050614d2d565b6001600160c01b031991909116815260200190565b602081526001600160601b03825116602082015260006020830151604080840152613a466060840182614437565b60208152600082516101208060208501526150b0610140850183614437565b915060208501516040850152604085015160608501526060850151608085015260808501516150e760a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e085015161010061511d8187018315159052565b860151858403601f19018387015290506151378382614437565b9695505050505050565b60006020828403121561515357600080fd5b815161360281613910565b602081526001600160601b03825116602082015260006020830151615190604084018280518252602090810151910152565b50604083015160e060808401526151ab610100840182614437565b9050606084015164ffffffffff80821660a08601528060808701511660c08601528060a08701511660e086015250508091505092915050565b600181811c908216806151f857607f821691505b60208210810361521857634e487b7160e01b600052602260045260246000fd5b50919050565b602081526001600160601b0382511660208201526000602083015160e0604084015261524e610100840182614437565b90506040840151606084015263ffffffff6060850151166080840152608084015161528160a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e0850152614c408282614437565b81516001600160601b031681526101c0810160208301516152dc60208401826001600160401b03169052565b5060408301516152f760408401826001600160601b03169052565b50606083015161530b606084018215159052565b50608083015161531f608084018215159052565b5060a083015161533360a084018215159052565b5060c083015160c083015260e083015160e0830152610100808401516153658285018280518252602090810151910152565b50506101208301516101406153868185018380518252602090810151910152565b840151805161018085015260208101516101a085015290506126a7565b81516001600160601b031681526020808301516102008301916153d0908401826001600160601b03169052565b5060408301516153ed604084018280518252602090810151910152565b50606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a083015161010061543a8185018380518252602090810151910152565b60c0850151805161014086015260209081015161016086015260e086015180516101808701528101516101a08601529085015180516101c0860152908101516101e085015290506126a7565b60006020828403121561549857600080fd5b8151613602816137a3565b600080858511156154b357600080fd5b838611156154c057600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156154f55780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f821115610a4b57600081815260208120601f850160051c810160208610156155645750805b601f850160051c820191505b8181101561198657828155600101615570565b81516001600160401b0381111561559c5761559c613609565b6155b0816155aa84546151e4565b8461553d565b602080601f8311600181146155e557600084156155cd5750858301515b600019600386901b1c1916600185901b178555611986565b600085815260208120601f198616915b82811015615614578886015182559484019460019091019084016155f5565b50858210156156325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561565457600080fd5b815161360281613875565b60006020828403121561567157600080fd5b815161360281614b30565b60006001820161569c57634e487b7160e01b600052601160045260246000fd5b5060010190565b6000602082840312156156b557600080fd5b815161360281613e8d565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b60008251615701818460208701614413565b9190910192915050565b6000806040838503121561571e57600080fd5b825161572981613910565b6020840151909250613d1981613d45565b60006020828403121561574c57600080fd5b815161360281613d45565b60006020828403121561576957600080fd5b8151613602816135c556fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a264697066735822122077c8887f22b5a2627f80a44bc33d7de004d7f2d6dd2fdeb6785d1b029a20d27564736f6c63430008140033",
         | 
| 3218 | 
            +
              "linkReferences": {
         | 
| 3219 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 3220 | 
            +
                  "AmountLib": [
         | 
| 3221 | 
            +
                    {
         | 
| 3222 | 
            +
                      "length": 20,
         | 
| 3223 | 
            +
                      "start": 13451
         | 
| 3224 | 
            +
                    },
         | 
| 3225 | 
            +
                    {
         | 
| 3226 | 
            +
                      "length": 20,
         | 
| 3227 | 
            +
                      "start": 13747
         | 
| 3228 | 
            +
                    }
         | 
| 3229 | 
            +
                  ]
         | 
| 3230 | 
            +
                },
         | 
| 3231 | 
            +
                "contracts/type/Blocknumber.sol": {
         | 
| 3232 | 
            +
                  "BlocknumberLib": [
         | 
| 3233 | 
            +
                    {
         | 
| 3234 | 
            +
                      "length": 20,
         | 
| 3235 | 
            +
                      "start": 13303
         | 
| 3236 | 
            +
                    },
         | 
| 3237 | 
            +
                    {
         | 
| 3238 | 
            +
                      "length": 20,
         | 
| 3239 | 
            +
                      "start": 13548
         | 
| 3240 | 
            +
                    }
         | 
| 3241 | 
            +
                  ]
         | 
| 3242 | 
            +
                },
         | 
| 3243 | 
            +
                "contracts/type/ClaimId.sol": {
         | 
| 3244 | 
            +
                  "ClaimIdLib": [
         | 
| 3245 | 
            +
                    {
         | 
| 3246 | 
            +
                      "length": 20,
         | 
| 3247 | 
            +
                      "start": 8798
         | 
| 3248 | 
            +
                    }
         | 
| 3249 | 
            +
                  ]
         | 
| 3250 | 
            +
                },
         | 
| 3251 | 
            +
                "contracts/type/DistributorType.sol": {
         | 
| 3252 | 
            +
                  "DistributorTypeLib": [
         | 
| 3253 | 
            +
                    {
         | 
| 3254 | 
            +
                      "length": 20,
         | 
| 3255 | 
            +
                      "start": 3443
         | 
| 3256 | 
            +
                    },
         | 
| 3257 | 
            +
                    {
         | 
| 3258 | 
            +
                      "length": 20,
         | 
| 3259 | 
            +
                      "start": 4141
         | 
| 3260 | 
            +
                    },
         | 
| 3261 | 
            +
                    {
         | 
| 3262 | 
            +
                      "length": 20,
         | 
| 3263 | 
            +
                      "start": 5310
         | 
| 3264 | 
            +
                    }
         | 
| 3265 | 
            +
                  ]
         | 
| 3266 | 
            +
                },
         | 
| 3267 | 
            +
                "contracts/type/Key32.sol": {
         | 
| 3268 | 
            +
                  "Key32Lib": [
         | 
| 3269 | 
            +
                    {
         | 
| 3270 | 
            +
                      "length": 20,
         | 
| 3271 | 
            +
                      "start": 6793
         | 
| 3272 | 
            +
                    },
         | 
| 3273 | 
            +
                    {
         | 
| 3274 | 
            +
                      "length": 20,
         | 
| 3275 | 
            +
                      "start": 7379
         | 
| 3276 | 
            +
                    },
         | 
| 3277 | 
            +
                    {
         | 
| 3278 | 
            +
                      "length": 20,
         | 
| 3279 | 
            +
                      "start": 7495
         | 
| 3280 | 
            +
                    },
         | 
| 3281 | 
            +
                    {
         | 
| 3282 | 
            +
                      "length": 20,
         | 
| 3283 | 
            +
                      "start": 7832
         | 
| 3284 | 
            +
                    },
         | 
| 3285 | 
            +
                    {
         | 
| 3286 | 
            +
                      "length": 20,
         | 
| 3287 | 
            +
                      "start": 8493
         | 
| 3288 | 
            +
                    },
         | 
| 3289 | 
            +
                    {
         | 
| 3290 | 
            +
                      "length": 20,
         | 
| 3291 | 
            +
                      "start": 8609
         | 
| 3292 | 
            +
                    },
         | 
| 3293 | 
            +
                    {
         | 
| 3294 | 
            +
                      "length": 20,
         | 
| 3295 | 
            +
                      "start": 9354
         | 
| 3296 | 
            +
                    },
         | 
| 3297 | 
            +
                    {
         | 
| 3298 | 
            +
                      "length": 20,
         | 
| 3299 | 
            +
                      "start": 9470
         | 
| 3300 | 
            +
                    }
         | 
| 3301 | 
            +
                  ]
         | 
| 3302 | 
            +
                },
         | 
| 3303 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 3304 | 
            +
                  "NftIdLib": [
         | 
| 3305 | 
            +
                    {
         | 
| 3306 | 
            +
                      "length": 20,
         | 
| 3307 | 
            +
                      "start": 7246
         | 
| 3308 | 
            +
                    }
         | 
| 3309 | 
            +
                  ]
         | 
| 3310 | 
            +
                },
         | 
| 3311 | 
            +
                "contracts/type/ObjectType.sol": {
         | 
| 3312 | 
            +
                  "ObjectTypeLib": [
         | 
| 3313 | 
            +
                    {
         | 
| 3314 | 
            +
                      "length": 20,
         | 
| 3315 | 
            +
                      "start": 7953
         | 
| 3316 | 
            +
                    }
         | 
| 3317 | 
            +
                  ]
         | 
| 3318 | 
            +
                },
         | 
| 3319 | 
            +
                "contracts/type/PayoutId.sol": {
         | 
| 3320 | 
            +
                  "PayoutIdLib": [
         | 
| 3321 | 
            +
                    {
         | 
| 3322 | 
            +
                      "length": 20,
         | 
| 3323 | 
            +
                      "start": 8876
         | 
| 3324 | 
            +
                    }
         | 
| 3325 | 
            +
                  ]
         | 
| 3326 | 
            +
                },
         | 
| 3327 | 
            +
                "contracts/type/Referral.sol": {
         | 
| 3328 | 
            +
                  "ReferralLib": [
         | 
| 3329 | 
            +
                    {
         | 
| 3330 | 
            +
                      "length": 20,
         | 
| 3331 | 
            +
                      "start": 4301
         | 
| 3332 | 
            +
                    },
         | 
| 3333 | 
            +
                    {
         | 
| 3334 | 
            +
                      "length": 20,
         | 
| 3335 | 
            +
                      "start": 5878
         | 
| 3336 | 
            +
                    },
         | 
| 3337 | 
            +
                    {
         | 
| 3338 | 
            +
                      "length": 20,
         | 
| 3339 | 
            +
                      "start": 6603
         | 
| 3340 | 
            +
                    }
         | 
| 3341 | 
            +
                  ]
         | 
| 3342 | 
            +
                },
         | 
| 3343 | 
            +
                "contracts/type/RequestId.sol": {
         | 
| 3344 | 
            +
                  "RequestIdLib": [
         | 
| 3345 | 
            +
                    {
         | 
| 3346 | 
            +
                      "length": 20,
         | 
| 3347 | 
            +
                      "start": 2729
         | 
| 3348 | 
            +
                    },
         | 
| 3349 | 
            +
                    {
         | 
| 3350 | 
            +
                      "length": 20,
         | 
| 3351 | 
            +
                      "start": 3091
         | 
| 3352 | 
            +
                    },
         | 
| 3353 | 
            +
                    {
         | 
| 3354 | 
            +
                      "length": 20,
         | 
| 3355 | 
            +
                      "start": 5992
         | 
| 3356 | 
            +
                    },
         | 
| 3357 | 
            +
                    {
         | 
| 3358 | 
            +
                      "length": 20,
         | 
| 3359 | 
            +
                      "start": 7708
         | 
| 3360 | 
            +
                    }
         | 
| 3361 | 
            +
                  ]
         | 
| 3362 | 
            +
                },
         | 
| 3363 | 
            +
                "contracts/type/RiskId.sol": {
         | 
| 3364 | 
            +
                  "RiskIdLib": [
         | 
| 3365 | 
            +
                    {
         | 
| 3366 | 
            +
                      "length": 20,
         | 
| 3367 | 
            +
                      "start": 3283
         | 
| 3368 | 
            +
                    },
         | 
| 3369 | 
            +
                    {
         | 
| 3370 | 
            +
                      "length": 20,
         | 
| 3371 | 
            +
                      "start": 4717
         | 
| 3372 | 
            +
                    },
         | 
| 3373 | 
            +
                    {
         | 
| 3374 | 
            +
                      "length": 20,
         | 
| 3375 | 
            +
                      "start": 5477
         | 
| 3376 | 
            +
                    }
         | 
| 3377 | 
            +
                  ]
         | 
| 3378 | 
            +
                },
         | 
| 3379 | 
            +
                "contracts/type/StateId.sol": {
         | 
| 3380 | 
            +
                  "StateIdLib": [
         | 
| 3381 | 
            +
                    {
         | 
| 3382 | 
            +
                      "length": 20,
         | 
| 3383 | 
            +
                      "start": 3641
         | 
| 3384 | 
            +
                    },
         | 
| 3385 | 
            +
                    {
         | 
| 3386 | 
            +
                      "length": 20,
         | 
| 3387 | 
            +
                      "start": 5652
         | 
| 3388 | 
            +
                    },
         | 
| 3389 | 
            +
                    {
         | 
| 3390 | 
            +
                      "length": 20,
         | 
| 3391 | 
            +
                      "start": 6131
         | 
| 3392 | 
            +
                    },
         | 
| 3393 | 
            +
                    {
         | 
| 3394 | 
            +
                      "length": 20,
         | 
| 3395 | 
            +
                      "start": 8129
         | 
| 3396 | 
            +
                    },
         | 
| 3397 | 
            +
                    {
         | 
| 3398 | 
            +
                      "length": 20,
         | 
| 3399 | 
            +
                      "start": 8937
         | 
| 3400 | 
            +
                    },
         | 
| 3401 | 
            +
                    {
         | 
| 3402 | 
            +
                      "length": 20,
         | 
| 3403 | 
            +
                      "start": 9127
         | 
| 3404 | 
            +
                    }
         | 
| 3405 | 
            +
                  ]
         | 
| 3406 | 
            +
                }
         | 
| 3407 | 
            +
              },
         | 
| 3408 | 
            +
              "deployedLinkReferences": {
         | 
| 3409 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 3410 | 
            +
                  "AmountLib": [
         | 
| 3411 | 
            +
                    {
         | 
| 3412 | 
            +
                      "length": 20,
         | 
| 3413 | 
            +
                      "start": 13418
         | 
| 3414 | 
            +
                    },
         | 
| 3415 | 
            +
                    {
         | 
| 3416 | 
            +
                      "length": 20,
         | 
| 3417 | 
            +
                      "start": 13714
         | 
| 3418 | 
            +
                    }
         | 
| 3419 | 
            +
                  ]
         | 
| 3420 | 
            +
                },
         | 
| 3421 | 
            +
                "contracts/type/Blocknumber.sol": {
         | 
| 3422 | 
            +
                  "BlocknumberLib": [
         | 
| 3423 | 
            +
                    {
         | 
| 3424 | 
            +
                      "length": 20,
         | 
| 3425 | 
            +
                      "start": 13270
         | 
| 3426 | 
            +
                    },
         | 
| 3427 | 
            +
                    {
         | 
| 3428 | 
            +
                      "length": 20,
         | 
| 3429 | 
            +
                      "start": 13515
         | 
| 3430 | 
            +
                    }
         | 
| 3431 | 
            +
                  ]
         | 
| 3432 | 
            +
                },
         | 
| 3433 | 
            +
                "contracts/type/ClaimId.sol": {
         | 
| 3434 | 
            +
                  "ClaimIdLib": [
         | 
| 3435 | 
            +
                    {
         | 
| 3436 | 
            +
                      "length": 20,
         | 
| 3437 | 
            +
                      "start": 8765
         | 
| 3438 | 
            +
                    }
         | 
| 3439 | 
            +
                  ]
         | 
| 3440 | 
            +
                },
         | 
| 3441 | 
            +
                "contracts/type/DistributorType.sol": {
         | 
| 3442 | 
            +
                  "DistributorTypeLib": [
         | 
| 3443 | 
            +
                    {
         | 
| 3444 | 
            +
                      "length": 20,
         | 
| 3445 | 
            +
                      "start": 3410
         | 
| 3446 | 
            +
                    },
         | 
| 3447 | 
            +
                    {
         | 
| 3448 | 
            +
                      "length": 20,
         | 
| 3449 | 
            +
                      "start": 4108
         | 
| 3450 | 
            +
                    },
         | 
| 3451 | 
            +
                    {
         | 
| 3452 | 
            +
                      "length": 20,
         | 
| 3453 | 
            +
                      "start": 5277
         | 
| 3454 | 
            +
                    }
         | 
| 3455 | 
            +
                  ]
         | 
| 3456 | 
            +
                },
         | 
| 3457 | 
            +
                "contracts/type/Key32.sol": {
         | 
| 3458 | 
            +
                  "Key32Lib": [
         | 
| 3459 | 
            +
                    {
         | 
| 3460 | 
            +
                      "length": 20,
         | 
| 3461 | 
            +
                      "start": 6760
         | 
| 3462 | 
            +
                    },
         | 
| 3463 | 
            +
                    {
         | 
| 3464 | 
            +
                      "length": 20,
         | 
| 3465 | 
            +
                      "start": 7346
         | 
| 3466 | 
            +
                    },
         | 
| 3467 | 
            +
                    {
         | 
| 3468 | 
            +
                      "length": 20,
         | 
| 3469 | 
            +
                      "start": 7462
         | 
| 3470 | 
            +
                    },
         | 
| 3471 | 
            +
                    {
         | 
| 3472 | 
            +
                      "length": 20,
         | 
| 3473 | 
            +
                      "start": 7799
         | 
| 3474 | 
            +
                    },
         | 
| 3475 | 
            +
                    {
         | 
| 3476 | 
            +
                      "length": 20,
         | 
| 3477 | 
            +
                      "start": 8460
         | 
| 3478 | 
            +
                    },
         | 
| 3479 | 
            +
                    {
         | 
| 3480 | 
            +
                      "length": 20,
         | 
| 3481 | 
            +
                      "start": 8576
         | 
| 3482 | 
            +
                    },
         | 
| 3483 | 
            +
                    {
         | 
| 3484 | 
            +
                      "length": 20,
         | 
| 3485 | 
            +
                      "start": 9321
         | 
| 3486 | 
            +
                    },
         | 
| 3487 | 
            +
                    {
         | 
| 3488 | 
            +
                      "length": 20,
         | 
| 3489 | 
            +
                      "start": 9437
         | 
| 3490 | 
            +
                    }
         | 
| 3491 | 
            +
                  ]
         | 
| 3492 | 
            +
                },
         | 
| 3493 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 3494 | 
            +
                  "NftIdLib": [
         | 
| 3495 | 
            +
                    {
         | 
| 3496 | 
            +
                      "length": 20,
         | 
| 3497 | 
            +
                      "start": 7213
         | 
| 3498 | 
            +
                    }
         | 
| 3499 | 
            +
                  ]
         | 
| 3500 | 
            +
                },
         | 
| 3501 | 
            +
                "contracts/type/ObjectType.sol": {
         | 
| 3502 | 
            +
                  "ObjectTypeLib": [
         | 
| 3503 | 
            +
                    {
         | 
| 3504 | 
            +
                      "length": 20,
         | 
| 3505 | 
            +
                      "start": 7920
         | 
| 3506 | 
            +
                    }
         | 
| 3507 | 
            +
                  ]
         | 
| 3508 | 
            +
                },
         | 
| 3509 | 
            +
                "contracts/type/PayoutId.sol": {
         | 
| 3510 | 
            +
                  "PayoutIdLib": [
         | 
| 3511 | 
            +
                    {
         | 
| 3512 | 
            +
                      "length": 20,
         | 
| 3513 | 
            +
                      "start": 8843
         | 
| 3514 | 
            +
                    }
         | 
| 3515 | 
            +
                  ]
         | 
| 3516 | 
            +
                },
         | 
| 3517 | 
            +
                "contracts/type/Referral.sol": {
         | 
| 3518 | 
            +
                  "ReferralLib": [
         | 
| 3519 | 
            +
                    {
         | 
| 3520 | 
            +
                      "length": 20,
         | 
| 3521 | 
            +
                      "start": 4268
         | 
| 3522 | 
            +
                    },
         | 
| 3523 | 
            +
                    {
         | 
| 3524 | 
            +
                      "length": 20,
         | 
| 3525 | 
            +
                      "start": 5845
         | 
| 3526 | 
            +
                    },
         | 
| 3527 | 
            +
                    {
         | 
| 3528 | 
            +
                      "length": 20,
         | 
| 3529 | 
            +
                      "start": 6570
         | 
| 3530 | 
            +
                    }
         | 
| 3531 | 
            +
                  ]
         | 
| 3532 | 
            +
                },
         | 
| 3533 | 
            +
                "contracts/type/RequestId.sol": {
         | 
| 3534 | 
            +
                  "RequestIdLib": [
         | 
| 3535 | 
            +
                    {
         | 
| 3536 | 
            +
                      "length": 20,
         | 
| 3537 | 
            +
                      "start": 2696
         | 
| 3538 | 
            +
                    },
         | 
| 3539 | 
            +
                    {
         | 
| 3540 | 
            +
                      "length": 20,
         | 
| 3541 | 
            +
                      "start": 3058
         | 
| 3542 | 
            +
                    },
         | 
| 3543 | 
            +
                    {
         | 
| 3544 | 
            +
                      "length": 20,
         | 
| 3545 | 
            +
                      "start": 5959
         | 
| 3546 | 
            +
                    },
         | 
| 3547 | 
            +
                    {
         | 
| 3548 | 
            +
                      "length": 20,
         | 
| 3549 | 
            +
                      "start": 7675
         | 
| 3550 | 
            +
                    }
         | 
| 3551 | 
            +
                  ]
         | 
| 3552 | 
            +
                },
         | 
| 3553 | 
            +
                "contracts/type/RiskId.sol": {
         | 
| 3554 | 
            +
                  "RiskIdLib": [
         | 
| 3555 | 
            +
                    {
         | 
| 3556 | 
            +
                      "length": 20,
         | 
| 3557 | 
            +
                      "start": 3250
         | 
| 3558 | 
            +
                    },
         | 
| 3559 | 
            +
                    {
         | 
| 3560 | 
            +
                      "length": 20,
         | 
| 3561 | 
            +
                      "start": 4684
         | 
| 3562 | 
            +
                    },
         | 
| 3563 | 
            +
                    {
         | 
| 3564 | 
            +
                      "length": 20,
         | 
| 3565 | 
            +
                      "start": 5444
         | 
| 3566 | 
            +
                    }
         | 
| 3567 | 
            +
                  ]
         | 
| 3568 | 
            +
                },
         | 
| 3569 | 
            +
                "contracts/type/StateId.sol": {
         | 
| 3570 | 
            +
                  "StateIdLib": [
         | 
| 3571 | 
            +
                    {
         | 
| 3572 | 
            +
                      "length": 20,
         | 
| 3573 | 
            +
                      "start": 3608
         | 
| 3574 | 
            +
                    },
         | 
| 3575 | 
            +
                    {
         | 
| 3576 | 
            +
                      "length": 20,
         | 
| 3577 | 
            +
                      "start": 5619
         | 
| 3578 | 
            +
                    },
         | 
| 3579 | 
            +
                    {
         | 
| 3580 | 
            +
                      "length": 20,
         | 
| 3581 | 
            +
                      "start": 6098
         | 
| 3582 | 
            +
                    },
         | 
| 3583 | 
            +
                    {
         | 
| 3584 | 
            +
                      "length": 20,
         | 
| 3585 | 
            +
                      "start": 8096
         | 
| 3586 | 
            +
                    },
         | 
| 3587 | 
            +
                    {
         | 
| 3588 | 
            +
                      "length": 20,
         | 
| 3589 | 
            +
                      "start": 8904
         | 
| 3590 | 
            +
                    },
         | 
| 3591 | 
            +
                    {
         | 
| 3592 | 
            +
                      "length": 20,
         | 
| 3593 | 
            +
                      "start": 9094
         | 
| 3594 | 
            +
                    }
         | 
| 3595 | 
            +
                  ]
         | 
| 3596 | 
            +
                }
         | 
| 3597 | 
            +
              }
         | 
| 3598 | 
            +
            }
         |