@etherisc/gif-next 0.0.2-f08d150-296 → 0.0.2-f18fb8b-243
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 +279 -24
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/access → authorization}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1505 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1191 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1394 -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/distribution/IDistributionComponent.sol/IDistributionComponent.json +900 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +843 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +280 -1494
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +473 -1765
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1735 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1160 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3591 -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/base/Cloneable.sol/Cloneable.json +137 -0
- 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/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.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/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1155 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
- 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/oracle/Oracle.sol/Oracle.json +1063 -0
- 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/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1477 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -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/pool/IBundleService.sol/IBundleService.json +703 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +959 -0
- 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/pool/Pool.sol/Pool.json +1269 -0
- 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/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1299 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -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/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +256 -221
- 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/product/IPricingService.sol/IPricingService.json +549 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +966 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IProductService.sol/IProductService.json} +207 -171
- 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 +1257 -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 +199 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +591 -34
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1123 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +821 -107
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1159 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1487 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +784 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
- 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 +718 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +104 -141
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +37 -80
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +163 -143
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
- 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 +996 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
- 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 +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +507 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
- 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/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -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 +2237 -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/type/AddressSet.sol/LibAddressSet.json +10 -0
- 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/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- 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/type/Key32.sol/Key32Lib.json +125 -0
- 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/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -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/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -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/type/Timestamp.sol/TimestampLib.json +293 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +498 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/authorization/AccessAdmin.sol +591 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +218 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +136 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +90 -0
- package/contracts/distribution/BasicDistribution.sol +149 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +43 -0
- package/contracts/distribution/Distribution.sol +283 -0
- package/contracts/distribution/DistributionService.sol +302 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/distribution/IDistributionComponent.sol +48 -0
- package/contracts/distribution/IDistributionService.sol +85 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +78 -44
- package/contracts/instance/IInstanceService.sol +92 -0
- package/contracts/instance/Instance.sol +238 -52
- package/contracts/instance/InstanceAdmin.sol +266 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +202 -0
- package/contracts/instance/InstanceReader.sol +405 -0
- package/contracts/instance/InstanceService.sol +443 -0
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +276 -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/base/ObjectLifecycle.sol +106 -0
- package/contracts/instance/base/ObjectManager.sol +79 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +157 -0
- package/contracts/oracle/OracleService.sol +278 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BasicPool.sol +164 -0
- package/contracts/pool/BasicPoolAuthorization.sol +49 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +52 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +311 -0
- package/contracts/pool/PoolService.sol +452 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +82 -0
- package/contracts/product/BasicProductAuthorization.sol +40 -0
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +39 -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/product/Product.sol +392 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +95 -37
- package/contracts/registry/IRegistry.sol +93 -29
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +478 -281
- package/contracts/registry/RegistryAdmin.sol +365 -0
- package/contracts/registry/RegistryService.sol +266 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseManager.sol +487 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +581 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +15 -9
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +50 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/{instance/base → shared}/ILifecycle.sol +4 -5
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +10 -19
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +25 -0
- package/contracts/shared/IVersionable.sol +38 -37
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +151 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +102 -0
- package/contracts/shared/ProxyManager.sol +199 -0
- package/contracts/shared/Registerable.sol +54 -65
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +83 -0
- package/contracts/shared/TokenHandler.sol +58 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +38 -68
- 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/StakingLifecycle.sol +23 -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 +615 -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 +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/{types → type}/Key32.sol +8 -3
- package/contracts/{types → type}/NftId.sol +21 -15
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +275 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +89 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +81 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +39 -5
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +27 -14
- package/contracts/type/UFixed.sol +332 -0
- package/contracts/{types → type}/Version.sol +15 -2
- package/package.json +11 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -305
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
- 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/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.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 -692
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.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 -376
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- 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/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
- 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 -379
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
- 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 -206
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- 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/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- 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/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
- 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/Timestamp.sol/TimestampLib.json +0 -236
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
- package/contracts/components/BaseComponent.sol +0 -88
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/components/IPoolComponent.sol +0 -57
- package/contracts/components/IProductComponent.sol +0 -19
- package/contracts/components/Pool.sol +0 -174
- package/contracts/components/Product.sol +0 -117
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -14
- package/contracts/instance/base/IKeyValueStore.sol +0 -49
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -80
- package/contracts/instance/base/KeyValueStore.sol +0 -156
- package/contracts/instance/base/Lifecycle.sol +0 -95
- package/contracts/instance/base/ModuleBase.sol +0 -52
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -136
- package/contracts/instance/module/bundle/IBundle.sol +0 -58
- package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
- package/contracts/instance/module/compensation/ICompensation.sol +0 -10
- package/contracts/instance/module/component/ComponentModule.sol +0 -95
- package/contracts/instance/module/component/IComponent.sol +0 -53
- package/contracts/instance/module/policy/IPolicy.sol +0 -60
- package/contracts/instance/module/policy/PolicyModule.sol +0 -76
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -87
- package/contracts/instance/module/risk/IRisk.sol +0 -10
- package/contracts/instance/module/risk/RiskModule.sol +0 -8
- package/contracts/instance/module/treasury/ITreasury.sol +0 -103
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
- package/contracts/instance/service/ComponentOwnerService.sol +0 -170
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- package/contracts/instance/service/IPoolService.sol +0 -30
- package/contracts/instance/service/IProductService.sol +0 -58
- package/contracts/instance/service/PoolService.sol +0 -123
- package/contracts/instance/service/ProductService.sol +0 -354
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestPool.sol +0 -22
- package/contracts/test/TestProduct.sol +0 -44
- package/contracts/test/TestRegisterable.sol +0 -19
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -32
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -51
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/ObjectType.sol +0 -115
- package/contracts/types/RoleId.sol +0 -38
- package/contracts/types/UFixed.sol +0 -209
| @@ -0,0 +1,1735 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "InstanceReader",
         | 
| 4 | 
            +
              "sourceName": "contracts/instance/InstanceReader.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [],
         | 
| 8 | 
            +
                  "name": "ErrorInstanceReaderAlreadyInitialized",
         | 
| 9 | 
            +
                  "type": "error"
         | 
| 10 | 
            +
                },
         | 
| 11 | 
            +
                {
         | 
| 12 | 
            +
                  "inputs": [],
         | 
| 13 | 
            +
                  "name": "ErrorInstanceReaderInstanceAddressZero",
         | 
| 14 | 
            +
                  "type": "error"
         | 
| 15 | 
            +
                },
         | 
| 16 | 
            +
                {
         | 
| 17 | 
            +
                  "inputs": [
         | 
| 18 | 
            +
                    {
         | 
| 19 | 
            +
                      "internalType": "NftId",
         | 
| 20 | 
            +
                      "name": "targetNftId",
         | 
| 21 | 
            +
                      "type": "uint96"
         | 
| 22 | 
            +
                    }
         | 
| 23 | 
            +
                  ],
         | 
| 24 | 
            +
                  "name": "getBalanceAmount",
         | 
| 25 | 
            +
                  "outputs": [
         | 
| 26 | 
            +
                    {
         | 
| 27 | 
            +
                      "internalType": "Amount",
         | 
| 28 | 
            +
                      "name": "",
         | 
| 29 | 
            +
                      "type": "uint96"
         | 
| 30 | 
            +
                    }
         | 
| 31 | 
            +
                  ],
         | 
| 32 | 
            +
                  "stateMutability": "view",
         | 
| 33 | 
            +
                  "type": "function"
         | 
| 34 | 
            +
                },
         | 
| 35 | 
            +
                {
         | 
| 36 | 
            +
                  "inputs": [
         | 
| 37 | 
            +
                    {
         | 
| 38 | 
            +
                      "internalType": "NftId",
         | 
| 39 | 
            +
                      "name": "bundleNftId",
         | 
| 40 | 
            +
                      "type": "uint96"
         | 
| 41 | 
            +
                    }
         | 
| 42 | 
            +
                  ],
         | 
| 43 | 
            +
                  "name": "getBundleInfo",
         | 
| 44 | 
            +
                  "outputs": [
         | 
| 45 | 
            +
                    {
         | 
| 46 | 
            +
                      "components": [
         | 
| 47 | 
            +
                        {
         | 
| 48 | 
            +
                          "internalType": "NftId",
         | 
| 49 | 
            +
                          "name": "poolNftId",
         | 
| 50 | 
            +
                          "type": "uint96"
         | 
| 51 | 
            +
                        },
         | 
| 52 | 
            +
                        {
         | 
| 53 | 
            +
                          "components": [
         | 
| 54 | 
            +
                            {
         | 
| 55 | 
            +
                              "internalType": "UFixed",
         | 
| 56 | 
            +
                              "name": "fractionalFee",
         | 
| 57 | 
            +
                              "type": "uint256"
         | 
| 58 | 
            +
                            },
         | 
| 59 | 
            +
                            {
         | 
| 60 | 
            +
                              "internalType": "uint256",
         | 
| 61 | 
            +
                              "name": "fixedFee",
         | 
| 62 | 
            +
                              "type": "uint256"
         | 
| 63 | 
            +
                            }
         | 
| 64 | 
            +
                          ],
         | 
| 65 | 
            +
                          "internalType": "struct Fee",
         | 
| 66 | 
            +
                          "name": "fee",
         | 
| 67 | 
            +
                          "type": "tuple"
         | 
| 68 | 
            +
                        },
         | 
| 69 | 
            +
                        {
         | 
| 70 | 
            +
                          "internalType": "bytes",
         | 
| 71 | 
            +
                          "name": "filter",
         | 
| 72 | 
            +
                          "type": "bytes"
         | 
| 73 | 
            +
                        },
         | 
| 74 | 
            +
                        {
         | 
| 75 | 
            +
                          "internalType": "Seconds",
         | 
| 76 | 
            +
                          "name": "lifetime",
         | 
| 77 | 
            +
                          "type": "uint40"
         | 
| 78 | 
            +
                        },
         | 
| 79 | 
            +
                        {
         | 
| 80 | 
            +
                          "internalType": "Timestamp",
         | 
| 81 | 
            +
                          "name": "expiredAt",
         | 
| 82 | 
            +
                          "type": "uint40"
         | 
| 83 | 
            +
                        },
         | 
| 84 | 
            +
                        {
         | 
| 85 | 
            +
                          "internalType": "Timestamp",
         | 
| 86 | 
            +
                          "name": "closedAt",
         | 
| 87 | 
            +
                          "type": "uint40"
         | 
| 88 | 
            +
                        }
         | 
| 89 | 
            +
                      ],
         | 
| 90 | 
            +
                      "internalType": "struct IBundle.BundleInfo",
         | 
| 91 | 
            +
                      "name": "info",
         | 
| 92 | 
            +
                      "type": "tuple"
         | 
| 93 | 
            +
                    }
         | 
| 94 | 
            +
                  ],
         | 
| 95 | 
            +
                  "stateMutability": "view",
         | 
| 96 | 
            +
                  "type": "function"
         | 
| 97 | 
            +
                },
         | 
| 98 | 
            +
                {
         | 
| 99 | 
            +
                  "inputs": [
         | 
| 100 | 
            +
                    {
         | 
| 101 | 
            +
                      "internalType": "NftId",
         | 
| 102 | 
            +
                      "name": "policyNftId",
         | 
| 103 | 
            +
                      "type": "uint96"
         | 
| 104 | 
            +
                    },
         | 
| 105 | 
            +
                    {
         | 
| 106 | 
            +
                      "internalType": "ClaimId",
         | 
| 107 | 
            +
                      "name": "claimId",
         | 
| 108 | 
            +
                      "type": "uint16"
         | 
| 109 | 
            +
                    }
         | 
| 110 | 
            +
                  ],
         | 
| 111 | 
            +
                  "name": "getClaimInfo",
         | 
| 112 | 
            +
                  "outputs": [
         | 
| 113 | 
            +
                    {
         | 
| 114 | 
            +
                      "components": [
         | 
| 115 | 
            +
                        {
         | 
| 116 | 
            +
                          "internalType": "Amount",
         | 
| 117 | 
            +
                          "name": "claimAmount",
         | 
| 118 | 
            +
                          "type": "uint96"
         | 
| 119 | 
            +
                        },
         | 
| 120 | 
            +
                        {
         | 
| 121 | 
            +
                          "internalType": "Amount",
         | 
| 122 | 
            +
                          "name": "paidAmount",
         | 
| 123 | 
            +
                          "type": "uint96"
         | 
| 124 | 
            +
                        },
         | 
| 125 | 
            +
                        {
         | 
| 126 | 
            +
                          "internalType": "uint8",
         | 
| 127 | 
            +
                          "name": "payoutsCount",
         | 
| 128 | 
            +
                          "type": "uint8"
         | 
| 129 | 
            +
                        },
         | 
| 130 | 
            +
                        {
         | 
| 131 | 
            +
                          "internalType": "uint8",
         | 
| 132 | 
            +
                          "name": "openPayoutsCount",
         | 
| 133 | 
            +
                          "type": "uint8"
         | 
| 134 | 
            +
                        },
         | 
| 135 | 
            +
                        {
         | 
| 136 | 
            +
                          "internalType": "bytes",
         | 
| 137 | 
            +
                          "name": "submissionData",
         | 
| 138 | 
            +
                          "type": "bytes"
         | 
| 139 | 
            +
                        },
         | 
| 140 | 
            +
                        {
         | 
| 141 | 
            +
                          "internalType": "bytes",
         | 
| 142 | 
            +
                          "name": "processData",
         | 
| 143 | 
            +
                          "type": "bytes"
         | 
| 144 | 
            +
                        },
         | 
| 145 | 
            +
                        {
         | 
| 146 | 
            +
                          "internalType": "Timestamp",
         | 
| 147 | 
            +
                          "name": "closedAt",
         | 
| 148 | 
            +
                          "type": "uint40"
         | 
| 149 | 
            +
                        }
         | 
| 150 | 
            +
                      ],
         | 
| 151 | 
            +
                      "internalType": "struct IPolicy.ClaimInfo",
         | 
| 152 | 
            +
                      "name": "info",
         | 
| 153 | 
            +
                      "type": "tuple"
         | 
| 154 | 
            +
                    }
         | 
| 155 | 
            +
                  ],
         | 
| 156 | 
            +
                  "stateMutability": "view",
         | 
| 157 | 
            +
                  "type": "function"
         | 
| 158 | 
            +
                },
         | 
| 159 | 
            +
                {
         | 
| 160 | 
            +
                  "inputs": [
         | 
| 161 | 
            +
                    {
         | 
| 162 | 
            +
                      "internalType": "NftId",
         | 
| 163 | 
            +
                      "name": "policyNftId",
         | 
| 164 | 
            +
                      "type": "uint96"
         | 
| 165 | 
            +
                    },
         | 
| 166 | 
            +
                    {
         | 
| 167 | 
            +
                      "internalType": "ClaimId",
         | 
| 168 | 
            +
                      "name": "claimId",
         | 
| 169 | 
            +
                      "type": "uint16"
         | 
| 170 | 
            +
                    }
         | 
| 171 | 
            +
                  ],
         | 
| 172 | 
            +
                  "name": "getClaimState",
         | 
| 173 | 
            +
                  "outputs": [
         | 
| 174 | 
            +
                    {
         | 
| 175 | 
            +
                      "internalType": "StateId",
         | 
| 176 | 
            +
                      "name": "state",
         | 
| 177 | 
            +
                      "type": "uint8"
         | 
| 178 | 
            +
                    }
         | 
| 179 | 
            +
                  ],
         | 
| 180 | 
            +
                  "stateMutability": "view",
         | 
| 181 | 
            +
                  "type": "function"
         | 
| 182 | 
            +
                },
         | 
| 183 | 
            +
                {
         | 
| 184 | 
            +
                  "inputs": [
         | 
| 185 | 
            +
                    {
         | 
| 186 | 
            +
                      "internalType": "NftId",
         | 
| 187 | 
            +
                      "name": "componentNftId",
         | 
| 188 | 
            +
                      "type": "uint96"
         | 
| 189 | 
            +
                    }
         | 
| 190 | 
            +
                  ],
         | 
| 191 | 
            +
                  "name": "getComponentInfo",
         | 
| 192 | 
            +
                  "outputs": [
         | 
| 193 | 
            +
                    {
         | 
| 194 | 
            +
                      "components": [
         | 
| 195 | 
            +
                        {
         | 
| 196 | 
            +
                          "internalType": "string",
         | 
| 197 | 
            +
                          "name": "name",
         | 
| 198 | 
            +
                          "type": "string"
         | 
| 199 | 
            +
                        },
         | 
| 200 | 
            +
                        {
         | 
| 201 | 
            +
                          "internalType": "NftId",
         | 
| 202 | 
            +
                          "name": "productNftId",
         | 
| 203 | 
            +
                          "type": "uint96"
         | 
| 204 | 
            +
                        },
         | 
| 205 | 
            +
                        {
         | 
| 206 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 207 | 
            +
                          "name": "token",
         | 
| 208 | 
            +
                          "type": "address"
         | 
| 209 | 
            +
                        },
         | 
| 210 | 
            +
                        {
         | 
| 211 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 212 | 
            +
                          "name": "tokenHandler",
         | 
| 213 | 
            +
                          "type": "address"
         | 
| 214 | 
            +
                        },
         | 
| 215 | 
            +
                        {
         | 
| 216 | 
            +
                          "internalType": "address",
         | 
| 217 | 
            +
                          "name": "wallet",
         | 
| 218 | 
            +
                          "type": "address"
         | 
| 219 | 
            +
                        },
         | 
| 220 | 
            +
                        {
         | 
| 221 | 
            +
                          "internalType": "bytes",
         | 
| 222 | 
            +
                          "name": "data",
         | 
| 223 | 
            +
                          "type": "bytes"
         | 
| 224 | 
            +
                        }
         | 
| 225 | 
            +
                      ],
         | 
| 226 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 227 | 
            +
                      "name": "info",
         | 
| 228 | 
            +
                      "type": "tuple"
         | 
| 229 | 
            +
                    }
         | 
| 230 | 
            +
                  ],
         | 
| 231 | 
            +
                  "stateMutability": "view",
         | 
| 232 | 
            +
                  "type": "function"
         | 
| 233 | 
            +
                },
         | 
| 234 | 
            +
                {
         | 
| 235 | 
            +
                  "inputs": [
         | 
| 236 | 
            +
                    {
         | 
| 237 | 
            +
                      "internalType": "ReferralId",
         | 
| 238 | 
            +
                      "name": "referralId",
         | 
| 239 | 
            +
                      "type": "bytes8"
         | 
| 240 | 
            +
                    }
         | 
| 241 | 
            +
                  ],
         | 
| 242 | 
            +
                  "name": "getDiscountPercentage",
         | 
| 243 | 
            +
                  "outputs": [
         | 
| 244 | 
            +
                    {
         | 
| 245 | 
            +
                      "internalType": "UFixed",
         | 
| 246 | 
            +
                      "name": "discountPercentage",
         | 
| 247 | 
            +
                      "type": "uint256"
         | 
| 248 | 
            +
                    },
         | 
| 249 | 
            +
                    {
         | 
| 250 | 
            +
                      "internalType": "ReferralStatus",
         | 
| 251 | 
            +
                      "name": "status",
         | 
| 252 | 
            +
                      "type": "uint8"
         | 
| 253 | 
            +
                    }
         | 
| 254 | 
            +
                  ],
         | 
| 255 | 
            +
                  "stateMutability": "view",
         | 
| 256 | 
            +
                  "type": "function"
         | 
| 257 | 
            +
                },
         | 
| 258 | 
            +
                {
         | 
| 259 | 
            +
                  "inputs": [
         | 
| 260 | 
            +
                    {
         | 
| 261 | 
            +
                      "internalType": "NftId",
         | 
| 262 | 
            +
                      "name": "distributorNftId",
         | 
| 263 | 
            +
                      "type": "uint96"
         | 
| 264 | 
            +
                    }
         | 
| 265 | 
            +
                  ],
         | 
| 266 | 
            +
                  "name": "getDistributorInfo",
         | 
| 267 | 
            +
                  "outputs": [
         | 
| 268 | 
            +
                    {
         | 
| 269 | 
            +
                      "components": [
         | 
| 270 | 
            +
                        {
         | 
| 271 | 
            +
                          "internalType": "DistributorType",
         | 
| 272 | 
            +
                          "name": "distributorType",
         | 
| 273 | 
            +
                          "type": "bytes8"
         | 
| 274 | 
            +
                        },
         | 
| 275 | 
            +
                        {
         | 
| 276 | 
            +
                          "internalType": "bool",
         | 
| 277 | 
            +
                          "name": "active",
         | 
| 278 | 
            +
                          "type": "bool"
         | 
| 279 | 
            +
                        },
         | 
| 280 | 
            +
                        {
         | 
| 281 | 
            +
                          "internalType": "bytes",
         | 
| 282 | 
            +
                          "name": "data",
         | 
| 283 | 
            +
                          "type": "bytes"
         | 
| 284 | 
            +
                        },
         | 
| 285 | 
            +
                        {
         | 
| 286 | 
            +
                          "internalType": "Amount",
         | 
| 287 | 
            +
                          "name": "commissionAmount",
         | 
| 288 | 
            +
                          "type": "uint96"
         | 
| 289 | 
            +
                        },
         | 
| 290 | 
            +
                        {
         | 
| 291 | 
            +
                          "internalType": "uint32",
         | 
| 292 | 
            +
                          "name": "numPoliciesSold",
         | 
| 293 | 
            +
                          "type": "uint32"
         | 
| 294 | 
            +
                        }
         | 
| 295 | 
            +
                      ],
         | 
| 296 | 
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 297 | 
            +
                      "name": "info",
         | 
| 298 | 
            +
                      "type": "tuple"
         | 
| 299 | 
            +
                    }
         | 
| 300 | 
            +
                  ],
         | 
| 301 | 
            +
                  "stateMutability": "view",
         | 
| 302 | 
            +
                  "type": "function"
         | 
| 303 | 
            +
                },
         | 
| 304 | 
            +
                {
         | 
| 305 | 
            +
                  "inputs": [
         | 
| 306 | 
            +
                    {
         | 
| 307 | 
            +
                      "internalType": "DistributorType",
         | 
| 308 | 
            +
                      "name": "distributorType",
         | 
| 309 | 
            +
                      "type": "bytes8"
         | 
| 310 | 
            +
                    }
         | 
| 311 | 
            +
                  ],
         | 
| 312 | 
            +
                  "name": "getDistributorTypeInfo",
         | 
| 313 | 
            +
                  "outputs": [
         | 
| 314 | 
            +
                    {
         | 
| 315 | 
            +
                      "components": [
         | 
| 316 | 
            +
                        {
         | 
| 317 | 
            +
                          "internalType": "string",
         | 
| 318 | 
            +
                          "name": "name",
         | 
| 319 | 
            +
                          "type": "string"
         | 
| 320 | 
            +
                        },
         | 
| 321 | 
            +
                        {
         | 
| 322 | 
            +
                          "internalType": "UFixed",
         | 
| 323 | 
            +
                          "name": "minDiscountPercentage",
         | 
| 324 | 
            +
                          "type": "uint256"
         | 
| 325 | 
            +
                        },
         | 
| 326 | 
            +
                        {
         | 
| 327 | 
            +
                          "internalType": "UFixed",
         | 
| 328 | 
            +
                          "name": "maxDiscountPercentage",
         | 
| 329 | 
            +
                          "type": "uint256"
         | 
| 330 | 
            +
                        },
         | 
| 331 | 
            +
                        {
         | 
| 332 | 
            +
                          "internalType": "UFixed",
         | 
| 333 | 
            +
                          "name": "commissionPercentage",
         | 
| 334 | 
            +
                          "type": "uint256"
         | 
| 335 | 
            +
                        },
         | 
| 336 | 
            +
                        {
         | 
| 337 | 
            +
                          "internalType": "uint32",
         | 
| 338 | 
            +
                          "name": "maxReferralCount",
         | 
| 339 | 
            +
                          "type": "uint32"
         | 
| 340 | 
            +
                        },
         | 
| 341 | 
            +
                        {
         | 
| 342 | 
            +
                          "internalType": "uint32",
         | 
| 343 | 
            +
                          "name": "maxReferralLifetime",
         | 
| 344 | 
            +
                          "type": "uint32"
         | 
| 345 | 
            +
                        },
         | 
| 346 | 
            +
                        {
         | 
| 347 | 
            +
                          "internalType": "bool",
         | 
| 348 | 
            +
                          "name": "allowSelfReferrals",
         | 
| 349 | 
            +
                          "type": "bool"
         | 
| 350 | 
            +
                        },
         | 
| 351 | 
            +
                        {
         | 
| 352 | 
            +
                          "internalType": "bool",
         | 
| 353 | 
            +
                          "name": "allowRenewals",
         | 
| 354 | 
            +
                          "type": "bool"
         | 
| 355 | 
            +
                        },
         | 
| 356 | 
            +
                        {
         | 
| 357 | 
            +
                          "internalType": "bytes",
         | 
| 358 | 
            +
                          "name": "data",
         | 
| 359 | 
            +
                          "type": "bytes"
         | 
| 360 | 
            +
                        }
         | 
| 361 | 
            +
                      ],
         | 
| 362 | 
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 363 | 
            +
                      "name": "info",
         | 
| 364 | 
            +
                      "type": "tuple"
         | 
| 365 | 
            +
                    }
         | 
| 366 | 
            +
                  ],
         | 
| 367 | 
            +
                  "stateMutability": "view",
         | 
| 368 | 
            +
                  "type": "function"
         | 
| 369 | 
            +
                },
         | 
| 370 | 
            +
                {
         | 
| 371 | 
            +
                  "inputs": [
         | 
| 372 | 
            +
                    {
         | 
| 373 | 
            +
                      "internalType": "NftId",
         | 
| 374 | 
            +
                      "name": "targetNftId",
         | 
| 375 | 
            +
                      "type": "uint96"
         | 
| 376 | 
            +
                    }
         | 
| 377 | 
            +
                  ],
         | 
| 378 | 
            +
                  "name": "getFeeAmount",
         | 
| 379 | 
            +
                  "outputs": [
         | 
| 380 | 
            +
                    {
         | 
| 381 | 
            +
                      "internalType": "Amount",
         | 
| 382 | 
            +
                      "name": "",
         | 
| 383 | 
            +
                      "type": "uint96"
         | 
| 384 | 
            +
                    }
         | 
| 385 | 
            +
                  ],
         | 
| 386 | 
            +
                  "stateMutability": "view",
         | 
| 387 | 
            +
                  "type": "function"
         | 
| 388 | 
            +
                },
         | 
| 389 | 
            +
                {
         | 
| 390 | 
            +
                  "inputs": [],
         | 
| 391 | 
            +
                  "name": "getInstance",
         | 
| 392 | 
            +
                  "outputs": [
         | 
| 393 | 
            +
                    {
         | 
| 394 | 
            +
                      "internalType": "contract IInstance",
         | 
| 395 | 
            +
                      "name": "instance",
         | 
| 396 | 
            +
                      "type": "address"
         | 
| 397 | 
            +
                    }
         | 
| 398 | 
            +
                  ],
         | 
| 399 | 
            +
                  "stateMutability": "view",
         | 
| 400 | 
            +
                  "type": "function"
         | 
| 401 | 
            +
                },
         | 
| 402 | 
            +
                {
         | 
| 403 | 
            +
                  "inputs": [],
         | 
| 404 | 
            +
                  "name": "getInstanceStore",
         | 
| 405 | 
            +
                  "outputs": [
         | 
| 406 | 
            +
                    {
         | 
| 407 | 
            +
                      "internalType": "contract IKeyValueStore",
         | 
| 408 | 
            +
                      "name": "store",
         | 
| 409 | 
            +
                      "type": "address"
         | 
| 410 | 
            +
                    }
         | 
| 411 | 
            +
                  ],
         | 
| 412 | 
            +
                  "stateMutability": "view",
         | 
| 413 | 
            +
                  "type": "function"
         | 
| 414 | 
            +
                },
         | 
| 415 | 
            +
                {
         | 
| 416 | 
            +
                  "inputs": [
         | 
| 417 | 
            +
                    {
         | 
| 418 | 
            +
                      "internalType": "NftId",
         | 
| 419 | 
            +
                      "name": "targetNftId",
         | 
| 420 | 
            +
                      "type": "uint96"
         | 
| 421 | 
            +
                    }
         | 
| 422 | 
            +
                  ],
         | 
| 423 | 
            +
                  "name": "getLockedAmount",
         | 
| 424 | 
            +
                  "outputs": [
         | 
| 425 | 
            +
                    {
         | 
| 426 | 
            +
                      "internalType": "Amount",
         | 
| 427 | 
            +
                      "name": "",
         | 
| 428 | 
            +
                      "type": "uint96"
         | 
| 429 | 
            +
                    }
         | 
| 430 | 
            +
                  ],
         | 
| 431 | 
            +
                  "stateMutability": "view",
         | 
| 432 | 
            +
                  "type": "function"
         | 
| 433 | 
            +
                },
         | 
| 434 | 
            +
                {
         | 
| 435 | 
            +
                  "inputs": [
         | 
| 436 | 
            +
                    {
         | 
| 437 | 
            +
                      "internalType": "Key32",
         | 
| 438 | 
            +
                      "name": "key",
         | 
| 439 | 
            +
                      "type": "bytes32"
         | 
| 440 | 
            +
                    }
         | 
| 441 | 
            +
                  ],
         | 
| 442 | 
            +
                  "name": "getMetadata",
         | 
| 443 | 
            +
                  "outputs": [
         | 
| 444 | 
            +
                    {
         | 
| 445 | 
            +
                      "components": [
         | 
| 446 | 
            +
                        {
         | 
| 447 | 
            +
                          "internalType": "ObjectType",
         | 
| 448 | 
            +
                          "name": "objectType",
         | 
| 449 | 
            +
                          "type": "uint8"
         | 
| 450 | 
            +
                        },
         | 
| 451 | 
            +
                        {
         | 
| 452 | 
            +
                          "internalType": "StateId",
         | 
| 453 | 
            +
                          "name": "state",
         | 
| 454 | 
            +
                          "type": "uint8"
         | 
| 455 | 
            +
                        },
         | 
| 456 | 
            +
                        {
         | 
| 457 | 
            +
                          "internalType": "Blocknumber",
         | 
| 458 | 
            +
                          "name": "updatedIn",
         | 
| 459 | 
            +
                          "type": "uint32"
         | 
| 460 | 
            +
                        },
         | 
| 461 | 
            +
                        {
         | 
| 462 | 
            +
                          "internalType": "Blocknumber",
         | 
| 463 | 
            +
                          "name": "createdIn",
         | 
| 464 | 
            +
                          "type": "uint32"
         | 
| 465 | 
            +
                        }
         | 
| 466 | 
            +
                      ],
         | 
| 467 | 
            +
                      "internalType": "struct IKeyValueStore.Metadata",
         | 
| 468 | 
            +
                      "name": "metadata",
         | 
| 469 | 
            +
                      "type": "tuple"
         | 
| 470 | 
            +
                    }
         | 
| 471 | 
            +
                  ],
         | 
| 472 | 
            +
                  "stateMutability": "view",
         | 
| 473 | 
            +
                  "type": "function"
         | 
| 474 | 
            +
                },
         | 
| 475 | 
            +
                {
         | 
| 476 | 
            +
                  "inputs": [
         | 
| 477 | 
            +
                    {
         | 
| 478 | 
            +
                      "internalType": "NftId",
         | 
| 479 | 
            +
                      "name": "policyNftId",
         | 
| 480 | 
            +
                      "type": "uint96"
         | 
| 481 | 
            +
                    },
         | 
| 482 | 
            +
                    {
         | 
| 483 | 
            +
                      "internalType": "PayoutId",
         | 
| 484 | 
            +
                      "name": "payoutId",
         | 
| 485 | 
            +
                      "type": "uint24"
         | 
| 486 | 
            +
                    }
         | 
| 487 | 
            +
                  ],
         | 
| 488 | 
            +
                  "name": "getPayoutInfo",
         | 
| 489 | 
            +
                  "outputs": [
         | 
| 490 | 
            +
                    {
         | 
| 491 | 
            +
                      "components": [
         | 
| 492 | 
            +
                        {
         | 
| 493 | 
            +
                          "internalType": "ClaimId",
         | 
| 494 | 
            +
                          "name": "claimId",
         | 
| 495 | 
            +
                          "type": "uint16"
         | 
| 496 | 
            +
                        },
         | 
| 497 | 
            +
                        {
         | 
| 498 | 
            +
                          "internalType": "Amount",
         | 
| 499 | 
            +
                          "name": "amount",
         | 
| 500 | 
            +
                          "type": "uint96"
         | 
| 501 | 
            +
                        },
         | 
| 502 | 
            +
                        {
         | 
| 503 | 
            +
                          "internalType": "bytes",
         | 
| 504 | 
            +
                          "name": "data",
         | 
| 505 | 
            +
                          "type": "bytes"
         | 
| 506 | 
            +
                        },
         | 
| 507 | 
            +
                        {
         | 
| 508 | 
            +
                          "internalType": "Timestamp",
         | 
| 509 | 
            +
                          "name": "paidAt",
         | 
| 510 | 
            +
                          "type": "uint40"
         | 
| 511 | 
            +
                        }
         | 
| 512 | 
            +
                      ],
         | 
| 513 | 
            +
                      "internalType": "struct IPolicy.PayoutInfo",
         | 
| 514 | 
            +
                      "name": "info",
         | 
| 515 | 
            +
                      "type": "tuple"
         | 
| 516 | 
            +
                    }
         | 
| 517 | 
            +
                  ],
         | 
| 518 | 
            +
                  "stateMutability": "view",
         | 
| 519 | 
            +
                  "type": "function"
         | 
| 520 | 
            +
                },
         | 
| 521 | 
            +
                {
         | 
| 522 | 
            +
                  "inputs": [
         | 
| 523 | 
            +
                    {
         | 
| 524 | 
            +
                      "internalType": "NftId",
         | 
| 525 | 
            +
                      "name": "policyNftId",
         | 
| 526 | 
            +
                      "type": "uint96"
         | 
| 527 | 
            +
                    },
         | 
| 528 | 
            +
                    {
         | 
| 529 | 
            +
                      "internalType": "PayoutId",
         | 
| 530 | 
            +
                      "name": "payoutId",
         | 
| 531 | 
            +
                      "type": "uint24"
         | 
| 532 | 
            +
                    }
         | 
| 533 | 
            +
                  ],
         | 
| 534 | 
            +
                  "name": "getPayoutState",
         | 
| 535 | 
            +
                  "outputs": [
         | 
| 536 | 
            +
                    {
         | 
| 537 | 
            +
                      "internalType": "StateId",
         | 
| 538 | 
            +
                      "name": "state",
         | 
| 539 | 
            +
                      "type": "uint8"
         | 
| 540 | 
            +
                    }
         | 
| 541 | 
            +
                  ],
         | 
| 542 | 
            +
                  "stateMutability": "view",
         | 
| 543 | 
            +
                  "type": "function"
         | 
| 544 | 
            +
                },
         | 
| 545 | 
            +
                {
         | 
| 546 | 
            +
                  "inputs": [
         | 
| 547 | 
            +
                    {
         | 
| 548 | 
            +
                      "internalType": "NftId",
         | 
| 549 | 
            +
                      "name": "policyNftId",
         | 
| 550 | 
            +
                      "type": "uint96"
         | 
| 551 | 
            +
                    }
         | 
| 552 | 
            +
                  ],
         | 
| 553 | 
            +
                  "name": "getPolicyInfo",
         | 
| 554 | 
            +
                  "outputs": [
         | 
| 555 | 
            +
                    {
         | 
| 556 | 
            +
                      "components": [
         | 
| 557 | 
            +
                        {
         | 
| 558 | 
            +
                          "internalType": "NftId",
         | 
| 559 | 
            +
                          "name": "productNftId",
         | 
| 560 | 
            +
                          "type": "uint96"
         | 
| 561 | 
            +
                        },
         | 
| 562 | 
            +
                        {
         | 
| 563 | 
            +
                          "internalType": "NftId",
         | 
| 564 | 
            +
                          "name": "bundleNftId",
         | 
| 565 | 
            +
                          "type": "uint96"
         | 
| 566 | 
            +
                        },
         | 
| 567 | 
            +
                        {
         | 
| 568 | 
            +
                          "internalType": "ReferralId",
         | 
| 569 | 
            +
                          "name": "referralId",
         | 
| 570 | 
            +
                          "type": "bytes8"
         | 
| 571 | 
            +
                        },
         | 
| 572 | 
            +
                        {
         | 
| 573 | 
            +
                          "internalType": "RiskId",
         | 
| 574 | 
            +
                          "name": "riskId",
         | 
| 575 | 
            +
                          "type": "bytes8"
         | 
| 576 | 
            +
                        },
         | 
| 577 | 
            +
                        {
         | 
| 578 | 
            +
                          "internalType": "Amount",
         | 
| 579 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 580 | 
            +
                          "type": "uint96"
         | 
| 581 | 
            +
                        },
         | 
| 582 | 
            +
                        {
         | 
| 583 | 
            +
                          "internalType": "Amount",
         | 
| 584 | 
            +
                          "name": "premiumAmount",
         | 
| 585 | 
            +
                          "type": "uint96"
         | 
| 586 | 
            +
                        },
         | 
| 587 | 
            +
                        {
         | 
| 588 | 
            +
                          "internalType": "Amount",
         | 
| 589 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 590 | 
            +
                          "type": "uint96"
         | 
| 591 | 
            +
                        },
         | 
| 592 | 
            +
                        {
         | 
| 593 | 
            +
                          "internalType": "Seconds",
         | 
| 594 | 
            +
                          "name": "lifetime",
         | 
| 595 | 
            +
                          "type": "uint40"
         | 
| 596 | 
            +
                        },
         | 
| 597 | 
            +
                        {
         | 
| 598 | 
            +
                          "internalType": "bytes",
         | 
| 599 | 
            +
                          "name": "applicationData",
         | 
| 600 | 
            +
                          "type": "bytes"
         | 
| 601 | 
            +
                        },
         | 
| 602 | 
            +
                        {
         | 
| 603 | 
            +
                          "internalType": "bytes",
         | 
| 604 | 
            +
                          "name": "processData",
         | 
| 605 | 
            +
                          "type": "bytes"
         | 
| 606 | 
            +
                        },
         | 
| 607 | 
            +
                        {
         | 
| 608 | 
            +
                          "internalType": "uint16",
         | 
| 609 | 
            +
                          "name": "claimsCount",
         | 
| 610 | 
            +
                          "type": "uint16"
         | 
| 611 | 
            +
                        },
         | 
| 612 | 
            +
                        {
         | 
| 613 | 
            +
                          "internalType": "uint16",
         | 
| 614 | 
            +
                          "name": "openClaimsCount",
         | 
| 615 | 
            +
                          "type": "uint16"
         | 
| 616 | 
            +
                        },
         | 
| 617 | 
            +
                        {
         | 
| 618 | 
            +
                          "internalType": "Amount",
         | 
| 619 | 
            +
                          "name": "claimAmount",
         | 
| 620 | 
            +
                          "type": "uint96"
         | 
| 621 | 
            +
                        },
         | 
| 622 | 
            +
                        {
         | 
| 623 | 
            +
                          "internalType": "Amount",
         | 
| 624 | 
            +
                          "name": "payoutAmount",
         | 
| 625 | 
            +
                          "type": "uint96"
         | 
| 626 | 
            +
                        },
         | 
| 627 | 
            +
                        {
         | 
| 628 | 
            +
                          "internalType": "Timestamp",
         | 
| 629 | 
            +
                          "name": "activatedAt",
         | 
| 630 | 
            +
                          "type": "uint40"
         | 
| 631 | 
            +
                        },
         | 
| 632 | 
            +
                        {
         | 
| 633 | 
            +
                          "internalType": "Timestamp",
         | 
| 634 | 
            +
                          "name": "expiredAt",
         | 
| 635 | 
            +
                          "type": "uint40"
         | 
| 636 | 
            +
                        },
         | 
| 637 | 
            +
                        {
         | 
| 638 | 
            +
                          "internalType": "Timestamp",
         | 
| 639 | 
            +
                          "name": "closedAt",
         | 
| 640 | 
            +
                          "type": "uint40"
         | 
| 641 | 
            +
                        }
         | 
| 642 | 
            +
                      ],
         | 
| 643 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 644 | 
            +
                      "name": "info",
         | 
| 645 | 
            +
                      "type": "tuple"
         | 
| 646 | 
            +
                    }
         | 
| 647 | 
            +
                  ],
         | 
| 648 | 
            +
                  "stateMutability": "view",
         | 
| 649 | 
            +
                  "type": "function"
         | 
| 650 | 
            +
                },
         | 
| 651 | 
            +
                {
         | 
| 652 | 
            +
                  "inputs": [
         | 
| 653 | 
            +
                    {
         | 
| 654 | 
            +
                      "internalType": "NftId",
         | 
| 655 | 
            +
                      "name": "policyNftId",
         | 
| 656 | 
            +
                      "type": "uint96"
         | 
| 657 | 
            +
                    }
         | 
| 658 | 
            +
                  ],
         | 
| 659 | 
            +
                  "name": "getPolicyState",
         | 
| 660 | 
            +
                  "outputs": [
         | 
| 661 | 
            +
                    {
         | 
| 662 | 
            +
                      "internalType": "StateId",
         | 
| 663 | 
            +
                      "name": "state",
         | 
| 664 | 
            +
                      "type": "uint8"
         | 
| 665 | 
            +
                    }
         | 
| 666 | 
            +
                  ],
         | 
| 667 | 
            +
                  "stateMutability": "view",
         | 
| 668 | 
            +
                  "type": "function"
         | 
| 669 | 
            +
                },
         | 
| 670 | 
            +
                {
         | 
| 671 | 
            +
                  "inputs": [
         | 
| 672 | 
            +
                    {
         | 
| 673 | 
            +
                      "internalType": "NftId",
         | 
| 674 | 
            +
                      "name": "poolNftId",
         | 
| 675 | 
            +
                      "type": "uint96"
         | 
| 676 | 
            +
                    }
         | 
| 677 | 
            +
                  ],
         | 
| 678 | 
            +
                  "name": "getPoolInfo",
         | 
| 679 | 
            +
                  "outputs": [
         | 
| 680 | 
            +
                    {
         | 
| 681 | 
            +
                      "components": [
         | 
| 682 | 
            +
                        {
         | 
| 683 | 
            +
                          "internalType": "NftId",
         | 
| 684 | 
            +
                          "name": "productNftId",
         | 
| 685 | 
            +
                          "type": "uint96"
         | 
| 686 | 
            +
                        },
         | 
| 687 | 
            +
                        {
         | 
| 688 | 
            +
                          "internalType": "RoleId",
         | 
| 689 | 
            +
                          "name": "bundleOwnerRole",
         | 
| 690 | 
            +
                          "type": "uint64"
         | 
| 691 | 
            +
                        },
         | 
| 692 | 
            +
                        {
         | 
| 693 | 
            +
                          "internalType": "Amount",
         | 
| 694 | 
            +
                          "name": "maxCapitalAmount",
         | 
| 695 | 
            +
                          "type": "uint96"
         | 
| 696 | 
            +
                        },
         | 
| 697 | 
            +
                        {
         | 
| 698 | 
            +
                          "internalType": "bool",
         | 
| 699 | 
            +
                          "name": "isInterceptingBundleTransfers",
         | 
| 700 | 
            +
                          "type": "bool"
         | 
| 701 | 
            +
                        },
         | 
| 702 | 
            +
                        {
         | 
| 703 | 
            +
                          "internalType": "bool",
         | 
| 704 | 
            +
                          "name": "isExternallyManaged",
         | 
| 705 | 
            +
                          "type": "bool"
         | 
| 706 | 
            +
                        },
         | 
| 707 | 
            +
                        {
         | 
| 708 | 
            +
                          "internalType": "bool",
         | 
| 709 | 
            +
                          "name": "isVerifyingApplications",
         | 
| 710 | 
            +
                          "type": "bool"
         | 
| 711 | 
            +
                        },
         | 
| 712 | 
            +
                        {
         | 
| 713 | 
            +
                          "internalType": "UFixed",
         | 
| 714 | 
            +
                          "name": "collateralizationLevel",
         | 
| 715 | 
            +
                          "type": "uint256"
         | 
| 716 | 
            +
                        },
         | 
| 717 | 
            +
                        {
         | 
| 718 | 
            +
                          "internalType": "UFixed",
         | 
| 719 | 
            +
                          "name": "retentionLevel",
         | 
| 720 | 
            +
                          "type": "uint256"
         | 
| 721 | 
            +
                        },
         | 
| 722 | 
            +
                        {
         | 
| 723 | 
            +
                          "components": [
         | 
| 724 | 
            +
                            {
         | 
| 725 | 
            +
                              "internalType": "UFixed",
         | 
| 726 | 
            +
                              "name": "fractionalFee",
         | 
| 727 | 
            +
                              "type": "uint256"
         | 
| 728 | 
            +
                            },
         | 
| 729 | 
            +
                            {
         | 
| 730 | 
            +
                              "internalType": "uint256",
         | 
| 731 | 
            +
                              "name": "fixedFee",
         | 
| 732 | 
            +
                              "type": "uint256"
         | 
| 733 | 
            +
                            }
         | 
| 734 | 
            +
                          ],
         | 
| 735 | 
            +
                          "internalType": "struct Fee",
         | 
| 736 | 
            +
                          "name": "poolFee",
         | 
| 737 | 
            +
                          "type": "tuple"
         | 
| 738 | 
            +
                        },
         | 
| 739 | 
            +
                        {
         | 
| 740 | 
            +
                          "components": [
         | 
| 741 | 
            +
                            {
         | 
| 742 | 
            +
                              "internalType": "UFixed",
         | 
| 743 | 
            +
                              "name": "fractionalFee",
         | 
| 744 | 
            +
                              "type": "uint256"
         | 
| 745 | 
            +
                            },
         | 
| 746 | 
            +
                            {
         | 
| 747 | 
            +
                              "internalType": "uint256",
         | 
| 748 | 
            +
                              "name": "fixedFee",
         | 
| 749 | 
            +
                              "type": "uint256"
         | 
| 750 | 
            +
                            }
         | 
| 751 | 
            +
                          ],
         | 
| 752 | 
            +
                          "internalType": "struct Fee",
         | 
| 753 | 
            +
                          "name": "stakingFee",
         | 
| 754 | 
            +
                          "type": "tuple"
         | 
| 755 | 
            +
                        },
         | 
| 756 | 
            +
                        {
         | 
| 757 | 
            +
                          "components": [
         | 
| 758 | 
            +
                            {
         | 
| 759 | 
            +
                              "internalType": "UFixed",
         | 
| 760 | 
            +
                              "name": "fractionalFee",
         | 
| 761 | 
            +
                              "type": "uint256"
         | 
| 762 | 
            +
                            },
         | 
| 763 | 
            +
                            {
         | 
| 764 | 
            +
                              "internalType": "uint256",
         | 
| 765 | 
            +
                              "name": "fixedFee",
         | 
| 766 | 
            +
                              "type": "uint256"
         | 
| 767 | 
            +
                            }
         | 
| 768 | 
            +
                          ],
         | 
| 769 | 
            +
                          "internalType": "struct Fee",
         | 
| 770 | 
            +
                          "name": "performanceFee",
         | 
| 771 | 
            +
                          "type": "tuple"
         | 
| 772 | 
            +
                        }
         | 
| 773 | 
            +
                      ],
         | 
| 774 | 
            +
                      "internalType": "struct IComponents.PoolInfo",
         | 
| 775 | 
            +
                      "name": "info",
         | 
| 776 | 
            +
                      "type": "tuple"
         | 
| 777 | 
            +
                    }
         | 
| 778 | 
            +
                  ],
         | 
| 779 | 
            +
                  "stateMutability": "view",
         | 
| 780 | 
            +
                  "type": "function"
         | 
| 781 | 
            +
                },
         | 
| 782 | 
            +
                {
         | 
| 783 | 
            +
                  "inputs": [
         | 
| 784 | 
            +
                    {
         | 
| 785 | 
            +
                      "internalType": "NftId",
         | 
| 786 | 
            +
                      "name": "productNftId",
         | 
| 787 | 
            +
                      "type": "uint96"
         | 
| 788 | 
            +
                    }
         | 
| 789 | 
            +
                  ],
         | 
| 790 | 
            +
                  "name": "getProductInfo",
         | 
| 791 | 
            +
                  "outputs": [
         | 
| 792 | 
            +
                    {
         | 
| 793 | 
            +
                      "components": [
         | 
| 794 | 
            +
                        {
         | 
| 795 | 
            +
                          "internalType": "NftId",
         | 
| 796 | 
            +
                          "name": "distributionNftId",
         | 
| 797 | 
            +
                          "type": "uint96"
         | 
| 798 | 
            +
                        },
         | 
| 799 | 
            +
                        {
         | 
| 800 | 
            +
                          "internalType": "NftId",
         | 
| 801 | 
            +
                          "name": "poolNftId",
         | 
| 802 | 
            +
                          "type": "uint96"
         | 
| 803 | 
            +
                        },
         | 
| 804 | 
            +
                        {
         | 
| 805 | 
            +
                          "components": [
         | 
| 806 | 
            +
                            {
         | 
| 807 | 
            +
                              "internalType": "UFixed",
         | 
| 808 | 
            +
                              "name": "fractionalFee",
         | 
| 809 | 
            +
                              "type": "uint256"
         | 
| 810 | 
            +
                            },
         | 
| 811 | 
            +
                            {
         | 
| 812 | 
            +
                              "internalType": "uint256",
         | 
| 813 | 
            +
                              "name": "fixedFee",
         | 
| 814 | 
            +
                              "type": "uint256"
         | 
| 815 | 
            +
                            }
         | 
| 816 | 
            +
                          ],
         | 
| 817 | 
            +
                          "internalType": "struct Fee",
         | 
| 818 | 
            +
                          "name": "productFee",
         | 
| 819 | 
            +
                          "type": "tuple"
         | 
| 820 | 
            +
                        },
         | 
| 821 | 
            +
                        {
         | 
| 822 | 
            +
                          "components": [
         | 
| 823 | 
            +
                            {
         | 
| 824 | 
            +
                              "internalType": "UFixed",
         | 
| 825 | 
            +
                              "name": "fractionalFee",
         | 
| 826 | 
            +
                              "type": "uint256"
         | 
| 827 | 
            +
                            },
         | 
| 828 | 
            +
                            {
         | 
| 829 | 
            +
                              "internalType": "uint256",
         | 
| 830 | 
            +
                              "name": "fixedFee",
         | 
| 831 | 
            +
                              "type": "uint256"
         | 
| 832 | 
            +
                            }
         | 
| 833 | 
            +
                          ],
         | 
| 834 | 
            +
                          "internalType": "struct Fee",
         | 
| 835 | 
            +
                          "name": "processingFee",
         | 
| 836 | 
            +
                          "type": "tuple"
         | 
| 837 | 
            +
                        },
         | 
| 838 | 
            +
                        {
         | 
| 839 | 
            +
                          "components": [
         | 
| 840 | 
            +
                            {
         | 
| 841 | 
            +
                              "internalType": "UFixed",
         | 
| 842 | 
            +
                              "name": "fractionalFee",
         | 
| 843 | 
            +
                              "type": "uint256"
         | 
| 844 | 
            +
                            },
         | 
| 845 | 
            +
                            {
         | 
| 846 | 
            +
                              "internalType": "uint256",
         | 
| 847 | 
            +
                              "name": "fixedFee",
         | 
| 848 | 
            +
                              "type": "uint256"
         | 
| 849 | 
            +
                            }
         | 
| 850 | 
            +
                          ],
         | 
| 851 | 
            +
                          "internalType": "struct Fee",
         | 
| 852 | 
            +
                          "name": "distributionFee",
         | 
| 853 | 
            +
                          "type": "tuple"
         | 
| 854 | 
            +
                        },
         | 
| 855 | 
            +
                        {
         | 
| 856 | 
            +
                          "components": [
         | 
| 857 | 
            +
                            {
         | 
| 858 | 
            +
                              "internalType": "UFixed",
         | 
| 859 | 
            +
                              "name": "fractionalFee",
         | 
| 860 | 
            +
                              "type": "uint256"
         | 
| 861 | 
            +
                            },
         | 
| 862 | 
            +
                            {
         | 
| 863 | 
            +
                              "internalType": "uint256",
         | 
| 864 | 
            +
                              "name": "fixedFee",
         | 
| 865 | 
            +
                              "type": "uint256"
         | 
| 866 | 
            +
                            }
         | 
| 867 | 
            +
                          ],
         | 
| 868 | 
            +
                          "internalType": "struct Fee",
         | 
| 869 | 
            +
                          "name": "minDistributionOwnerFee",
         | 
| 870 | 
            +
                          "type": "tuple"
         | 
| 871 | 
            +
                        },
         | 
| 872 | 
            +
                        {
         | 
| 873 | 
            +
                          "components": [
         | 
| 874 | 
            +
                            {
         | 
| 875 | 
            +
                              "internalType": "UFixed",
         | 
| 876 | 
            +
                              "name": "fractionalFee",
         | 
| 877 | 
            +
                              "type": "uint256"
         | 
| 878 | 
            +
                            },
         | 
| 879 | 
            +
                            {
         | 
| 880 | 
            +
                              "internalType": "uint256",
         | 
| 881 | 
            +
                              "name": "fixedFee",
         | 
| 882 | 
            +
                              "type": "uint256"
         | 
| 883 | 
            +
                            }
         | 
| 884 | 
            +
                          ],
         | 
| 885 | 
            +
                          "internalType": "struct Fee",
         | 
| 886 | 
            +
                          "name": "poolFee",
         | 
| 887 | 
            +
                          "type": "tuple"
         | 
| 888 | 
            +
                        },
         | 
| 889 | 
            +
                        {
         | 
| 890 | 
            +
                          "components": [
         | 
| 891 | 
            +
                            {
         | 
| 892 | 
            +
                              "internalType": "UFixed",
         | 
| 893 | 
            +
                              "name": "fractionalFee",
         | 
| 894 | 
            +
                              "type": "uint256"
         | 
| 895 | 
            +
                            },
         | 
| 896 | 
            +
                            {
         | 
| 897 | 
            +
                              "internalType": "uint256",
         | 
| 898 | 
            +
                              "name": "fixedFee",
         | 
| 899 | 
            +
                              "type": "uint256"
         | 
| 900 | 
            +
                            }
         | 
| 901 | 
            +
                          ],
         | 
| 902 | 
            +
                          "internalType": "struct Fee",
         | 
| 903 | 
            +
                          "name": "stakingFee",
         | 
| 904 | 
            +
                          "type": "tuple"
         | 
| 905 | 
            +
                        },
         | 
| 906 | 
            +
                        {
         | 
| 907 | 
            +
                          "components": [
         | 
| 908 | 
            +
                            {
         | 
| 909 | 
            +
                              "internalType": "UFixed",
         | 
| 910 | 
            +
                              "name": "fractionalFee",
         | 
| 911 | 
            +
                              "type": "uint256"
         | 
| 912 | 
            +
                            },
         | 
| 913 | 
            +
                            {
         | 
| 914 | 
            +
                              "internalType": "uint256",
         | 
| 915 | 
            +
                              "name": "fixedFee",
         | 
| 916 | 
            +
                              "type": "uint256"
         | 
| 917 | 
            +
                            }
         | 
| 918 | 
            +
                          ],
         | 
| 919 | 
            +
                          "internalType": "struct Fee",
         | 
| 920 | 
            +
                          "name": "performanceFee",
         | 
| 921 | 
            +
                          "type": "tuple"
         | 
| 922 | 
            +
                        }
         | 
| 923 | 
            +
                      ],
         | 
| 924 | 
            +
                      "internalType": "struct IComponents.ProductInfo",
         | 
| 925 | 
            +
                      "name": "info",
         | 
| 926 | 
            +
                      "type": "tuple"
         | 
| 927 | 
            +
                    }
         | 
| 928 | 
            +
                  ],
         | 
| 929 | 
            +
                  "stateMutability": "view",
         | 
| 930 | 
            +
                  "type": "function"
         | 
| 931 | 
            +
                },
         | 
| 932 | 
            +
                {
         | 
| 933 | 
            +
                  "inputs": [
         | 
| 934 | 
            +
                    {
         | 
| 935 | 
            +
                      "internalType": "ReferralId",
         | 
| 936 | 
            +
                      "name": "referralId",
         | 
| 937 | 
            +
                      "type": "bytes8"
         | 
| 938 | 
            +
                    }
         | 
| 939 | 
            +
                  ],
         | 
| 940 | 
            +
                  "name": "getReferralInfo",
         | 
| 941 | 
            +
                  "outputs": [
         | 
| 942 | 
            +
                    {
         | 
| 943 | 
            +
                      "components": [
         | 
| 944 | 
            +
                        {
         | 
| 945 | 
            +
                          "internalType": "NftId",
         | 
| 946 | 
            +
                          "name": "distributorNftId",
         | 
| 947 | 
            +
                          "type": "uint96"
         | 
| 948 | 
            +
                        },
         | 
| 949 | 
            +
                        {
         | 
| 950 | 
            +
                          "internalType": "string",
         | 
| 951 | 
            +
                          "name": "referralCode",
         | 
| 952 | 
            +
                          "type": "string"
         | 
| 953 | 
            +
                        },
         | 
| 954 | 
            +
                        {
         | 
| 955 | 
            +
                          "internalType": "UFixed",
         | 
| 956 | 
            +
                          "name": "discountPercentage",
         | 
| 957 | 
            +
                          "type": "uint256"
         | 
| 958 | 
            +
                        },
         | 
| 959 | 
            +
                        {
         | 
| 960 | 
            +
                          "internalType": "uint32",
         | 
| 961 | 
            +
                          "name": "maxReferrals",
         | 
| 962 | 
            +
                          "type": "uint32"
         | 
| 963 | 
            +
                        },
         | 
| 964 | 
            +
                        {
         | 
| 965 | 
            +
                          "internalType": "uint32",
         | 
| 966 | 
            +
                          "name": "usedReferrals",
         | 
| 967 | 
            +
                          "type": "uint32"
         | 
| 968 | 
            +
                        },
         | 
| 969 | 
            +
                        {
         | 
| 970 | 
            +
                          "internalType": "Timestamp",
         | 
| 971 | 
            +
                          "name": "expiryAt",
         | 
| 972 | 
            +
                          "type": "uint40"
         | 
| 973 | 
            +
                        },
         | 
| 974 | 
            +
                        {
         | 
| 975 | 
            +
                          "internalType": "bytes",
         | 
| 976 | 
            +
                          "name": "data",
         | 
| 977 | 
            +
                          "type": "bytes"
         | 
| 978 | 
            +
                        }
         | 
| 979 | 
            +
                      ],
         | 
| 980 | 
            +
                      "internalType": "struct IDistribution.ReferralInfo",
         | 
| 981 | 
            +
                      "name": "info",
         | 
| 982 | 
            +
                      "type": "tuple"
         | 
| 983 | 
            +
                    }
         | 
| 984 | 
            +
                  ],
         | 
| 985 | 
            +
                  "stateMutability": "view",
         | 
| 986 | 
            +
                  "type": "function"
         | 
| 987 | 
            +
                },
         | 
| 988 | 
            +
                {
         | 
| 989 | 
            +
                  "inputs": [
         | 
| 990 | 
            +
                    {
         | 
| 991 | 
            +
                      "internalType": "RequestId",
         | 
| 992 | 
            +
                      "name": "requestId",
         | 
| 993 | 
            +
                      "type": "uint64"
         | 
| 994 | 
            +
                    }
         | 
| 995 | 
            +
                  ],
         | 
| 996 | 
            +
                  "name": "getRequestInfo",
         | 
| 997 | 
            +
                  "outputs": [
         | 
| 998 | 
            +
                    {
         | 
| 999 | 
            +
                      "components": [
         | 
| 1000 | 
            +
                        {
         | 
| 1001 | 
            +
                          "internalType": "NftId",
         | 
| 1002 | 
            +
                          "name": "requesterNftId",
         | 
| 1003 | 
            +
                          "type": "uint96"
         | 
| 1004 | 
            +
                        },
         | 
| 1005 | 
            +
                        {
         | 
| 1006 | 
            +
                          "internalType": "string",
         | 
| 1007 | 
            +
                          "name": "callbackMethodName",
         | 
| 1008 | 
            +
                          "type": "string"
         | 
| 1009 | 
            +
                        },
         | 
| 1010 | 
            +
                        {
         | 
| 1011 | 
            +
                          "internalType": "NftId",
         | 
| 1012 | 
            +
                          "name": "oracleNftId",
         | 
| 1013 | 
            +
                          "type": "uint96"
         | 
| 1014 | 
            +
                        },
         | 
| 1015 | 
            +
                        {
         | 
| 1016 | 
            +
                          "internalType": "bytes",
         | 
| 1017 | 
            +
                          "name": "requestData",
         | 
| 1018 | 
            +
                          "type": "bytes"
         | 
| 1019 | 
            +
                        },
         | 
| 1020 | 
            +
                        {
         | 
| 1021 | 
            +
                          "internalType": "bytes",
         | 
| 1022 | 
            +
                          "name": "responseData",
         | 
| 1023 | 
            +
                          "type": "bytes"
         | 
| 1024 | 
            +
                        },
         | 
| 1025 | 
            +
                        {
         | 
| 1026 | 
            +
                          "internalType": "Timestamp",
         | 
| 1027 | 
            +
                          "name": "respondedAt",
         | 
| 1028 | 
            +
                          "type": "uint40"
         | 
| 1029 | 
            +
                        },
         | 
| 1030 | 
            +
                        {
         | 
| 1031 | 
            +
                          "internalType": "Timestamp",
         | 
| 1032 | 
            +
                          "name": "expiredAt",
         | 
| 1033 | 
            +
                          "type": "uint40"
         | 
| 1034 | 
            +
                        },
         | 
| 1035 | 
            +
                        {
         | 
| 1036 | 
            +
                          "internalType": "bool",
         | 
| 1037 | 
            +
                          "name": "isCancelled",
         | 
| 1038 | 
            +
                          "type": "bool"
         | 
| 1039 | 
            +
                        }
         | 
| 1040 | 
            +
                      ],
         | 
| 1041 | 
            +
                      "internalType": "struct IOracle.RequestInfo",
         | 
| 1042 | 
            +
                      "name": "requestInfo",
         | 
| 1043 | 
            +
                      "type": "tuple"
         | 
| 1044 | 
            +
                    }
         | 
| 1045 | 
            +
                  ],
         | 
| 1046 | 
            +
                  "stateMutability": "view",
         | 
| 1047 | 
            +
                  "type": "function"
         | 
| 1048 | 
            +
                },
         | 
| 1049 | 
            +
                {
         | 
| 1050 | 
            +
                  "inputs": [
         | 
| 1051 | 
            +
                    {
         | 
| 1052 | 
            +
                      "internalType": "RiskId",
         | 
| 1053 | 
            +
                      "name": "riskId",
         | 
| 1054 | 
            +
                      "type": "bytes8"
         | 
| 1055 | 
            +
                    }
         | 
| 1056 | 
            +
                  ],
         | 
| 1057 | 
            +
                  "name": "getRiskInfo",
         | 
| 1058 | 
            +
                  "outputs": [
         | 
| 1059 | 
            +
                    {
         | 
| 1060 | 
            +
                      "components": [
         | 
| 1061 | 
            +
                        {
         | 
| 1062 | 
            +
                          "internalType": "NftId",
         | 
| 1063 | 
            +
                          "name": "productNftId",
         | 
| 1064 | 
            +
                          "type": "uint96"
         | 
| 1065 | 
            +
                        },
         | 
| 1066 | 
            +
                        {
         | 
| 1067 | 
            +
                          "internalType": "bytes",
         | 
| 1068 | 
            +
                          "name": "data",
         | 
| 1069 | 
            +
                          "type": "bytes"
         | 
| 1070 | 
            +
                        }
         | 
| 1071 | 
            +
                      ],
         | 
| 1072 | 
            +
                      "internalType": "struct IRisk.RiskInfo",
         | 
| 1073 | 
            +
                      "name": "info",
         | 
| 1074 | 
            +
                      "type": "tuple"
         | 
| 1075 | 
            +
                    }
         | 
| 1076 | 
            +
                  ],
         | 
| 1077 | 
            +
                  "stateMutability": "view",
         | 
| 1078 | 
            +
                  "type": "function"
         | 
| 1079 | 
            +
                },
         | 
| 1080 | 
            +
                {
         | 
| 1081 | 
            +
                  "inputs": [
         | 
| 1082 | 
            +
                    {
         | 
| 1083 | 
            +
                      "internalType": "Key32",
         | 
| 1084 | 
            +
                      "name": "key",
         | 
| 1085 | 
            +
                      "type": "bytes32"
         | 
| 1086 | 
            +
                    }
         | 
| 1087 | 
            +
                  ],
         | 
| 1088 | 
            +
                  "name": "getState",
         | 
| 1089 | 
            +
                  "outputs": [
         | 
| 1090 | 
            +
                    {
         | 
| 1091 | 
            +
                      "internalType": "StateId",
         | 
| 1092 | 
            +
                      "name": "state",
         | 
| 1093 | 
            +
                      "type": "uint8"
         | 
| 1094 | 
            +
                    }
         | 
| 1095 | 
            +
                  ],
         | 
| 1096 | 
            +
                  "stateMutability": "view",
         | 
| 1097 | 
            +
                  "type": "function"
         | 
| 1098 | 
            +
                },
         | 
| 1099 | 
            +
                {
         | 
| 1100 | 
            +
                  "inputs": [
         | 
| 1101 | 
            +
                    {
         | 
| 1102 | 
            +
                      "internalType": "NftId",
         | 
| 1103 | 
            +
                      "name": "componentNftId",
         | 
| 1104 | 
            +
                      "type": "uint96"
         | 
| 1105 | 
            +
                    }
         | 
| 1106 | 
            +
                  ],
         | 
| 1107 | 
            +
                  "name": "getTokenHandler",
         | 
| 1108 | 
            +
                  "outputs": [
         | 
| 1109 | 
            +
                    {
         | 
| 1110 | 
            +
                      "internalType": "address",
         | 
| 1111 | 
            +
                      "name": "tokenHandler",
         | 
| 1112 | 
            +
                      "type": "address"
         | 
| 1113 | 
            +
                    }
         | 
| 1114 | 
            +
                  ],
         | 
| 1115 | 
            +
                  "stateMutability": "view",
         | 
| 1116 | 
            +
                  "type": "function"
         | 
| 1117 | 
            +
                },
         | 
| 1118 | 
            +
                {
         | 
| 1119 | 
            +
                  "inputs": [
         | 
| 1120 | 
            +
                    {
         | 
| 1121 | 
            +
                      "internalType": "address",
         | 
| 1122 | 
            +
                      "name": "account",
         | 
| 1123 | 
            +
                      "type": "address"
         | 
| 1124 | 
            +
                    },
         | 
| 1125 | 
            +
                    {
         | 
| 1126 | 
            +
                      "internalType": "RoleId",
         | 
| 1127 | 
            +
                      "name": "roleId",
         | 
| 1128 | 
            +
                      "type": "uint64"
         | 
| 1129 | 
            +
                    }
         | 
| 1130 | 
            +
                  ],
         | 
| 1131 | 
            +
                  "name": "hasAdminRole",
         | 
| 1132 | 
            +
                  "outputs": [
         | 
| 1133 | 
            +
                    {
         | 
| 1134 | 
            +
                      "internalType": "bool",
         | 
| 1135 | 
            +
                      "name": "isMember",
         | 
| 1136 | 
            +
                      "type": "bool"
         | 
| 1137 | 
            +
                    }
         | 
| 1138 | 
            +
                  ],
         | 
| 1139 | 
            +
                  "stateMutability": "view",
         | 
| 1140 | 
            +
                  "type": "function"
         | 
| 1141 | 
            +
                },
         | 
| 1142 | 
            +
                {
         | 
| 1143 | 
            +
                  "inputs": [
         | 
| 1144 | 
            +
                    {
         | 
| 1145 | 
            +
                      "internalType": "address",
         | 
| 1146 | 
            +
                      "name": "account",
         | 
| 1147 | 
            +
                      "type": "address"
         | 
| 1148 | 
            +
                    },
         | 
| 1149 | 
            +
                    {
         | 
| 1150 | 
            +
                      "internalType": "RoleId",
         | 
| 1151 | 
            +
                      "name": "roleId",
         | 
| 1152 | 
            +
                      "type": "uint64"
         | 
| 1153 | 
            +
                    }
         | 
| 1154 | 
            +
                  ],
         | 
| 1155 | 
            +
                  "name": "hasRole",
         | 
| 1156 | 
            +
                  "outputs": [
         | 
| 1157 | 
            +
                    {
         | 
| 1158 | 
            +
                      "internalType": "bool",
         | 
| 1159 | 
            +
                      "name": "isMember",
         | 
| 1160 | 
            +
                      "type": "bool"
         | 
| 1161 | 
            +
                    }
         | 
| 1162 | 
            +
                  ],
         | 
| 1163 | 
            +
                  "stateMutability": "view",
         | 
| 1164 | 
            +
                  "type": "function"
         | 
| 1165 | 
            +
                },
         | 
| 1166 | 
            +
                {
         | 
| 1167 | 
            +
                  "inputs": [],
         | 
| 1168 | 
            +
                  "name": "initialize",
         | 
| 1169 | 
            +
                  "outputs": [],
         | 
| 1170 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1171 | 
            +
                  "type": "function"
         | 
| 1172 | 
            +
                },
         | 
| 1173 | 
            +
                {
         | 
| 1174 | 
            +
                  "inputs": [
         | 
| 1175 | 
            +
                    {
         | 
| 1176 | 
            +
                      "internalType": "address",
         | 
| 1177 | 
            +
                      "name": "instanceAddress",
         | 
| 1178 | 
            +
                      "type": "address"
         | 
| 1179 | 
            +
                    }
         | 
| 1180 | 
            +
                  ],
         | 
| 1181 | 
            +
                  "name": "initializeWithInstance",
         | 
| 1182 | 
            +
                  "outputs": [],
         | 
| 1183 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1184 | 
            +
                  "type": "function"
         | 
| 1185 | 
            +
                },
         | 
| 1186 | 
            +
                {
         | 
| 1187 | 
            +
                  "inputs": [
         | 
| 1188 | 
            +
                    {
         | 
| 1189 | 
            +
                      "internalType": "address",
         | 
| 1190 | 
            +
                      "name": "target",
         | 
| 1191 | 
            +
                      "type": "address"
         | 
| 1192 | 
            +
                    }
         | 
| 1193 | 
            +
                  ],
         | 
| 1194 | 
            +
                  "name": "isTargetLocked",
         | 
| 1195 | 
            +
                  "outputs": [
         | 
| 1196 | 
            +
                    {
         | 
| 1197 | 
            +
                      "internalType": "bool",
         | 
| 1198 | 
            +
                      "name": "",
         | 
| 1199 | 
            +
                      "type": "bool"
         | 
| 1200 | 
            +
                    }
         | 
| 1201 | 
            +
                  ],
         | 
| 1202 | 
            +
                  "stateMutability": "view",
         | 
| 1203 | 
            +
                  "type": "function"
         | 
| 1204 | 
            +
                },
         | 
| 1205 | 
            +
                {
         | 
| 1206 | 
            +
                  "inputs": [
         | 
| 1207 | 
            +
                    {
         | 
| 1208 | 
            +
                      "internalType": "NftId",
         | 
| 1209 | 
            +
                      "name": "policyNftId",
         | 
| 1210 | 
            +
                      "type": "uint96"
         | 
| 1211 | 
            +
                    }
         | 
| 1212 | 
            +
                  ],
         | 
| 1213 | 
            +
                  "name": "policyIsCloseable",
         | 
| 1214 | 
            +
                  "outputs": [
         | 
| 1215 | 
            +
                    {
         | 
| 1216 | 
            +
                      "internalType": "bool",
         | 
| 1217 | 
            +
                      "name": "isCloseable",
         | 
| 1218 | 
            +
                      "type": "bool"
         | 
| 1219 | 
            +
                    }
         | 
| 1220 | 
            +
                  ],
         | 
| 1221 | 
            +
                  "stateMutability": "view",
         | 
| 1222 | 
            +
                  "type": "function"
         | 
| 1223 | 
            +
                },
         | 
| 1224 | 
            +
                {
         | 
| 1225 | 
            +
                  "inputs": [
         | 
| 1226 | 
            +
                    {
         | 
| 1227 | 
            +
                      "internalType": "NftId",
         | 
| 1228 | 
            +
                      "name": "poolNftId",
         | 
| 1229 | 
            +
                      "type": "uint96"
         | 
| 1230 | 
            +
                    }
         | 
| 1231 | 
            +
                  ],
         | 
| 1232 | 
            +
                  "name": "toBundleKey",
         | 
| 1233 | 
            +
                  "outputs": [
         | 
| 1234 | 
            +
                    {
         | 
| 1235 | 
            +
                      "internalType": "Key32",
         | 
| 1236 | 
            +
                      "name": "",
         | 
| 1237 | 
            +
                      "type": "bytes32"
         | 
| 1238 | 
            +
                    }
         | 
| 1239 | 
            +
                  ],
         | 
| 1240 | 
            +
                  "stateMutability": "pure",
         | 
| 1241 | 
            +
                  "type": "function"
         | 
| 1242 | 
            +
                },
         | 
| 1243 | 
            +
                {
         | 
| 1244 | 
            +
                  "inputs": [
         | 
| 1245 | 
            +
                    {
         | 
| 1246 | 
            +
                      "internalType": "NftId",
         | 
| 1247 | 
            +
                      "name": "componentNftId",
         | 
| 1248 | 
            +
                      "type": "uint96"
         | 
| 1249 | 
            +
                    }
         | 
| 1250 | 
            +
                  ],
         | 
| 1251 | 
            +
                  "name": "toComponentKey",
         | 
| 1252 | 
            +
                  "outputs": [
         | 
| 1253 | 
            +
                    {
         | 
| 1254 | 
            +
                      "internalType": "Key32",
         | 
| 1255 | 
            +
                      "name": "",
         | 
| 1256 | 
            +
                      "type": "bytes32"
         | 
| 1257 | 
            +
                    }
         | 
| 1258 | 
            +
                  ],
         | 
| 1259 | 
            +
                  "stateMutability": "pure",
         | 
| 1260 | 
            +
                  "type": "function"
         | 
| 1261 | 
            +
                },
         | 
| 1262 | 
            +
                {
         | 
| 1263 | 
            +
                  "inputs": [
         | 
| 1264 | 
            +
                    {
         | 
| 1265 | 
            +
                      "internalType": "NftId",
         | 
| 1266 | 
            +
                      "name": "distributionNftId",
         | 
| 1267 | 
            +
                      "type": "uint96"
         | 
| 1268 | 
            +
                    }
         | 
| 1269 | 
            +
                  ],
         | 
| 1270 | 
            +
                  "name": "toDistributionKey",
         | 
| 1271 | 
            +
                  "outputs": [
         | 
| 1272 | 
            +
                    {
         | 
| 1273 | 
            +
                      "internalType": "Key32",
         | 
| 1274 | 
            +
                      "name": "",
         | 
| 1275 | 
            +
                      "type": "bytes32"
         | 
| 1276 | 
            +
                    }
         | 
| 1277 | 
            +
                  ],
         | 
| 1278 | 
            +
                  "stateMutability": "pure",
         | 
| 1279 | 
            +
                  "type": "function"
         | 
| 1280 | 
            +
                },
         | 
| 1281 | 
            +
                {
         | 
| 1282 | 
            +
                  "inputs": [
         | 
| 1283 | 
            +
                    {
         | 
| 1284 | 
            +
                      "internalType": "NftId",
         | 
| 1285 | 
            +
                      "name": "distributorNftId",
         | 
| 1286 | 
            +
                      "type": "uint96"
         | 
| 1287 | 
            +
                    }
         | 
| 1288 | 
            +
                  ],
         | 
| 1289 | 
            +
                  "name": "toDistributorKey",
         | 
| 1290 | 
            +
                  "outputs": [
         | 
| 1291 | 
            +
                    {
         | 
| 1292 | 
            +
                      "internalType": "Key32",
         | 
| 1293 | 
            +
                      "name": "",
         | 
| 1294 | 
            +
                      "type": "bytes32"
         | 
| 1295 | 
            +
                    }
         | 
| 1296 | 
            +
                  ],
         | 
| 1297 | 
            +
                  "stateMutability": "pure",
         | 
| 1298 | 
            +
                  "type": "function"
         | 
| 1299 | 
            +
                },
         | 
| 1300 | 
            +
                {
         | 
| 1301 | 
            +
                  "inputs": [
         | 
| 1302 | 
            +
                    {
         | 
| 1303 | 
            +
                      "internalType": "UFixed",
         | 
| 1304 | 
            +
                      "name": "value",
         | 
| 1305 | 
            +
                      "type": "uint256"
         | 
| 1306 | 
            +
                    }
         | 
| 1307 | 
            +
                  ],
         | 
| 1308 | 
            +
                  "name": "toInt",
         | 
| 1309 | 
            +
                  "outputs": [
         | 
| 1310 | 
            +
                    {
         | 
| 1311 | 
            +
                      "internalType": "uint256",
         | 
| 1312 | 
            +
                      "name": "",
         | 
| 1313 | 
            +
                      "type": "uint256"
         | 
| 1314 | 
            +
                    }
         | 
| 1315 | 
            +
                  ],
         | 
| 1316 | 
            +
                  "stateMutability": "pure",
         | 
| 1317 | 
            +
                  "type": "function"
         | 
| 1318 | 
            +
                },
         | 
| 1319 | 
            +
                {
         | 
| 1320 | 
            +
                  "inputs": [
         | 
| 1321 | 
            +
                    {
         | 
| 1322 | 
            +
                      "internalType": "NftId",
         | 
| 1323 | 
            +
                      "name": "policyNftId",
         | 
| 1324 | 
            +
                      "type": "uint96"
         | 
| 1325 | 
            +
                    }
         | 
| 1326 | 
            +
                  ],
         | 
| 1327 | 
            +
                  "name": "toPolicyKey",
         | 
| 1328 | 
            +
                  "outputs": [
         | 
| 1329 | 
            +
                    {
         | 
| 1330 | 
            +
                      "internalType": "Key32",
         | 
| 1331 | 
            +
                      "name": "",
         | 
| 1332 | 
            +
                      "type": "bytes32"
         | 
| 1333 | 
            +
                    }
         | 
| 1334 | 
            +
                  ],
         | 
| 1335 | 
            +
                  "stateMutability": "pure",
         | 
| 1336 | 
            +
                  "type": "function"
         | 
| 1337 | 
            +
                },
         | 
| 1338 | 
            +
                {
         | 
| 1339 | 
            +
                  "inputs": [
         | 
| 1340 | 
            +
                    {
         | 
| 1341 | 
            +
                      "internalType": "NftId",
         | 
| 1342 | 
            +
                      "name": "poolNftId",
         | 
| 1343 | 
            +
                      "type": "uint96"
         | 
| 1344 | 
            +
                    }
         | 
| 1345 | 
            +
                  ],
         | 
| 1346 | 
            +
                  "name": "toPoolKey",
         | 
| 1347 | 
            +
                  "outputs": [
         | 
| 1348 | 
            +
                    {
         | 
| 1349 | 
            +
                      "internalType": "Key32",
         | 
| 1350 | 
            +
                      "name": "",
         | 
| 1351 | 
            +
                      "type": "bytes32"
         | 
| 1352 | 
            +
                    }
         | 
| 1353 | 
            +
                  ],
         | 
| 1354 | 
            +
                  "stateMutability": "pure",
         | 
| 1355 | 
            +
                  "type": "function"
         | 
| 1356 | 
            +
                },
         | 
| 1357 | 
            +
                {
         | 
| 1358 | 
            +
                  "inputs": [
         | 
| 1359 | 
            +
                    {
         | 
| 1360 | 
            +
                      "internalType": "NftId",
         | 
| 1361 | 
            +
                      "name": "productNftId",
         | 
| 1362 | 
            +
                      "type": "uint96"
         | 
| 1363 | 
            +
                    }
         | 
| 1364 | 
            +
                  ],
         | 
| 1365 | 
            +
                  "name": "toProductKey",
         | 
| 1366 | 
            +
                  "outputs": [
         | 
| 1367 | 
            +
                    {
         | 
| 1368 | 
            +
                      "internalType": "Key32",
         | 
| 1369 | 
            +
                      "name": "",
         | 
| 1370 | 
            +
                      "type": "bytes32"
         | 
| 1371 | 
            +
                    }
         | 
| 1372 | 
            +
                  ],
         | 
| 1373 | 
            +
                  "stateMutability": "pure",
         | 
| 1374 | 
            +
                  "type": "function"
         | 
| 1375 | 
            +
                },
         | 
| 1376 | 
            +
                {
         | 
| 1377 | 
            +
                  "inputs": [
         | 
| 1378 | 
            +
                    {
         | 
| 1379 | 
            +
                      "internalType": "NftId",
         | 
| 1380 | 
            +
                      "name": "distributionNftId",
         | 
| 1381 | 
            +
                      "type": "uint96"
         | 
| 1382 | 
            +
                    },
         | 
| 1383 | 
            +
                    {
         | 
| 1384 | 
            +
                      "internalType": "string",
         | 
| 1385 | 
            +
                      "name": "referralCode",
         | 
| 1386 | 
            +
                      "type": "string"
         | 
| 1387 | 
            +
                    }
         | 
| 1388 | 
            +
                  ],
         | 
| 1389 | 
            +
                  "name": "toReferralId",
         | 
| 1390 | 
            +
                  "outputs": [
         | 
| 1391 | 
            +
                    {
         | 
| 1392 | 
            +
                      "internalType": "ReferralId",
         | 
| 1393 | 
            +
                      "name": "referralId",
         | 
| 1394 | 
            +
                      "type": "bytes8"
         | 
| 1395 | 
            +
                    }
         | 
| 1396 | 
            +
                  ],
         | 
| 1397 | 
            +
                  "stateMutability": "pure",
         | 
| 1398 | 
            +
                  "type": "function"
         | 
| 1399 | 
            +
                },
         | 
| 1400 | 
            +
                {
         | 
| 1401 | 
            +
                  "inputs": [
         | 
| 1402 | 
            +
                    {
         | 
| 1403 | 
            +
                      "internalType": "uint256",
         | 
| 1404 | 
            +
                      "name": "value",
         | 
| 1405 | 
            +
                      "type": "uint256"
         | 
| 1406 | 
            +
                    },
         | 
| 1407 | 
            +
                    {
         | 
| 1408 | 
            +
                      "internalType": "int8",
         | 
| 1409 | 
            +
                      "name": "exp",
         | 
| 1410 | 
            +
                      "type": "int8"
         | 
| 1411 | 
            +
                    }
         | 
| 1412 | 
            +
                  ],
         | 
| 1413 | 
            +
                  "name": "toUFixed",
         | 
| 1414 | 
            +
                  "outputs": [
         | 
| 1415 | 
            +
                    {
         | 
| 1416 | 
            +
                      "internalType": "UFixed",
         | 
| 1417 | 
            +
                      "name": "",
         | 
| 1418 | 
            +
                      "type": "uint256"
         | 
| 1419 | 
            +
                    }
         | 
| 1420 | 
            +
                  ],
         | 
| 1421 | 
            +
                  "stateMutability": "pure",
         | 
| 1422 | 
            +
                  "type": "function"
         | 
| 1423 | 
            +
                }
         | 
| 1424 | 
            +
              ],
         | 
| 1425 | 
            +
              "bytecode": "0x60806040525f805460ff191690553480156017575f80fd5b50613e51806100255f395ff3fe608060405234801561000f575f80fd5b506004361061023f575f3560e01c806378ae935011610135578063b82d7ef5116100b4578063dd26287a11610079578063dd26287a14610631578063de7b5d1414610644578063f0ea17c314610659578063f7f318d314610679578063febe92af1461068c575f80fd5b8063b82d7ef5146105a3578063bd7d9d85146105cd578063cd55e51b146105ed578063d06458c614610600578063d4cda0d814610620575f80fd5b80638eb9000d116100fa5780638eb9000d146104d65780639096a1f3146104e9578063a310e2a3146104fc578063a5961b4c14610527578063a7ef3d2114610583575f80fd5b806378ae9350146104755780637bfd3217146104885780637e54602a1461049b5780638129fc1c146104ae578063887b1fa9146104b6575f80fd5b80633f093cd6116101c15780635da89402116101865780635da894021461041457806364eb3a9b1461042757806364fc31421461043a5780636791f7ab1461044d57806375d357df14610462575f80fd5b80633f093cd61461038257806344aa6836146103ae5780634793b4ab146103c15780634fb784f5146103e157806357f80bbf146103f4575f80fd5b8063228e42ec11610207578063228e42ec146102f957806326decd401461030c57806327b1d7921461032f57806335898f5d1461034f57806339bb60cd14610362575f80fd5b80630232ca491461024357806309648a9d146102735780630b5d931c146102985780631488c845146102b85780631d3be477146102d9575b5f80fd5b6102566102513660046124fb565b6106ac565b6040516001600160601b0390911681526020015b60405180910390f35b610286610281366004612516565b610726565b60405160ff909116815260200161026a565b6102ab6102a63660046124fb565b61079b565b60405161026a919061252d565b6102cb6102c636600461260f565b610849565b60405190815260200161026a565b6102ec6102e7366004612657565b6108c5565b60405161026a91906126a0565b6102566103073660046124fb565b610a09565b61031f61031a36600461274e565b610a42565b604051901515815260200161026a565b61034261033d3660046124fb565b610b20565b60405161026a9190612769565b6102cb61035d3660046124fb565b610be4565b6103756103703660046127d5565b610c7b565b60405161026a9190612808565b610395610390366004612a07565b610dc5565b6040516001600160c01b0319909116815260200161026a565b6102cb6103bc366004612516565b610e3f565b6103d46103cf3660046124fb565b610e79565b60405161026a9190612a93565b6102cb6103ef3660046124fb565b610f1a565b6104076104023660046124fb565b610f46565b60405161026a9190612b1e565b6102866104223660046127d5565b610fe7565b6102cb6104353660046124fb565b6110df565b61031f610448366004612c21565b61110b565b61046061045b36600461274e565b6111fa565b005b61031f6104703660046124fb565b6112cd565b610286610483366004612c5c565b61154e565b6102cb6104963660046124fb565b6115ad565b6102cb6104a93660046124fb565b6115d9565b610460611605565b6104c96104c4366004612657565b611633565b60405161026a9190612c88565b6102566104e43660046124fb565b611754565b6102866104f73660046124fb565b61178d565b61050f61050a3660046124fb565b611806565b6040516001600160a01b03909116815260200161026a565b61053a610535366004612516565b6118ae565b60405161026a91905f60808201905060ff835116825260ff602084015116602083015263ffffffff604084015116604083015263ffffffff606084015116606083015292915050565b610596610591366004612c5c565b611938565b60405161026a9190612cbd565b6105b66105b1366004612657565b611a85565b6040805192835260ff90911660208301520161026a565b6105e06105db3660046124fb565b611d21565b60405161026a9190612d63565b61031f6105fb366004612c21565b611e41565b61061361060e366004612657565b611ef5565b60405161026a9190612ef2565b6001546001600160a01b031661050f565b6102cb61063f3660046124fb565b61205a565b5f5461010090046001600160a01b031661050f565b61066c6106673660046124fb565b612086565b60405161026a9190612f93565b6102cb6106873660046124fb565b61214f565b61069f61069a36600461301d565b61217b565b60405161026a9190613038565b600154604051630232ca4960e01b81526001600160601b03831660048201525f916001600160a01b031690630232ca49906024015b602060405180830381865afa1580156106fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107209190613116565b92915050565b60015460405163296586d360e21b8152600481018390525f916001600160a01b03169063a5961b4c90602401608060405180830381865afa15801561076d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107919190613166565b6020015192915050565b6107a3612329565b6001545f906001600160a01b03166354f6127f6107bf856115ad565b6040518263ffffffff1660e01b81526004016107dd91815260200190565b5f60405180830381865afa1580156107f7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261081e919081019061321c565b805190915015610843578080602001905181019061083c919061327c565b9392505050565b50919050565b604051631488c84560e01b8152600481018390525f82810b60248301529073__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c84590604401602060405180830381865af41580156108a1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083c919061333d565b6040805160e0810182525f8082526060602083018190529282018190528282018190526080820181905260a082015260c08101919091526001546040516355ee627560e01b81526001600160c01b0319841660048201525f916001600160a01b0316906354f6127f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590602401602060405180830381865af4158015610968573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098c919061333d565b6040518263ffffffff1660e01b81526004016109aa91815260200190565b5f60405180830381865afa1580156109c4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109eb919081019061321c565b805190915015610843578080602001905181019061083c9190613371565b6001546040516308a390bb60e21b81526001600160601b03831660048201525f916001600160a01b03169063228e42ec906024016106e1565b5f8060019054906101000a90046001600160a01b03166001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab79190613453565b604051629b7b3560e61b81526001600160a01b03848116600483015291909116906326decd4090602401602060405180830381865afa158015610afc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610720919061347d565b6040805160a0810182525f80825260208201819052606092820183905291810182905260808101919091526001545f906001600160a01b03166354f6127f610b67856115d9565b6040518263ffffffff1660e01b8152600401610b8591815260200190565b5f60405180830381865afa158015610b9f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610bc6919081019061321c565b805190915015610843578080602001905181019061083c91906134a1565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416600e5b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015b602060405180830381865af4158015610c57573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610720919061333d565b604080516080810182525f80825260208201819052606092820183905291810191909152600154604051635927341160e01b815262ffffff841660048201526001600160601b03851660248201525f916001600160a01b0316906354f6127f9073__$0f9396e6447a4be57af83e53f51d234633$__90635927341190604401602060405180830381865af4158015610d15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d39919061333d565b6040518263ffffffff1660e01b8152600401610d5791815260200190565b5f60405180830381865afa158015610d71573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d98919081019061321c565b805190915015610dbe5780806020019051810190610db69190613565565b915050610720565b5092915050565b604051631f849e6b60e11b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__90633f093cd690610e00908690869060040161360c565b602060405180830381865af4158015610e1b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083c919061362d565b604051632255341b60e11b8152600481018290525f9073__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401610c3c565b610e81612433565b6001545f906001600160a01b03166354f6127f610e9d8561214f565b6040518263ffffffff1660e01b8152600401610ebb91815260200190565b5f60405180830381865afa158015610ed5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610efc919081019061321c565b805190915015610843578080602001905181019061083c9190613648565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416600b610c0c565b610f4e61248a565b6001545f906001600160a01b03166354f6127f610f6a8561205a565b6040518263ffffffff1660e01b8152600401610f8891815260200190565b5f60405180830381865afa158015610fa2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610fc9919081019061321c565b805190915015610843578080602001905181019061083c9190613717565b600154604051635927341160e01b815262ffffff831660048201526001600160601b03841660248201525f916001600160a01b0316906309648a9d9073__$0f9396e6447a4be57af83e53f51d234633$__906359273411906044015b602060405180830381865af415801561105e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611082919061333d565b6040518263ffffffff1660e01b81526004016110a091815260200190565b602060405180830381865afa1580156110bb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083c91906137e9565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b0384166015610c0c565b5f8060019054906101000a90046001600160a01b03166001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111809190613453565b60405163327e18a160e11b81526001600160a01b0385811660048301526001600160401b038516602483015291909116906364fc3142906044015b602060405180830381865afa1580156111d6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083c919061347d565b5f5460ff161561121d5760405163ae9eff1b60e01b815260040160405180910390fd5b5f80546001600160a01b038084166101009081026001600160a81b0319909316929092176001179283905560408051631a99b41b60e31b8152905192909304169163d4cda0d89160048083019260209291908290030181865afa158015611286573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112aa9190613453565b600180546001600160a01b0319166001600160a01b039290921691909117905550565b5f806112d883611d21565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611334573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611358919061347d565b1561136557505f92915050565b6101c081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156113c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e4919061347d565b156113f157505f92915050565b610200810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af415801561144c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611470919061347d565b1561147d57505f92915050565b61016081015161ffff161561149457505f92915050565b6114a781610180015182608001516122c9565b156114b55750600192915050565b61153873__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156114ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115239190613804565b826101e0015164ffffffffff90811691161090565b1561154557505f92915050565b50600192915050565b600154604051637d56159160e11b815261ffff831660048201526001600160601b03841660248201525f916001600160a01b0316906309648a9d9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611043565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416600c610c0c565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416601c610c0c565b5f5460ff16156116285760405163ae9eff1b60e01b815260040160405180910390fd5b611631336111fa565b565b604080518082019091525f8152606060208201526001546040516355ee627560e01b81526001600160c01b0319841660048201525f916001600160a01b0316906354f6127f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af41580156116b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116d7919061333d565b6040518263ffffffff1660e01b81526004016116f591815260200190565b5f60405180830381865afa15801561170f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611736919081019061321c565b805190915015610843578080602001905181019061083c919061381f565b600154604051638eb9000d60e01b81526001600160601b03831660048201525f916001600160a01b031690638eb9000d906024016106e1565b6001545f906001600160a01b03166309648a9d6117a9846110df565b6040518263ffffffff1660e01b81526004016117c791815260200190565b602060405180830381865afa1580156117e2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072091906137e9565b6001545f9081906001600160a01b03166354f6127f61182485610f1a565b6040518263ffffffff1660e01b815260040161184291815260200190565b5f60405180830381865afa15801561185c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611883919081019061321c565b805190915015610843575f818060200190518101906118a291906138a7565b60600151949350505050565b604080516080810182525f808252602082018190528183018190526060820152600154915163296586d360e21b81526004810184905290916001600160a01b03169063a5961b4c90602401608060405180830381865afa158015611914573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107209190613166565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820181905260a082015260c0810191909152600154604051637d56159160e11b815261ffff841660048201526001600160601b03851660248201525f916001600160a01b0316906354f6127f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401602060405180830381865af41580156119e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a08919061333d565b6040518263ffffffff1660e01b8152600401611a2691815260200190565b5f60405180830381865afa158015611a40573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a67919081019061321c565b805190915015610dbe5780806020019051810190610db6919061397f565b5f805f611a91846108c5565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015611aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b12919061347d565b15611b8f5773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b82919061333d565b60645b9250925050915091565b611c118160a0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611bde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c029190613804565b64ffffffffff90811691161090565b15611c885773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c81919061333d565b606e611b85565b806060015163ffffffff16816080015163ffffffff1610611d155773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611cea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d0e919061333d565b6078611b85565b6040810151600a611b85565b60408051610220810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018190526101208201526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e081018290526102008101919091526001545f906001600160a01b03166354f6127f611dc4856110df565b6040518263ffffffff1660e01b8152600401611de291815260200190565b5f60405180830381865afa158015611dfc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611e23919081019061321c565b805190915015610843578080602001905181019061083c9190613a68565b5f8060019054906101000a90046001600160a01b03166001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb69190613453565b60405163cd55e51b60e01b81526001600160a01b0385811660048301526001600160401b0385166024830152919091169063cd55e51b906044016111bb565b611f4d604051806101200160405280606081526020015f81526020015f81526020015f81526020015f63ffffffff1681526020015f63ffffffff1681526020015f151581526020015f15158152602001606081525090565b6001546040516355ee627560e01b81526001600160c01b0319841660048201525f916001600160a01b0316906354f6127f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590602401602060405180830381865af4158015611fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fdd919061333d565b6040518263ffffffff1660e01b8152600401611ffb91815260200190565b5f60405180830381865afa158015612015573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261203c919081019061321c565b805190915015610843578080602001905181019061083c9190613c0e565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416600f610c0c565b6040805160c08101825260608082525f602083018190529282018390528082018390526080820183905260a08201526001549091906001600160a01b03166354f6127f6120d285610f1a565b6040518263ffffffff1660e01b81526004016120f091815260200190565b5f60405180830381865afa15801561210a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612131919081019061321c565b805190915015610843578080602001905181019061083c91906138a7565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416601e610c0c565b60408051610100810182525f808252606060208301819052928201819052828201839052608082019290925260a0810182905260c0810182905260e0810191909152600154604051630f37f38f60e41b81526001600160401b03841660048201525f916001600160a01b0316906354f6127f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015612228573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224c919061333d565b6040518263ffffffff1660e01b815260040161226a91815260200190565b5f60405180830381865afa158015612284573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526122ab919081019061321c565b805190915015610843578080602001905181019061083c9190613d07565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d90604401602060405180830381865af41580156111d6573d5f803e3d5ffd5b6040518061012001604052805f6001600160601b031681526020015f6001600160601b0316815260200161236e60405180604001604052805f81526020015f81525090565b815260200161238e60405180604001604052805f81526020015f81525090565b81526020016123ae60405180604001604052805f81526020015f81525090565b81526020016123ce60405180604001604052805f81526020015f81525090565b81526020016123ee60405180604001604052805f81526020015f81525090565b815260200161240e60405180604001604052805f81526020015f81525090565b815260200161242e60405180604001604052805f81526020015f81525090565b905290565b6040518060c001604052805f6001600160601b0316815260200161246860405180604001604052805f81526020015f81525090565b81526060602082018190525f6040830181905290820181905260809091015290565b60408051610160810182525f8082526020808301829052828401829052606083018290526080830182905260a0830182905260c0830182905260e083018290528351808501909452818452830152906101008201906123ee565b6001600160601b03811681146124f8575f80fd5b50565b5f6020828403121561250b575f80fd5b813561083c816124e4565b5f60208284031215612526575f80fd5b5035919050565b81516001600160601b0316815260208083015161020083019161255a908401826001600160601b03169052565b506040830151612577604084018280518252602090810151910152565b50606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a0830151805161010084015260208101516101208401525060c0830151805161014084015260208101516101608401525060e0830151805161018084015260208101516101a08401525061010083015180516101c084015260208101516101e0840152610dbe565b5f8060408385031215612620575f80fd5b8235915060208301355f81900b8114612637575f80fd5b809150509250929050565b6001600160c01b0319811681146124f8575f80fd5b5f60208284031215612667575f80fd5b813561083c81612642565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201525f602083015160e060408401526126cf610100840182612672565b90506040840151606084015263ffffffff6060850151166080840152608084015161270260a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e08501526127318282612672565b95945050505050565b6001600160a01b03811681146124f8575f80fd5b5f6020828403121561275e575f80fd5b813561083c8161273a565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f604083015160a060608401526127a660c0840182612672565b90506001600160601b03606085015116608084015263ffffffff60808501511660a08401528091505092915050565b5f80604083850312156127e6575f80fd5b82356127f1816124e4565b9150602083013562ffffff81168114612637575f80fd5b6020815261ffff82511660208201526001600160601b0360208301511660408201525f60408301516080606084015261284460a0840182612672565b905064ffffffffff60608501511660808401528091505092915050565b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b038111828210171561289757612897612861565b60405290565b604080519081016001600160401b038111828210171561289757612897612861565b60405161012081016001600160401b038111828210171561289757612897612861565b60405160e081016001600160401b038111828210171561289757612897612861565b60405160a081016001600160401b038111828210171561289757612897612861565b60405160c081016001600160401b038111828210171561289757612897612861565b60405161016081016001600160401b038111828210171561289757612897612861565b60405161022081016001600160401b038111828210171561289757612897612861565b60405161010081016001600160401b038111828210171561289757612897612861565b604051601f8201601f191681016001600160401b03811182821017156129d9576129d9612861565b604052919050565b5f6001600160401b038211156129f9576129f9612861565b50601f01601f191660200190565b5f8060408385031215612a18575f80fd5b8235612a23816124e4565b915060208301356001600160401b03811115612a3d575f80fd5b8301601f81018513612a4d575f80fd5b8035612a60612a5b826129e1565b6129b1565b818152866020838501011115612a74575f80fd5b816020840160208301375f602083830101528093505050509250929050565b602081526001600160601b0382511660208201525f6020830151612ac4604084018280518252602090810151910152565b50604083015160e06080840152612adf610100840182612672565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b81516001600160601b031681526101c081016020830151612b4a60208401826001600160401b03169052565b506040830151612b6560408401826001600160601b03169052565b506060830151612b79606084018215159052565b506080830151612b8d608084018215159052565b5060a0830151612ba160a084018215159052565b5060c083015160c083015260e083015160e0830152610100830151612bd461010084018280518252602090810151910152565b506101208301518051610140840152602081015161016084015250610140830151805161018084015260208101516101a0840152610dbe565b6001600160401b03811681146124f8575f80fd5b5f8060408385031215612c32575f80fd5b8235612c3d8161273a565b9150602083013561263781612c0d565b61ffff811681146124f8575f80fd5b5f8060408385031215612c6d575f80fd5b8235612c78816124e4565b9150602083013561263781612c4d565b602081526001600160601b0382511660208201525f6020830151604080840152612cb56060840182612672565b949350505050565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f6040830151612cf9606084018260ff169052565b50606083015160ff8116608084015250608083015160e060a0840152612d23610100840182612672565b905060a0840151601f198483030160c0850152612d408282612672565b91505060c0840151612d5b60e085018264ffffffffff169052565b509392505050565b60208152612d7d6020820183516001600160601b03169052565b5f6020830151612d9860408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e083015164ffffffffff811661010084015250610100830151610220610120840152612e35610240840182612672565b9050610120840151601f1984830301610140850152612e548282612672565b915050610140840151612e6e61016085018261ffff169052565b5061016084015161ffff8116610180850152506101808401516001600160601b0381166101a0850152506101a08401516001600160601b0381166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff81166102008501525061020084015164ffffffffff8116610220850152612d5b565b602081525f82516101206020840152612f0f610140840182612672565b90506020840151604084015260408401516060840152606084015160808401526080840151612f4660a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015180151560e08501525060e084015180151561010085015250610100840151838203601f19016101208501526127318282612672565b602081525f825160c06020840152612fae60e0840182612672565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161300160a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526127318282612672565b5f6020828403121561302d575f80fd5b813561083c81612c0d565b602081526130526020820183516001600160601b03169052565b5f6020830151610100604084015261306e610120840182612672565b9050604084015161308a60608501826001600160601b03169052565b506060840151838203601f190160808501526130a68282612672565b9150506080840151601f198483030160a08501526130c48282612672565b91505060a08401516130df60c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e0840151801515610100850152612d5b565b8051613111816124e4565b919050565b5f60208284031215613126575f80fd5b815161083c816124e4565b60ff811681146124f8575f80fd5b805161311181613131565b63ffffffff811681146124f8575f80fd5b80516131118161314a565b5f6080828403128015613177575f80fd5b50613180612875565b825161318b81613131565b8152602083015161319b81613131565b602082015260408301516131ae8161314a565b604082015260608301516131c18161314a565b60608201529392505050565b5f82601f8301126131dc575f80fd5b8151602083015f6131ef612a5b846129e1565b9050828152858383011115613202575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f6020828403121561322c575f80fd5b81516001600160401b03811115613241575f80fd5b612cb5848285016131cd565b5f6040828403121561325d575f80fd5b61326561289d565b825181526020928301519281019290925250919050565b5f61020082840312801561328e575f80fd5b506132976128bf565b6132a083613106565b81526132ae60208401613106565b60208201526132c0846040850161324d565b60408201526132d2846080850161324d565b60608201526132e48460c0850161324d565b60808201526132f784610100850161324d565b60a082015261330a84610140850161324d565b60c082015261331d84610180850161324d565b60e0820152613330846101c0850161324d565b6101008201529392505050565b5f6020828403121561334d575f80fd5b5051919050565b64ffffffffff811681146124f8575f80fd5b805161311181613354565b5f60208284031215613381575f80fd5b81516001600160401b03811115613396575f80fd5b820160e081850312156133a7575f80fd5b6133af6128e2565b6133b882613106565b815260208201516001600160401b038111156133d2575f80fd5b6133de868285016131cd565b602083015250604082810151908201526133fa6060830161315b565b606082015261340b6080830161315b565b608082015261341c60a08301613366565b60a082015260c08201516001600160401b03811115613439575f80fd5b613445868285016131cd565b60c083015250949350505050565b5f60208284031215613463575f80fd5b815161083c8161273a565b80518015158114613111575f80fd5b5f6020828403121561348d575f80fd5b61083c8261346e565b805161311181612642565b5f602082840312156134b1575f80fd5b81516001600160401b038111156134c6575f80fd5b820160a081850312156134d7575f80fd5b6134df612904565b81516134ea81612642565b81526134f86020830161346e565b602082015260408201516001600160401b03811115613515575f80fd5b613521868285016131cd565b6040830152506060820151613535816124e4565b6060820152608091909101519061354b8261314a565b60808101919091529392505050565b805161311181612c4d565b5f60208284031215613575575f80fd5b81516001600160401b0381111561358a575f80fd5b82016080818503121561359b575f80fd5b6135a3612875565b81516135ae81612c4d565b815260208201516135be816124e4565b602082015260408201516001600160401b038111156135db575f80fd5b6135e7868285016131cd565b604083015250606082015191506135fd82613354565b60608101919091529392505050565b6001600160601b0383168152604060208201525f612cb56040830184612672565b5f6020828403121561363d575f80fd5b815161083c81612642565b5f60208284031215613658575f80fd5b81516001600160401b0381111561366d575f80fd5b820160e0818503121561367e575f80fd5b613686612926565b8151613691816124e4565b81526136a0856020840161324d565b602082015260608201516001600160401b038111156136bd575f80fd5b6136c9868285016131cd565b60408301525060808201516136dd81613354565b60608201526136ee60a08301613366565b60808201526136ff60c08301613366565b60a0820152949350505050565b805161311181612c0d565b5f6101c0828403128015613729575f80fd5b50613732612948565b61373b83613106565b81526137496020840161370c565b602082015261375a60408401613106565b604082015261376b6060840161346e565b606082015261377c6080840161346e565b608082015261378d60a0840161346e565b60a082015260c0838101519082015260e080840151908201526137b484610100850161324d565b6101008201526137c884610140850161324d565b6101208201526137dc84610180850161324d565b6101408201529392505050565b5f602082840312156137f9575f80fd5b815161083c81613131565b5f60208284031215613814575f80fd5b815161083c81613354565b5f6020828403121561382f575f80fd5b81516001600160401b03811115613844575f80fd5b820160408185031215613855575f80fd5b61385d61289d565b8151613868816124e4565b815260208201516001600160401b03811115613882575f80fd5b61388e868285016131cd565b602083015250949350505050565b80516131118161273a565b5f602082840312156138b7575f80fd5b81516001600160401b038111156138cc575f80fd5b820160c081850312156138dd575f80fd5b6138e5612926565b81516001600160401b038111156138fa575f80fd5b613906868285016131cd565b82525061391560208301613106565b60208201526139266040830161389c565b60408201526139376060830161389c565b60608201526139486080830161389c565b608082015260a08201516001600160401b03811115613965575f80fd5b613971868285016131cd565b60a083015250949350505050565b5f6020828403121561398f575f80fd5b81516001600160401b038111156139a4575f80fd5b820160e081850312156139b5575f80fd5b6139bd6128e2565b6139c682613106565b81526139d460208301613106565b60208201526139e56040830161313f565b60408201526139f66060830161313f565b606082015260808201516001600160401b03811115613a13575f80fd5b613a1f868285016131cd565b60808301525060a08201516001600160401b03811115613a3d575f80fd5b613a49868285016131cd565b60a083015250613a5b60c08301613366565b60c0820152949350505050565b5f60208284031215613a78575f80fd5b81516001600160401b03811115613a8d575f80fd5b82016102208185031215613a9f575f80fd5b613aa761296b565b613ab082613106565b8152613abe60208301613106565b6020820152613acf60408301613496565b6040820152613ae060608301613496565b6060820152613af160808301613106565b6080820152613b0260a08301613106565b60a0820152613b1360c08301613106565b60c0820152613b2460e08301613366565b60e08201526101008201516001600160401b03811115613b42575f80fd5b613b4e868285016131cd565b610100830152506101208201516001600160401b03811115613b6e575f80fd5b613b7a868285016131cd565b61012083015250613b8e610140830161355a565b610140820152613ba1610160830161355a565b610160820152613bb46101808301613106565b610180820152613bc76101a08301613106565b6101a0820152613bda6101c08301613366565b6101c0820152613bed6101e08301613366565b6101e0820152613c006102008301613366565b610200820152949350505050565b5f60208284031215613c1e575f80fd5b81516001600160401b03811115613c33575f80fd5b82016101208185031215613c45575f80fd5b613c4d6128bf565b81516001600160401b03811115613c62575f80fd5b613c6e868285016131cd565b825250602082810151908201526040808301519082015260608083015190820152613c9b6080830161315b565b6080820152613cac60a0830161315b565b60a0820152613cbd60c0830161346e565b60c0820152613cce60e0830161346e565b60e08201526101008201516001600160401b03811115613cec575f80fd5b613cf8868285016131cd565b61010083015250949350505050565b5f60208284031215613d17575f80fd5b81516001600160401b03811115613d2c575f80fd5b82016101008185031215613d3e575f80fd5b613d4661298e565b613d4f82613106565b815260208201516001600160401b03811115613d69575f80fd5b613d75868285016131cd565b602083015250613d8760408301613106565b604082015260608201516001600160401b03811115613da4575f80fd5b613db0868285016131cd565b60608301525060808201516001600160401b03811115613dce575f80fd5b613dda868285016131cd565b608083015250613dec60a08301613366565b60a0820152613dfd60c08301613366565b60c0820152613e0e60e0830161346e565b60e082015294935050505056fea2646970667358221220ba9ae634688e868942ae4c444e2c8487109b1556ff933cbc7338c3ab9340724864736f6c634300081a0033",
         | 
| 1426 | 
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061023f575f3560e01c806378ae935011610135578063b82d7ef5116100b4578063dd26287a11610079578063dd26287a14610631578063de7b5d1414610644578063f0ea17c314610659578063f7f318d314610679578063febe92af1461068c575f80fd5b8063b82d7ef5146105a3578063bd7d9d85146105cd578063cd55e51b146105ed578063d06458c614610600578063d4cda0d814610620575f80fd5b80638eb9000d116100fa5780638eb9000d146104d65780639096a1f3146104e9578063a310e2a3146104fc578063a5961b4c14610527578063a7ef3d2114610583575f80fd5b806378ae9350146104755780637bfd3217146104885780637e54602a1461049b5780638129fc1c146104ae578063887b1fa9146104b6575f80fd5b80633f093cd6116101c15780635da89402116101865780635da894021461041457806364eb3a9b1461042757806364fc31421461043a5780636791f7ab1461044d57806375d357df14610462575f80fd5b80633f093cd61461038257806344aa6836146103ae5780634793b4ab146103c15780634fb784f5146103e157806357f80bbf146103f4575f80fd5b8063228e42ec11610207578063228e42ec146102f957806326decd401461030c57806327b1d7921461032f57806335898f5d1461034f57806339bb60cd14610362575f80fd5b80630232ca491461024357806309648a9d146102735780630b5d931c146102985780631488c845146102b85780631d3be477146102d9575b5f80fd5b6102566102513660046124fb565b6106ac565b6040516001600160601b0390911681526020015b60405180910390f35b610286610281366004612516565b610726565b60405160ff909116815260200161026a565b6102ab6102a63660046124fb565b61079b565b60405161026a919061252d565b6102cb6102c636600461260f565b610849565b60405190815260200161026a565b6102ec6102e7366004612657565b6108c5565b60405161026a91906126a0565b6102566103073660046124fb565b610a09565b61031f61031a36600461274e565b610a42565b604051901515815260200161026a565b61034261033d3660046124fb565b610b20565b60405161026a9190612769565b6102cb61035d3660046124fb565b610be4565b6103756103703660046127d5565b610c7b565b60405161026a9190612808565b610395610390366004612a07565b610dc5565b6040516001600160c01b0319909116815260200161026a565b6102cb6103bc366004612516565b610e3f565b6103d46103cf3660046124fb565b610e79565b60405161026a9190612a93565b6102cb6103ef3660046124fb565b610f1a565b6104076104023660046124fb565b610f46565b60405161026a9190612b1e565b6102866104223660046127d5565b610fe7565b6102cb6104353660046124fb565b6110df565b61031f610448366004612c21565b61110b565b61046061045b36600461274e565b6111fa565b005b61031f6104703660046124fb565b6112cd565b610286610483366004612c5c565b61154e565b6102cb6104963660046124fb565b6115ad565b6102cb6104a93660046124fb565b6115d9565b610460611605565b6104c96104c4366004612657565b611633565b60405161026a9190612c88565b6102566104e43660046124fb565b611754565b6102866104f73660046124fb565b61178d565b61050f61050a3660046124fb565b611806565b6040516001600160a01b03909116815260200161026a565b61053a610535366004612516565b6118ae565b60405161026a91905f60808201905060ff835116825260ff602084015116602083015263ffffffff604084015116604083015263ffffffff606084015116606083015292915050565b610596610591366004612c5c565b611938565b60405161026a9190612cbd565b6105b66105b1366004612657565b611a85565b6040805192835260ff90911660208301520161026a565b6105e06105db3660046124fb565b611d21565b60405161026a9190612d63565b61031f6105fb366004612c21565b611e41565b61061361060e366004612657565b611ef5565b60405161026a9190612ef2565b6001546001600160a01b031661050f565b6102cb61063f3660046124fb565b61205a565b5f5461010090046001600160a01b031661050f565b61066c6106673660046124fb565b612086565b60405161026a9190612f93565b6102cb6106873660046124fb565b61214f565b61069f61069a36600461301d565b61217b565b60405161026a9190613038565b600154604051630232ca4960e01b81526001600160601b03831660048201525f916001600160a01b031690630232ca49906024015b602060405180830381865afa1580156106fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107209190613116565b92915050565b60015460405163296586d360e21b8152600481018390525f916001600160a01b03169063a5961b4c90602401608060405180830381865afa15801561076d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107919190613166565b6020015192915050565b6107a3612329565b6001545f906001600160a01b03166354f6127f6107bf856115ad565b6040518263ffffffff1660e01b81526004016107dd91815260200190565b5f60405180830381865afa1580156107f7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261081e919081019061321c565b805190915015610843578080602001905181019061083c919061327c565b9392505050565b50919050565b604051631488c84560e01b8152600481018390525f82810b60248301529073__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c84590604401602060405180830381865af41580156108a1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083c919061333d565b6040805160e0810182525f8082526060602083018190529282018190528282018190526080820181905260a082015260c08101919091526001546040516355ee627560e01b81526001600160c01b0319841660048201525f916001600160a01b0316906354f6127f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590602401602060405180830381865af4158015610968573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098c919061333d565b6040518263ffffffff1660e01b81526004016109aa91815260200190565b5f60405180830381865afa1580156109c4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109eb919081019061321c565b805190915015610843578080602001905181019061083c9190613371565b6001546040516308a390bb60e21b81526001600160601b03831660048201525f916001600160a01b03169063228e42ec906024016106e1565b5f8060019054906101000a90046001600160a01b03166001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab79190613453565b604051629b7b3560e61b81526001600160a01b03848116600483015291909116906326decd4090602401602060405180830381865afa158015610afc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610720919061347d565b6040805160a0810182525f80825260208201819052606092820183905291810182905260808101919091526001545f906001600160a01b03166354f6127f610b67856115d9565b6040518263ffffffff1660e01b8152600401610b8591815260200190565b5f60405180830381865afa158015610b9f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610bc6919081019061321c565b805190915015610843578080602001905181019061083c91906134a1565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416600e5b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015b602060405180830381865af4158015610c57573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610720919061333d565b604080516080810182525f80825260208201819052606092820183905291810191909152600154604051635927341160e01b815262ffffff841660048201526001600160601b03851660248201525f916001600160a01b0316906354f6127f9073__$0f9396e6447a4be57af83e53f51d234633$__90635927341190604401602060405180830381865af4158015610d15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d39919061333d565b6040518263ffffffff1660e01b8152600401610d5791815260200190565b5f60405180830381865afa158015610d71573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d98919081019061321c565b805190915015610dbe5780806020019051810190610db69190613565565b915050610720565b5092915050565b604051631f849e6b60e11b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__90633f093cd690610e00908690869060040161360c565b602060405180830381865af4158015610e1b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083c919061362d565b604051632255341b60e11b8152600481018290525f9073__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401610c3c565b610e81612433565b6001545f906001600160a01b03166354f6127f610e9d8561214f565b6040518263ffffffff1660e01b8152600401610ebb91815260200190565b5f60405180830381865afa158015610ed5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610efc919081019061321c565b805190915015610843578080602001905181019061083c9190613648565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416600b610c0c565b610f4e61248a565b6001545f906001600160a01b03166354f6127f610f6a8561205a565b6040518263ffffffff1660e01b8152600401610f8891815260200190565b5f60405180830381865afa158015610fa2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610fc9919081019061321c565b805190915015610843578080602001905181019061083c9190613717565b600154604051635927341160e01b815262ffffff831660048201526001600160601b03841660248201525f916001600160a01b0316906309648a9d9073__$0f9396e6447a4be57af83e53f51d234633$__906359273411906044015b602060405180830381865af415801561105e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611082919061333d565b6040518263ffffffff1660e01b81526004016110a091815260200190565b602060405180830381865afa1580156110bb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083c91906137e9565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b0384166015610c0c565b5f8060019054906101000a90046001600160a01b03166001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111809190613453565b60405163327e18a160e11b81526001600160a01b0385811660048301526001600160401b038516602483015291909116906364fc3142906044015b602060405180830381865afa1580156111d6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083c919061347d565b5f5460ff161561121d5760405163ae9eff1b60e01b815260040160405180910390fd5b5f80546001600160a01b038084166101009081026001600160a81b0319909316929092176001179283905560408051631a99b41b60e31b8152905192909304169163d4cda0d89160048083019260209291908290030181865afa158015611286573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112aa9190613453565b600180546001600160a01b0319166001600160a01b039290921691909117905550565b5f806112d883611d21565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611334573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611358919061347d565b1561136557505f92915050565b6101c081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156113c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e4919061347d565b156113f157505f92915050565b610200810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af415801561144c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611470919061347d565b1561147d57505f92915050565b61016081015161ffff161561149457505f92915050565b6114a781610180015182608001516122c9565b156114b55750600192915050565b61153873__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156114ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115239190613804565b826101e0015164ffffffffff90811691161090565b1561154557505f92915050565b50600192915050565b600154604051637d56159160e11b815261ffff831660048201526001600160601b03841660248201525f916001600160a01b0316906309648a9d9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611043565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416600c610c0c565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416601c610c0c565b5f5460ff16156116285760405163ae9eff1b60e01b815260040160405180910390fd5b611631336111fa565b565b604080518082019091525f8152606060208201526001546040516355ee627560e01b81526001600160c01b0319841660048201525f916001600160a01b0316906354f6127f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af41580156116b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116d7919061333d565b6040518263ffffffff1660e01b81526004016116f591815260200190565b5f60405180830381865afa15801561170f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611736919081019061321c565b805190915015610843578080602001905181019061083c919061381f565b600154604051638eb9000d60e01b81526001600160601b03831660048201525f916001600160a01b031690638eb9000d906024016106e1565b6001545f906001600160a01b03166309648a9d6117a9846110df565b6040518263ffffffff1660e01b81526004016117c791815260200190565b602060405180830381865afa1580156117e2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072091906137e9565b6001545f9081906001600160a01b03166354f6127f61182485610f1a565b6040518263ffffffff1660e01b815260040161184291815260200190565b5f60405180830381865afa15801561185c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611883919081019061321c565b805190915015610843575f818060200190518101906118a291906138a7565b60600151949350505050565b604080516080810182525f808252602082018190528183018190526060820152600154915163296586d360e21b81526004810184905290916001600160a01b03169063a5961b4c90602401608060405180830381865afa158015611914573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107209190613166565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820181905260a082015260c0810191909152600154604051637d56159160e11b815261ffff841660048201526001600160601b03851660248201525f916001600160a01b0316906354f6127f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401602060405180830381865af41580156119e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a08919061333d565b6040518263ffffffff1660e01b8152600401611a2691815260200190565b5f60405180830381865afa158015611a40573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a67919081019061321c565b805190915015610dbe5780806020019051810190610db6919061397f565b5f805f611a91846108c5565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015611aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b12919061347d565b15611b8f5773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b82919061333d565b60645b9250925050915091565b611c118160a0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611bde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c029190613804565b64ffffffffff90811691161090565b15611c885773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c81919061333d565b606e611b85565b806060015163ffffffff16816080015163ffffffff1610611d155773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611cea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d0e919061333d565b6078611b85565b6040810151600a611b85565b60408051610220810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018190526101208201526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e081018290526102008101919091526001545f906001600160a01b03166354f6127f611dc4856110df565b6040518263ffffffff1660e01b8152600401611de291815260200190565b5f60405180830381865afa158015611dfc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611e23919081019061321c565b805190915015610843578080602001905181019061083c9190613a68565b5f8060019054906101000a90046001600160a01b03166001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb69190613453565b60405163cd55e51b60e01b81526001600160a01b0385811660048301526001600160401b0385166024830152919091169063cd55e51b906044016111bb565b611f4d604051806101200160405280606081526020015f81526020015f81526020015f81526020015f63ffffffff1681526020015f63ffffffff1681526020015f151581526020015f15158152602001606081525090565b6001546040516355ee627560e01b81526001600160c01b0319841660048201525f916001600160a01b0316906354f6127f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590602401602060405180830381865af4158015611fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fdd919061333d565b6040518263ffffffff1660e01b8152600401611ffb91815260200190565b5f60405180830381865afa158015612015573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261203c919081019061321c565b805190915015610843578080602001905181019061083c9190613c0e565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416600f610c0c565b6040805160c08101825260608082525f602083018190529282018390528082018390526080820183905260a08201526001549091906001600160a01b03166354f6127f6120d285610f1a565b6040518263ffffffff1660e01b81526004016120f091815260200190565b5f60405180830381865afa15801561210a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612131919081019061321c565b805190915015610843578080602001905181019061083c91906138a7565b5f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038416601e610c0c565b60408051610100810182525f808252606060208301819052928201819052828201839052608082019290925260a0810182905260c0810182905260e0810191909152600154604051630f37f38f60e41b81526001600160401b03841660048201525f916001600160a01b0316906354f6127f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015612228573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224c919061333d565b6040518263ffffffff1660e01b815260040161226a91815260200190565b5f60405180830381865afa158015612284573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526122ab919081019061321c565b805190915015610843578080602001905181019061083c9190613d07565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d90604401602060405180830381865af41580156111d6573d5f803e3d5ffd5b6040518061012001604052805f6001600160601b031681526020015f6001600160601b0316815260200161236e60405180604001604052805f81526020015f81525090565b815260200161238e60405180604001604052805f81526020015f81525090565b81526020016123ae60405180604001604052805f81526020015f81525090565b81526020016123ce60405180604001604052805f81526020015f81525090565b81526020016123ee60405180604001604052805f81526020015f81525090565b815260200161240e60405180604001604052805f81526020015f81525090565b815260200161242e60405180604001604052805f81526020015f81525090565b905290565b6040518060c001604052805f6001600160601b0316815260200161246860405180604001604052805f81526020015f81525090565b81526060602082018190525f6040830181905290820181905260809091015290565b60408051610160810182525f8082526020808301829052828401829052606083018290526080830182905260a0830182905260c0830182905260e083018290528351808501909452818452830152906101008201906123ee565b6001600160601b03811681146124f8575f80fd5b50565b5f6020828403121561250b575f80fd5b813561083c816124e4565b5f60208284031215612526575f80fd5b5035919050565b81516001600160601b0316815260208083015161020083019161255a908401826001600160601b03169052565b506040830151612577604084018280518252602090810151910152565b50606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a0830151805161010084015260208101516101208401525060c0830151805161014084015260208101516101608401525060e0830151805161018084015260208101516101a08401525061010083015180516101c084015260208101516101e0840152610dbe565b5f8060408385031215612620575f80fd5b8235915060208301355f81900b8114612637575f80fd5b809150509250929050565b6001600160c01b0319811681146124f8575f80fd5b5f60208284031215612667575f80fd5b813561083c81612642565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201525f602083015160e060408401526126cf610100840182612672565b90506040840151606084015263ffffffff6060850151166080840152608084015161270260a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e08501526127318282612672565b95945050505050565b6001600160a01b03811681146124f8575f80fd5b5f6020828403121561275e575f80fd5b813561083c8161273a565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f604083015160a060608401526127a660c0840182612672565b90506001600160601b03606085015116608084015263ffffffff60808501511660a08401528091505092915050565b5f80604083850312156127e6575f80fd5b82356127f1816124e4565b9150602083013562ffffff81168114612637575f80fd5b6020815261ffff82511660208201526001600160601b0360208301511660408201525f60408301516080606084015261284460a0840182612672565b905064ffffffffff60608501511660808401528091505092915050565b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b038111828210171561289757612897612861565b60405290565b604080519081016001600160401b038111828210171561289757612897612861565b60405161012081016001600160401b038111828210171561289757612897612861565b60405160e081016001600160401b038111828210171561289757612897612861565b60405160a081016001600160401b038111828210171561289757612897612861565b60405160c081016001600160401b038111828210171561289757612897612861565b60405161016081016001600160401b038111828210171561289757612897612861565b60405161022081016001600160401b038111828210171561289757612897612861565b60405161010081016001600160401b038111828210171561289757612897612861565b604051601f8201601f191681016001600160401b03811182821017156129d9576129d9612861565b604052919050565b5f6001600160401b038211156129f9576129f9612861565b50601f01601f191660200190565b5f8060408385031215612a18575f80fd5b8235612a23816124e4565b915060208301356001600160401b03811115612a3d575f80fd5b8301601f81018513612a4d575f80fd5b8035612a60612a5b826129e1565b6129b1565b818152866020838501011115612a74575f80fd5b816020840160208301375f602083830101528093505050509250929050565b602081526001600160601b0382511660208201525f6020830151612ac4604084018280518252602090810151910152565b50604083015160e06080840152612adf610100840182612672565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b81516001600160601b031681526101c081016020830151612b4a60208401826001600160401b03169052565b506040830151612b6560408401826001600160601b03169052565b506060830151612b79606084018215159052565b506080830151612b8d608084018215159052565b5060a0830151612ba160a084018215159052565b5060c083015160c083015260e083015160e0830152610100830151612bd461010084018280518252602090810151910152565b506101208301518051610140840152602081015161016084015250610140830151805161018084015260208101516101a0840152610dbe565b6001600160401b03811681146124f8575f80fd5b5f8060408385031215612c32575f80fd5b8235612c3d8161273a565b9150602083013561263781612c0d565b61ffff811681146124f8575f80fd5b5f8060408385031215612c6d575f80fd5b8235612c78816124e4565b9150602083013561263781612c4d565b602081526001600160601b0382511660208201525f6020830151604080840152612cb56060840182612672565b949350505050565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f6040830151612cf9606084018260ff169052565b50606083015160ff8116608084015250608083015160e060a0840152612d23610100840182612672565b905060a0840151601f198483030160c0850152612d408282612672565b91505060c0840151612d5b60e085018264ffffffffff169052565b509392505050565b60208152612d7d6020820183516001600160601b03169052565b5f6020830151612d9860408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e083015164ffffffffff811661010084015250610100830151610220610120840152612e35610240840182612672565b9050610120840151601f1984830301610140850152612e548282612672565b915050610140840151612e6e61016085018261ffff169052565b5061016084015161ffff8116610180850152506101808401516001600160601b0381166101a0850152506101a08401516001600160601b0381166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff81166102008501525061020084015164ffffffffff8116610220850152612d5b565b602081525f82516101206020840152612f0f610140840182612672565b90506020840151604084015260408401516060840152606084015160808401526080840151612f4660a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015180151560e08501525060e084015180151561010085015250610100840151838203601f19016101208501526127318282612672565b602081525f825160c06020840152612fae60e0840182612672565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161300160a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526127318282612672565b5f6020828403121561302d575f80fd5b813561083c81612c0d565b602081526130526020820183516001600160601b03169052565b5f6020830151610100604084015261306e610120840182612672565b9050604084015161308a60608501826001600160601b03169052565b506060840151838203601f190160808501526130a68282612672565b9150506080840151601f198483030160a08501526130c48282612672565b91505060a08401516130df60c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e0840151801515610100850152612d5b565b8051613111816124e4565b919050565b5f60208284031215613126575f80fd5b815161083c816124e4565b60ff811681146124f8575f80fd5b805161311181613131565b63ffffffff811681146124f8575f80fd5b80516131118161314a565b5f6080828403128015613177575f80fd5b50613180612875565b825161318b81613131565b8152602083015161319b81613131565b602082015260408301516131ae8161314a565b604082015260608301516131c18161314a565b60608201529392505050565b5f82601f8301126131dc575f80fd5b8151602083015f6131ef612a5b846129e1565b9050828152858383011115613202575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f6020828403121561322c575f80fd5b81516001600160401b03811115613241575f80fd5b612cb5848285016131cd565b5f6040828403121561325d575f80fd5b61326561289d565b825181526020928301519281019290925250919050565b5f61020082840312801561328e575f80fd5b506132976128bf565b6132a083613106565b81526132ae60208401613106565b60208201526132c0846040850161324d565b60408201526132d2846080850161324d565b60608201526132e48460c0850161324d565b60808201526132f784610100850161324d565b60a082015261330a84610140850161324d565b60c082015261331d84610180850161324d565b60e0820152613330846101c0850161324d565b6101008201529392505050565b5f6020828403121561334d575f80fd5b5051919050565b64ffffffffff811681146124f8575f80fd5b805161311181613354565b5f60208284031215613381575f80fd5b81516001600160401b03811115613396575f80fd5b820160e081850312156133a7575f80fd5b6133af6128e2565b6133b882613106565b815260208201516001600160401b038111156133d2575f80fd5b6133de868285016131cd565b602083015250604082810151908201526133fa6060830161315b565b606082015261340b6080830161315b565b608082015261341c60a08301613366565b60a082015260c08201516001600160401b03811115613439575f80fd5b613445868285016131cd565b60c083015250949350505050565b5f60208284031215613463575f80fd5b815161083c8161273a565b80518015158114613111575f80fd5b5f6020828403121561348d575f80fd5b61083c8261346e565b805161311181612642565b5f602082840312156134b1575f80fd5b81516001600160401b038111156134c6575f80fd5b820160a081850312156134d7575f80fd5b6134df612904565b81516134ea81612642565b81526134f86020830161346e565b602082015260408201516001600160401b03811115613515575f80fd5b613521868285016131cd565b6040830152506060820151613535816124e4565b6060820152608091909101519061354b8261314a565b60808101919091529392505050565b805161311181612c4d565b5f60208284031215613575575f80fd5b81516001600160401b0381111561358a575f80fd5b82016080818503121561359b575f80fd5b6135a3612875565b81516135ae81612c4d565b815260208201516135be816124e4565b602082015260408201516001600160401b038111156135db575f80fd5b6135e7868285016131cd565b604083015250606082015191506135fd82613354565b60608101919091529392505050565b6001600160601b0383168152604060208201525f612cb56040830184612672565b5f6020828403121561363d575f80fd5b815161083c81612642565b5f60208284031215613658575f80fd5b81516001600160401b0381111561366d575f80fd5b820160e0818503121561367e575f80fd5b613686612926565b8151613691816124e4565b81526136a0856020840161324d565b602082015260608201516001600160401b038111156136bd575f80fd5b6136c9868285016131cd565b60408301525060808201516136dd81613354565b60608201526136ee60a08301613366565b60808201526136ff60c08301613366565b60a0820152949350505050565b805161311181612c0d565b5f6101c0828403128015613729575f80fd5b50613732612948565b61373b83613106565b81526137496020840161370c565b602082015261375a60408401613106565b604082015261376b6060840161346e565b606082015261377c6080840161346e565b608082015261378d60a0840161346e565b60a082015260c0838101519082015260e080840151908201526137b484610100850161324d565b6101008201526137c884610140850161324d565b6101208201526137dc84610180850161324d565b6101408201529392505050565b5f602082840312156137f9575f80fd5b815161083c81613131565b5f60208284031215613814575f80fd5b815161083c81613354565b5f6020828403121561382f575f80fd5b81516001600160401b03811115613844575f80fd5b820160408185031215613855575f80fd5b61385d61289d565b8151613868816124e4565b815260208201516001600160401b03811115613882575f80fd5b61388e868285016131cd565b602083015250949350505050565b80516131118161273a565b5f602082840312156138b7575f80fd5b81516001600160401b038111156138cc575f80fd5b820160c081850312156138dd575f80fd5b6138e5612926565b81516001600160401b038111156138fa575f80fd5b613906868285016131cd565b82525061391560208301613106565b60208201526139266040830161389c565b60408201526139376060830161389c565b60608201526139486080830161389c565b608082015260a08201516001600160401b03811115613965575f80fd5b613971868285016131cd565b60a083015250949350505050565b5f6020828403121561398f575f80fd5b81516001600160401b038111156139a4575f80fd5b820160e081850312156139b5575f80fd5b6139bd6128e2565b6139c682613106565b81526139d460208301613106565b60208201526139e56040830161313f565b60408201526139f66060830161313f565b606082015260808201516001600160401b03811115613a13575f80fd5b613a1f868285016131cd565b60808301525060a08201516001600160401b03811115613a3d575f80fd5b613a49868285016131cd565b60a083015250613a5b60c08301613366565b60c0820152949350505050565b5f60208284031215613a78575f80fd5b81516001600160401b03811115613a8d575f80fd5b82016102208185031215613a9f575f80fd5b613aa761296b565b613ab082613106565b8152613abe60208301613106565b6020820152613acf60408301613496565b6040820152613ae060608301613496565b6060820152613af160808301613106565b6080820152613b0260a08301613106565b60a0820152613b1360c08301613106565b60c0820152613b2460e08301613366565b60e08201526101008201516001600160401b03811115613b42575f80fd5b613b4e868285016131cd565b610100830152506101208201516001600160401b03811115613b6e575f80fd5b613b7a868285016131cd565b61012083015250613b8e610140830161355a565b610140820152613ba1610160830161355a565b610160820152613bb46101808301613106565b610180820152613bc76101a08301613106565b6101a0820152613bda6101c08301613366565b6101c0820152613bed6101e08301613366565b6101e0820152613c006102008301613366565b610200820152949350505050565b5f60208284031215613c1e575f80fd5b81516001600160401b03811115613c33575f80fd5b82016101208185031215613c45575f80fd5b613c4d6128bf565b81516001600160401b03811115613c62575f80fd5b613c6e868285016131cd565b825250602082810151908201526040808301519082015260608083015190820152613c9b6080830161315b565b6080820152613cac60a0830161315b565b60a0820152613cbd60c0830161346e565b60c0820152613cce60e0830161346e565b60e08201526101008201516001600160401b03811115613cec575f80fd5b613cf8868285016131cd565b61010083015250949350505050565b5f60208284031215613d17575f80fd5b81516001600160401b03811115613d2c575f80fd5b82016101008185031215613d3e575f80fd5b613d4661298e565b613d4f82613106565b815260208201516001600160401b03811115613d69575f80fd5b613d75868285016131cd565b602083015250613d8760408301613106565b604082015260608201516001600160401b03811115613da4575f80fd5b613db0868285016131cd565b60608301525060808201516001600160401b03811115613dce575f80fd5b613dda868285016131cd565b608083015250613dec60a08301613366565b60a0820152613dfd60c08301613366565b60c0820152613e0e60e0830161346e565b60e082015294935050505056fea2646970667358221220ba9ae634688e868942ae4c444e2c8487109b1556ff933cbc7338c3ab9340724864736f6c634300081a0033",
         | 
| 1427 | 
            +
              "linkReferences": {
         | 
| 1428 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1429 | 
            +
                  "AmountLib": [
         | 
| 1430 | 
            +
                    {
         | 
| 1431 | 
            +
                      "length": 20,
         | 
| 1432 | 
            +
                      "start": 8982
         | 
| 1433 | 
            +
                    }
         | 
| 1434 | 
            +
                  ]
         | 
| 1435 | 
            +
                },
         | 
| 1436 | 
            +
                "contracts/type/ClaimId.sol": {
         | 
| 1437 | 
            +
                  "ClaimIdLib": [
         | 
| 1438 | 
            +
                    {
         | 
| 1439 | 
            +
                      "length": 20,
         | 
| 1440 | 
            +
                      "start": 5552
         | 
| 1441 | 
            +
                    },
         | 
| 1442 | 
            +
                    {
         | 
| 1443 | 
            +
                      "length": 20,
         | 
| 1444 | 
            +
                      "start": 6609
         | 
| 1445 | 
            +
                    }
         | 
| 1446 | 
            +
                  ]
         | 
| 1447 | 
            +
                },
         | 
| 1448 | 
            +
                "contracts/type/DistributorType.sol": {
         | 
| 1449 | 
            +
                  "DistributorTypeLib": [
         | 
| 1450 | 
            +
                    {
         | 
| 1451 | 
            +
                      "length": 20,
         | 
| 1452 | 
            +
                      "start": 8102
         | 
| 1453 | 
            +
                    }
         | 
| 1454 | 
            +
                  ]
         | 
| 1455 | 
            +
                },
         | 
| 1456 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1457 | 
            +
                  "NftIdLib": [
         | 
| 1458 | 
            +
                    {
         | 
| 1459 | 
            +
                      "length": 20,
         | 
| 1460 | 
            +
                      "start": 3084
         | 
| 1461 | 
            +
                    },
         | 
| 1462 | 
            +
                    {
         | 
| 1463 | 
            +
                      "length": 20,
         | 
| 1464 | 
            +
                      "start": 3906
         | 
| 1465 | 
            +
                    },
         | 
| 1466 | 
            +
                    {
         | 
| 1467 | 
            +
                      "length": 20,
         | 
| 1468 | 
            +
                      "start": 4359
         | 
| 1469 | 
            +
                    },
         | 
| 1470 | 
            +
                    {
         | 
| 1471 | 
            +
                      "length": 20,
         | 
| 1472 | 
            +
                      "start": 4897
         | 
| 1473 | 
            +
                    },
         | 
| 1474 | 
            +
                    {
         | 
| 1475 | 
            +
                      "length": 20,
         | 
| 1476 | 
            +
                      "start": 5589
         | 
| 1477 | 
            +
                    },
         | 
| 1478 | 
            +
                    {
         | 
| 1479 | 
            +
                      "length": 20,
         | 
| 1480 | 
            +
                      "start": 5633
         | 
| 1481 | 
            +
                    },
         | 
| 1482 | 
            +
                    {
         | 
| 1483 | 
            +
                      "length": 20,
         | 
| 1484 | 
            +
                      "start": 8322
         | 
| 1485 | 
            +
                    },
         | 
| 1486 | 
            +
                    {
         | 
| 1487 | 
            +
                      "length": 20,
         | 
| 1488 | 
            +
                      "start": 8567
         | 
| 1489 | 
            +
                    }
         | 
| 1490 | 
            +
                  ]
         | 
| 1491 | 
            +
                },
         | 
| 1492 | 
            +
                "contracts/type/PayoutId.sol": {
         | 
| 1493 | 
            +
                  "PayoutIdLib": [
         | 
| 1494 | 
            +
                    {
         | 
| 1495 | 
            +
                      "length": 20,
         | 
| 1496 | 
            +
                      "start": 3330
         | 
| 1497 | 
            +
                    },
         | 
| 1498 | 
            +
                    {
         | 
| 1499 | 
            +
                      "length": 20,
         | 
| 1500 | 
            +
                      "start": 4170
         | 
| 1501 | 
            +
                    }
         | 
| 1502 | 
            +
                  ]
         | 
| 1503 | 
            +
                },
         | 
| 1504 | 
            +
                "contracts/type/Referral.sol": {
         | 
| 1505 | 
            +
                  "ReferralLib": [
         | 
| 1506 | 
            +
                    {
         | 
| 1507 | 
            +
                      "length": 20,
         | 
| 1508 | 
            +
                      "start": 2389
         | 
| 1509 | 
            +
                    },
         | 
| 1510 | 
            +
                    {
         | 
| 1511 | 
            +
                      "length": 20,
         | 
| 1512 | 
            +
                      "start": 3579
         | 
| 1513 | 
            +
                    }
         | 
| 1514 | 
            +
                  ]
         | 
| 1515 | 
            +
                },
         | 
| 1516 | 
            +
                "contracts/type/RequestId.sol": {
         | 
| 1517 | 
            +
                  "RequestIdLib": [
         | 
| 1518 | 
            +
                    {
         | 
| 1519 | 
            +
                      "length": 20,
         | 
| 1520 | 
            +
                      "start": 8725
         | 
| 1521 | 
            +
                    }
         | 
| 1522 | 
            +
                  ]
         | 
| 1523 | 
            +
                },
         | 
| 1524 | 
            +
                "contracts/type/RiskId.sol": {
         | 
| 1525 | 
            +
                  "RiskIdLib": [
         | 
| 1526 | 
            +
                    {
         | 
| 1527 | 
            +
                      "length": 20,
         | 
| 1528 | 
            +
                      "start": 5792
         | 
| 1529 | 
            +
                    }
         | 
| 1530 | 
            +
                  ]
         | 
| 1531 | 
            +
                },
         | 
| 1532 | 
            +
                "contracts/type/Timestamp.sol": {
         | 
| 1533 | 
            +
                  "TimestampLib": [
         | 
| 1534 | 
            +
                    {
         | 
| 1535 | 
            +
                      "length": 20,
         | 
| 1536 | 
            +
                      "start": 5037
         | 
| 1537 | 
            +
                    },
         | 
| 1538 | 
            +
                    {
         | 
| 1539 | 
            +
                      "length": 20,
         | 
| 1540 | 
            +
                      "start": 5177
         | 
| 1541 | 
            +
                    },
         | 
| 1542 | 
            +
                    {
         | 
| 1543 | 
            +
                      "length": 20,
         | 
| 1544 | 
            +
                      "start": 5343
         | 
| 1545 | 
            +
                    },
         | 
| 1546 | 
            +
                    {
         | 
| 1547 | 
            +
                      "length": 20,
         | 
| 1548 | 
            +
                      "start": 6875
         | 
| 1549 | 
            +
                    },
         | 
| 1550 | 
            +
                    {
         | 
| 1551 | 
            +
                      "length": 20,
         | 
| 1552 | 
            +
                      "start": 7102
         | 
| 1553 | 
            +
                    }
         | 
| 1554 | 
            +
                  ]
         | 
| 1555 | 
            +
                },
         | 
| 1556 | 
            +
                "contracts/type/UFixed.sol": {
         | 
| 1557 | 
            +
                  "UFixedLib": [
         | 
| 1558 | 
            +
                    {
         | 
| 1559 | 
            +
                      "length": 20,
         | 
| 1560 | 
            +
                      "start": 2190
         | 
| 1561 | 
            +
                    },
         | 
| 1562 | 
            +
                    {
         | 
| 1563 | 
            +
                      "length": 20,
         | 
| 1564 | 
            +
                      "start": 3708
         | 
| 1565 | 
            +
                    },
         | 
| 1566 | 
            +
                    {
         | 
| 1567 | 
            +
                      "length": 20,
         | 
| 1568 | 
            +
                      "start": 6974
         | 
| 1569 | 
            +
                    },
         | 
| 1570 | 
            +
                    {
         | 
| 1571 | 
            +
                      "length": 20,
         | 
| 1572 | 
            +
                      "start": 7229
         | 
| 1573 | 
            +
                    },
         | 
| 1574 | 
            +
                    {
         | 
| 1575 | 
            +
                      "length": 20,
         | 
| 1576 | 
            +
                      "start": 7370
         | 
| 1577 | 
            +
                    }
         | 
| 1578 | 
            +
                  ]
         | 
| 1579 | 
            +
                }
         | 
| 1580 | 
            +
              },
         | 
| 1581 | 
            +
              "deployedLinkReferences": {
         | 
| 1582 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1583 | 
            +
                  "AmountLib": [
         | 
| 1584 | 
            +
                    {
         | 
| 1585 | 
            +
                      "length": 20,
         | 
| 1586 | 
            +
                      "start": 8945
         | 
| 1587 | 
            +
                    }
         | 
| 1588 | 
            +
                  ]
         | 
| 1589 | 
            +
                },
         | 
| 1590 | 
            +
                "contracts/type/ClaimId.sol": {
         | 
| 1591 | 
            +
                  "ClaimIdLib": [
         | 
| 1592 | 
            +
                    {
         | 
| 1593 | 
            +
                      "length": 20,
         | 
| 1594 | 
            +
                      "start": 5515
         | 
| 1595 | 
            +
                    },
         | 
| 1596 | 
            +
                    {
         | 
| 1597 | 
            +
                      "length": 20,
         | 
| 1598 | 
            +
                      "start": 6572
         | 
| 1599 | 
            +
                    }
         | 
| 1600 | 
            +
                  ]
         | 
| 1601 | 
            +
                },
         | 
| 1602 | 
            +
                "contracts/type/DistributorType.sol": {
         | 
| 1603 | 
            +
                  "DistributorTypeLib": [
         | 
| 1604 | 
            +
                    {
         | 
| 1605 | 
            +
                      "length": 20,
         | 
| 1606 | 
            +
                      "start": 8065
         | 
| 1607 | 
            +
                    }
         | 
| 1608 | 
            +
                  ]
         | 
| 1609 | 
            +
                },
         | 
| 1610 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1611 | 
            +
                  "NftIdLib": [
         | 
| 1612 | 
            +
                    {
         | 
| 1613 | 
            +
                      "length": 20,
         | 
| 1614 | 
            +
                      "start": 3047
         | 
| 1615 | 
            +
                    },
         | 
| 1616 | 
            +
                    {
         | 
| 1617 | 
            +
                      "length": 20,
         | 
| 1618 | 
            +
                      "start": 3869
         | 
| 1619 | 
            +
                    },
         | 
| 1620 | 
            +
                    {
         | 
| 1621 | 
            +
                      "length": 20,
         | 
| 1622 | 
            +
                      "start": 4322
         | 
| 1623 | 
            +
                    },
         | 
| 1624 | 
            +
                    {
         | 
| 1625 | 
            +
                      "length": 20,
         | 
| 1626 | 
            +
                      "start": 4860
         | 
| 1627 | 
            +
                    },
         | 
| 1628 | 
            +
                    {
         | 
| 1629 | 
            +
                      "length": 20,
         | 
| 1630 | 
            +
                      "start": 5552
         | 
| 1631 | 
            +
                    },
         | 
| 1632 | 
            +
                    {
         | 
| 1633 | 
            +
                      "length": 20,
         | 
| 1634 | 
            +
                      "start": 5596
         | 
| 1635 | 
            +
                    },
         | 
| 1636 | 
            +
                    {
         | 
| 1637 | 
            +
                      "length": 20,
         | 
| 1638 | 
            +
                      "start": 8285
         | 
| 1639 | 
            +
                    },
         | 
| 1640 | 
            +
                    {
         | 
| 1641 | 
            +
                      "length": 20,
         | 
| 1642 | 
            +
                      "start": 8530
         | 
| 1643 | 
            +
                    }
         | 
| 1644 | 
            +
                  ]
         | 
| 1645 | 
            +
                },
         | 
| 1646 | 
            +
                "contracts/type/PayoutId.sol": {
         | 
| 1647 | 
            +
                  "PayoutIdLib": [
         | 
| 1648 | 
            +
                    {
         | 
| 1649 | 
            +
                      "length": 20,
         | 
| 1650 | 
            +
                      "start": 3293
         | 
| 1651 | 
            +
                    },
         | 
| 1652 | 
            +
                    {
         | 
| 1653 | 
            +
                      "length": 20,
         | 
| 1654 | 
            +
                      "start": 4133
         | 
| 1655 | 
            +
                    }
         | 
| 1656 | 
            +
                  ]
         | 
| 1657 | 
            +
                },
         | 
| 1658 | 
            +
                "contracts/type/Referral.sol": {
         | 
| 1659 | 
            +
                  "ReferralLib": [
         | 
| 1660 | 
            +
                    {
         | 
| 1661 | 
            +
                      "length": 20,
         | 
| 1662 | 
            +
                      "start": 2352
         | 
| 1663 | 
            +
                    },
         | 
| 1664 | 
            +
                    {
         | 
| 1665 | 
            +
                      "length": 20,
         | 
| 1666 | 
            +
                      "start": 3542
         | 
| 1667 | 
            +
                    }
         | 
| 1668 | 
            +
                  ]
         | 
| 1669 | 
            +
                },
         | 
| 1670 | 
            +
                "contracts/type/RequestId.sol": {
         | 
| 1671 | 
            +
                  "RequestIdLib": [
         | 
| 1672 | 
            +
                    {
         | 
| 1673 | 
            +
                      "length": 20,
         | 
| 1674 | 
            +
                      "start": 8688
         | 
| 1675 | 
            +
                    }
         | 
| 1676 | 
            +
                  ]
         | 
| 1677 | 
            +
                },
         | 
| 1678 | 
            +
                "contracts/type/RiskId.sol": {
         | 
| 1679 | 
            +
                  "RiskIdLib": [
         | 
| 1680 | 
            +
                    {
         | 
| 1681 | 
            +
                      "length": 20,
         | 
| 1682 | 
            +
                      "start": 5755
         | 
| 1683 | 
            +
                    }
         | 
| 1684 | 
            +
                  ]
         | 
| 1685 | 
            +
                },
         | 
| 1686 | 
            +
                "contracts/type/Timestamp.sol": {
         | 
| 1687 | 
            +
                  "TimestampLib": [
         | 
| 1688 | 
            +
                    {
         | 
| 1689 | 
            +
                      "length": 20,
         | 
| 1690 | 
            +
                      "start": 5000
         | 
| 1691 | 
            +
                    },
         | 
| 1692 | 
            +
                    {
         | 
| 1693 | 
            +
                      "length": 20,
         | 
| 1694 | 
            +
                      "start": 5140
         | 
| 1695 | 
            +
                    },
         | 
| 1696 | 
            +
                    {
         | 
| 1697 | 
            +
                      "length": 20,
         | 
| 1698 | 
            +
                      "start": 5306
         | 
| 1699 | 
            +
                    },
         | 
| 1700 | 
            +
                    {
         | 
| 1701 | 
            +
                      "length": 20,
         | 
| 1702 | 
            +
                      "start": 6838
         | 
| 1703 | 
            +
                    },
         | 
| 1704 | 
            +
                    {
         | 
| 1705 | 
            +
                      "length": 20,
         | 
| 1706 | 
            +
                      "start": 7065
         | 
| 1707 | 
            +
                    }
         | 
| 1708 | 
            +
                  ]
         | 
| 1709 | 
            +
                },
         | 
| 1710 | 
            +
                "contracts/type/UFixed.sol": {
         | 
| 1711 | 
            +
                  "UFixedLib": [
         | 
| 1712 | 
            +
                    {
         | 
| 1713 | 
            +
                      "length": 20,
         | 
| 1714 | 
            +
                      "start": 2153
         | 
| 1715 | 
            +
                    },
         | 
| 1716 | 
            +
                    {
         | 
| 1717 | 
            +
                      "length": 20,
         | 
| 1718 | 
            +
                      "start": 3671
         | 
| 1719 | 
            +
                    },
         | 
| 1720 | 
            +
                    {
         | 
| 1721 | 
            +
                      "length": 20,
         | 
| 1722 | 
            +
                      "start": 6937
         | 
| 1723 | 
            +
                    },
         | 
| 1724 | 
            +
                    {
         | 
| 1725 | 
            +
                      "length": 20,
         | 
| 1726 | 
            +
                      "start": 7192
         | 
| 1727 | 
            +
                    },
         | 
| 1728 | 
            +
                    {
         | 
| 1729 | 
            +
                      "length": 20,
         | 
| 1730 | 
            +
                      "start": 7333
         | 
| 1731 | 
            +
                    }
         | 
| 1732 | 
            +
                  ]
         | 
| 1733 | 
            +
                }
         | 
| 1734 | 
            +
              }
         | 
| 1735 | 
            +
            }
         |