@etherisc/gif-next 0.0.2-d086e6d-456 → 0.0.2-d13bb9e-069
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +57 -93
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1234 -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/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1013 -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 +1342 -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 +1012 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1405 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +198 -261
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +186 -357
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1491 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +410 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1946 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +414 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1411 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1545 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1980 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +296 -2011
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +195 -95
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +353 -2827
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1623 -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 +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1062 -308
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +246 -316
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +132 -119
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3607 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +10 -118
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +979 -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 +765 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +254 -209
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +236 -207
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +927 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +710 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +299 -399
- 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 +1431 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +822 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +312 -64
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +937 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1267 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +358 -360
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1612 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +758 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +737 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +698 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +339 -408
- 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 +1397 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +826 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → product/IApplicationService.sol/IApplicationService.json} +129 -111
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +913 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +896 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +110 -207
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +319 -199
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +12 -86
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1268 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +770 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +865 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +746 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1056 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +588 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +682 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +404 -31
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +802 -46
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1858 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +264 -279
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +126 -95
- 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/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1169 -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 +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +265 -222
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1573 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +794 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +432 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +107 -107
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/IComponentService.sol/IComponentService.json} +482 -317
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +700 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
- 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 +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +17 -30
- 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/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +793 -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/shared/Lifecycle.sol/Lifecycle.json +133 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +12 -70
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +18 -106
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +20 -135
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +684 -575
- 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 +440 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1828 -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 +750 -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 +1236 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -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 +398 -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 +203 -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 +317 -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 +142 -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 +246 -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 +312 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -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 +68 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +586 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
- package/contracts/authorization/AccessAdmin.sol +592 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +221 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +135 -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 +138 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/{components → distribution}/Distribution.sol +178 -163
- package/contracts/distribution/DistributionService.sol +336 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/{instance/service → distribution}/IDistributionService.sol +41 -38
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +75 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
- package/contracts/examples/fire/FireProduct.sol +410 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
- package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
- package/contracts/instance/IInstance.sol +38 -73
- package/contracts/instance/IInstanceService.sol +50 -30
- package/contracts/instance/Instance.sol +147 -245
- package/contracts/instance/InstanceAdmin.sol +288 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +264 -60
- package/contracts/instance/InstanceService.sol +305 -335
- package/contracts/instance/InstanceServiceManager.sol +14 -29
- package/contracts/instance/InstanceStore.sol +287 -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 +111 -0
- package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
- package/contracts/instance/module/IAccess.sol +5 -13
- package/contracts/instance/module/IBundle.sol +6 -9
- package/contracts/instance/module/IComponents.sol +23 -16
- package/contracts/instance/module/IDistribution.sol +6 -6
- package/contracts/instance/module/IPolicy.sol +47 -35
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- 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 +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +167 -0
- package/contracts/oracle/OracleService.sol +281 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +166 -0
- package/contracts/pool/BasicPoolAuthorization.sol +58 -0
- package/contracts/pool/BundleService.sol +461 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +143 -0
- package/contracts/pool/IPoolComponent.sol +68 -0
- package/contracts/pool/IPoolService.sol +171 -0
- package/contracts/pool/Pool.sol +353 -0
- package/contracts/pool/PoolService.sol +563 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +251 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
- package/contracts/product/BasicProduct.sol +53 -0
- package/contracts/product/BasicProductAuthorization.sol +43 -0
- package/contracts/product/ClaimService.sol +581 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
- package/contracts/{instance/service → product}/IApplicationService.sol +16 -35
- package/contracts/product/IClaimService.sol +123 -0
- package/contracts/product/IPolicyService.sol +80 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +53 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +686 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +432 -0
- package/contracts/product/RiskService.sol +96 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +72 -32
- package/contracts/registry/IRegistry.sol +94 -25
- package/contracts/registry/IRegistryService.sol +35 -43
- package/contracts/registry/Registry.sol +432 -192
- package/contracts/registry/RegistryAdmin.sol +464 -0
- package/contracts/registry/RegistryService.sol +108 -134
- package/contracts/registry/RegistryServiceManager.sol +23 -32
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseRegistry.sol +491 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +198 -0
- package/contracts/registry/TokenRegistry.sol +261 -62
- package/contracts/shared/Component.sol +268 -0
- package/contracts/shared/ComponentService.sol +641 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +116 -0
- package/contracts/shared/ContractLib.sol +38 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +108 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
- package/contracts/shared/INftOwnable.sol +2 -2
- package/contracts/shared/IPolicyHolder.sol +23 -14
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +12 -8
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
- package/contracts/shared/InstanceLinkedComponent.sol +171 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +10 -23
- package/contracts/shared/PolicyHolder.sol +22 -41
- package/contracts/shared/Registerable.sol +17 -16
- package/contracts/shared/RegistryLinked.sol +3 -7
- package/contracts/shared/Service.sol +53 -29
- package/contracts/shared/TokenHandler.sol +115 -9
- package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +160 -0
- package/contracts/staking/StakeManagerLib.sol +224 -0
- package/contracts/staking/Staking.sol +498 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +183 -0
- package/contracts/staking/StakingService.sol +407 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +150 -0
- package/contracts/{types → type}/Blocknumber.sol +26 -3
- package/contracts/{types → type}/ClaimId.sol +31 -3
- package/contracts/{types → type}/Fee.sol +24 -22
- package/contracts/{types → type}/NftId.sol +15 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +275 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +2 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +16 -2
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +34 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +21 -2
- package/contracts/{types → type}/UFixed.sol +38 -9
- package/contracts/{types → type}/Version.sol +4 -2
- package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +92 -30
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
- package/package.json +8 -5
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1311
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1058
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1258
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -717
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -844
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1822
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1111
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1264
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -657
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -867
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -611
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
- package/contracts/components/Component.sol +0 -253
- package/contracts/components/IComponent.sol +0 -76
- package/contracts/components/IDistributionComponent.sol +0 -71
- package/contracts/components/IPoolComponent.sol +0 -113
- package/contracts/components/IProductComponent.sol +0 -40
- package/contracts/components/Pool.sol +0 -303
- package/contracts/components/Product.sol +0 -293
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -522
- package/contracts/instance/base/ComponentService.sol +0 -136
- package/contracts/instance/base/KeyValueStore.sol +0 -180
- package/contracts/instance/base/Lifecycle.sol +0 -109
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -350
- package/contracts/instance/service/BundleService.sol +0 -431
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -151
- package/contracts/instance/service/DistributionService.sol +0 -435
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IBundleService.sol +0 -93
- package/contracts/instance/service/IClaimService.sol +0 -61
- package/contracts/instance/service/IPolicyService.sol +0 -72
- package/contracts/instance/service/IPoolService.sol +0 -99
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -360
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -343
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -210
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -322
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -25
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/Amount.sol +0 -60
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -157
- package/contracts/types/PayoutId.sol +0 -54
- package/contracts/types/RoleId.sol +0 -97
- package/contracts/types/Seconds.sol +0 -54
- /package/contracts/{types → type}/DistributorType.sol +0 -0
- /package/contracts/{types → type}/Key32.sol +0 -0
package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json
DELETED
@@ -1,1822 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_format": "hh-sol-artifact-1",
|
3
|
-
"contractName": "DistributionService",
|
4
|
-
"sourceName": "contracts/instance/service/DistributionService.sol",
|
5
|
-
"abi": [
|
6
|
-
{
|
7
|
-
"inputs": [
|
8
|
-
{
|
9
|
-
"internalType": "address",
|
10
|
-
"name": "authority",
|
11
|
-
"type": "address"
|
12
|
-
}
|
13
|
-
],
|
14
|
-
"name": "AccessManagedInvalidAuthority",
|
15
|
-
"type": "error"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"inputs": [
|
19
|
-
{
|
20
|
-
"internalType": "address",
|
21
|
-
"name": "caller",
|
22
|
-
"type": "address"
|
23
|
-
},
|
24
|
-
{
|
25
|
-
"internalType": "uint32",
|
26
|
-
"name": "delay",
|
27
|
-
"type": "uint32"
|
28
|
-
}
|
29
|
-
],
|
30
|
-
"name": "AccessManagedRequiredDelay",
|
31
|
-
"type": "error"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"inputs": [
|
35
|
-
{
|
36
|
-
"internalType": "address",
|
37
|
-
"name": "caller",
|
38
|
-
"type": "address"
|
39
|
-
}
|
40
|
-
],
|
41
|
-
"name": "AccessManagedUnauthorized",
|
42
|
-
"type": "error"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"inputs": [
|
46
|
-
{
|
47
|
-
"internalType": "address",
|
48
|
-
"name": "component",
|
49
|
-
"type": "address"
|
50
|
-
},
|
51
|
-
{
|
52
|
-
"internalType": "NftId",
|
53
|
-
"name": "nftId",
|
54
|
-
"type": "uint96"
|
55
|
-
}
|
56
|
-
],
|
57
|
-
"name": "ErrorComponentServiceAlreadyRegistered",
|
58
|
-
"type": "error"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"inputs": [
|
62
|
-
{
|
63
|
-
"internalType": "address",
|
64
|
-
"name": "component",
|
65
|
-
"type": "address"
|
66
|
-
}
|
67
|
-
],
|
68
|
-
"name": "ErrorComponentServiceComponentLocked",
|
69
|
-
"type": "error"
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"inputs": [
|
73
|
-
{
|
74
|
-
"internalType": "NftId",
|
75
|
-
"name": "instanceNftId",
|
76
|
-
"type": "uint96"
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"internalType": "RoleId",
|
80
|
-
"name": "requiredRole",
|
81
|
-
"type": "uint64"
|
82
|
-
},
|
83
|
-
{
|
84
|
-
"internalType": "address",
|
85
|
-
"name": "sender",
|
86
|
-
"type": "address"
|
87
|
-
}
|
88
|
-
],
|
89
|
-
"name": "ErrorComponentServiceExpectedRoleMissing",
|
90
|
-
"type": "error"
|
91
|
-
},
|
92
|
-
{
|
93
|
-
"inputs": [
|
94
|
-
{
|
95
|
-
"internalType": "address",
|
96
|
-
"name": "component",
|
97
|
-
"type": "address"
|
98
|
-
},
|
99
|
-
{
|
100
|
-
"internalType": "ObjectType",
|
101
|
-
"name": "requiredType",
|
102
|
-
"type": "uint8"
|
103
|
-
},
|
104
|
-
{
|
105
|
-
"internalType": "ObjectType",
|
106
|
-
"name": "componentType",
|
107
|
-
"type": "uint8"
|
108
|
-
}
|
109
|
-
],
|
110
|
-
"name": "ErrorComponentServiceInvalidType",
|
111
|
-
"type": "error"
|
112
|
-
},
|
113
|
-
{
|
114
|
-
"inputs": [
|
115
|
-
{
|
116
|
-
"internalType": "address",
|
117
|
-
"name": "component",
|
118
|
-
"type": "address"
|
119
|
-
}
|
120
|
-
],
|
121
|
-
"name": "ErrorComponentServiceNotComponent",
|
122
|
-
"type": "error"
|
123
|
-
},
|
124
|
-
{
|
125
|
-
"inputs": [
|
126
|
-
{
|
127
|
-
"internalType": "address",
|
128
|
-
"name": "component",
|
129
|
-
"type": "address"
|
130
|
-
},
|
131
|
-
{
|
132
|
-
"internalType": "address",
|
133
|
-
"name": "initialOwner",
|
134
|
-
"type": "address"
|
135
|
-
},
|
136
|
-
{
|
137
|
-
"internalType": "address",
|
138
|
-
"name": "sender",
|
139
|
-
"type": "address"
|
140
|
-
}
|
141
|
-
],
|
142
|
-
"name": "ErrorComponentServiceSenderNotOwner",
|
143
|
-
"type": "error"
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"inputs": [
|
147
|
-
{
|
148
|
-
"internalType": "address",
|
149
|
-
"name": "target",
|
150
|
-
"type": "address"
|
151
|
-
}
|
152
|
-
],
|
153
|
-
"name": "ErrorIAccessTargetLocked",
|
154
|
-
"type": "error"
|
155
|
-
},
|
156
|
-
{
|
157
|
-
"inputs": [
|
158
|
-
{
|
159
|
-
"internalType": "address",
|
160
|
-
"name": "caller",
|
161
|
-
"type": "address"
|
162
|
-
}
|
163
|
-
],
|
164
|
-
"name": "ErrorIDistributionServiceCallerNotDistributor",
|
165
|
-
"type": "error"
|
166
|
-
},
|
167
|
-
{
|
168
|
-
"inputs": [
|
169
|
-
{
|
170
|
-
"internalType": "uint256",
|
171
|
-
"name": "commissionPercentage",
|
172
|
-
"type": "uint256"
|
173
|
-
},
|
174
|
-
{
|
175
|
-
"internalType": "uint256",
|
176
|
-
"name": "maxCommissionPercentage",
|
177
|
-
"type": "uint256"
|
178
|
-
}
|
179
|
-
],
|
180
|
-
"name": "ErrorIDistributionServiceCommissionTooHigh",
|
181
|
-
"type": "error"
|
182
|
-
},
|
183
|
-
{
|
184
|
-
"inputs": [
|
185
|
-
{
|
186
|
-
"internalType": "uint256",
|
187
|
-
"name": "maxDiscountPercentage",
|
188
|
-
"type": "uint256"
|
189
|
-
},
|
190
|
-
{
|
191
|
-
"internalType": "uint256",
|
192
|
-
"name": "discountPercentage",
|
193
|
-
"type": "uint256"
|
194
|
-
}
|
195
|
-
],
|
196
|
-
"name": "ErrorIDistributionServiceDiscountTooHigh",
|
197
|
-
"type": "error"
|
198
|
-
},
|
199
|
-
{
|
200
|
-
"inputs": [
|
201
|
-
{
|
202
|
-
"internalType": "uint256",
|
203
|
-
"name": "minDiscountPercentage",
|
204
|
-
"type": "uint256"
|
205
|
-
},
|
206
|
-
{
|
207
|
-
"internalType": "uint256",
|
208
|
-
"name": "discountPercentage",
|
209
|
-
"type": "uint256"
|
210
|
-
}
|
211
|
-
],
|
212
|
-
"name": "ErrorIDistributionServiceDiscountTooLow",
|
213
|
-
"type": "error"
|
214
|
-
},
|
215
|
-
{
|
216
|
-
"inputs": [
|
217
|
-
{
|
218
|
-
"internalType": "Timestamp",
|
219
|
-
"name": "expiryAt",
|
220
|
-
"type": "uint40"
|
221
|
-
}
|
222
|
-
],
|
223
|
-
"name": "ErrorIDistributionServiceExpirationInvalid",
|
224
|
-
"type": "error"
|
225
|
-
},
|
226
|
-
{
|
227
|
-
"inputs": [
|
228
|
-
{
|
229
|
-
"internalType": "uint256",
|
230
|
-
"name": "maxReferralLifetime",
|
231
|
-
"type": "uint256"
|
232
|
-
},
|
233
|
-
{
|
234
|
-
"internalType": "uint256",
|
235
|
-
"name": "expiryAt",
|
236
|
-
"type": "uint256"
|
237
|
-
}
|
238
|
-
],
|
239
|
-
"name": "ErrorIDistributionServiceExpiryTooLong",
|
240
|
-
"type": "error"
|
241
|
-
},
|
242
|
-
{
|
243
|
-
"inputs": [
|
244
|
-
{
|
245
|
-
"internalType": "uint256",
|
246
|
-
"name": "distributionFeeFixAmount",
|
247
|
-
"type": "uint256"
|
248
|
-
},
|
249
|
-
{
|
250
|
-
"internalType": "uint256",
|
251
|
-
"name": "distributionFeeVarAmount",
|
252
|
-
"type": "uint256"
|
253
|
-
},
|
254
|
-
{
|
255
|
-
"internalType": "uint256",
|
256
|
-
"name": "distributionOwnerFeeFixAmount",
|
257
|
-
"type": "uint256"
|
258
|
-
},
|
259
|
-
{
|
260
|
-
"internalType": "uint256",
|
261
|
-
"name": "distributionOwnerFeeVarAmount",
|
262
|
-
"type": "uint256"
|
263
|
-
},
|
264
|
-
{
|
265
|
-
"internalType": "uint256",
|
266
|
-
"name": "commissionAmount",
|
267
|
-
"type": "uint256"
|
268
|
-
},
|
269
|
-
{
|
270
|
-
"internalType": "uint256",
|
271
|
-
"name": "discountAmount",
|
272
|
-
"type": "uint256"
|
273
|
-
}
|
274
|
-
],
|
275
|
-
"name": "ErrorIDistributionServiceFeeCalculationMismatch",
|
276
|
-
"type": "error"
|
277
|
-
},
|
278
|
-
{
|
279
|
-
"inputs": [
|
280
|
-
{
|
281
|
-
"internalType": "uint256",
|
282
|
-
"name": "transferredDistributionFeeAmount",
|
283
|
-
"type": "uint256"
|
284
|
-
},
|
285
|
-
{
|
286
|
-
"internalType": "uint256",
|
287
|
-
"name": "expectedDistributionFeeAmount",
|
288
|
-
"type": "uint256"
|
289
|
-
}
|
290
|
-
],
|
291
|
-
"name": "ErrorIDistributionServiceInvalidFeeTransferred",
|
292
|
-
"type": "error"
|
293
|
-
},
|
294
|
-
{
|
295
|
-
"inputs": [
|
296
|
-
{
|
297
|
-
"internalType": "string",
|
298
|
-
"name": "code",
|
299
|
-
"type": "string"
|
300
|
-
}
|
301
|
-
],
|
302
|
-
"name": "ErrorIDistributionServiceInvalidReferral",
|
303
|
-
"type": "error"
|
304
|
-
},
|
305
|
-
{
|
306
|
-
"inputs": [
|
307
|
-
{
|
308
|
-
"internalType": "ReferralId",
|
309
|
-
"name": "referralId",
|
310
|
-
"type": "bytes8"
|
311
|
-
}
|
312
|
-
],
|
313
|
-
"name": "ErrorIDistributionServiceInvalidReferralId",
|
314
|
-
"type": "error"
|
315
|
-
},
|
316
|
-
{
|
317
|
-
"inputs": [
|
318
|
-
{
|
319
|
-
"internalType": "uint256",
|
320
|
-
"name": "maxDiscountPercentage",
|
321
|
-
"type": "uint256"
|
322
|
-
},
|
323
|
-
{
|
324
|
-
"internalType": "uint256",
|
325
|
-
"name": "limit",
|
326
|
-
"type": "uint256"
|
327
|
-
}
|
328
|
-
],
|
329
|
-
"name": "ErrorIDistributionServiceMaxDiscountTooHigh",
|
330
|
-
"type": "error"
|
331
|
-
},
|
332
|
-
{
|
333
|
-
"inputs": [
|
334
|
-
{
|
335
|
-
"internalType": "uint256",
|
336
|
-
"name": "maxReferrals",
|
337
|
-
"type": "uint256"
|
338
|
-
}
|
339
|
-
],
|
340
|
-
"name": "ErrorIDistributionServiceMaxReferralsExceeded",
|
341
|
-
"type": "error"
|
342
|
-
},
|
343
|
-
{
|
344
|
-
"inputs": [
|
345
|
-
{
|
346
|
-
"internalType": "uint256",
|
347
|
-
"name": "minFee",
|
348
|
-
"type": "uint256"
|
349
|
-
},
|
350
|
-
{
|
351
|
-
"internalType": "uint256",
|
352
|
-
"name": "limit",
|
353
|
-
"type": "uint256"
|
354
|
-
}
|
355
|
-
],
|
356
|
-
"name": "ErrorIDistributionServiceMinFeeTooHigh",
|
357
|
-
"type": "error"
|
358
|
-
},
|
359
|
-
{
|
360
|
-
"inputs": [
|
361
|
-
{
|
362
|
-
"internalType": "NftId",
|
363
|
-
"name": "nftId",
|
364
|
-
"type": "uint96"
|
365
|
-
},
|
366
|
-
{
|
367
|
-
"internalType": "NftId",
|
368
|
-
"name": "parentNftId",
|
369
|
-
"type": "uint96"
|
370
|
-
}
|
371
|
-
],
|
372
|
-
"name": "ErrorIDistributionServiceParentNftIdNotInstance",
|
373
|
-
"type": "error"
|
374
|
-
},
|
375
|
-
{
|
376
|
-
"inputs": [
|
377
|
-
{
|
378
|
-
"internalType": "NftId",
|
379
|
-
"name": "distributionNftId",
|
380
|
-
"type": "uint96"
|
381
|
-
},
|
382
|
-
{
|
383
|
-
"internalType": "ReferralId",
|
384
|
-
"name": "referralId",
|
385
|
-
"type": "bytes8"
|
386
|
-
}
|
387
|
-
],
|
388
|
-
"name": "ErrorIDistributionServiceReferralInvalid",
|
389
|
-
"type": "error"
|
390
|
-
},
|
391
|
-
{
|
392
|
-
"inputs": [
|
393
|
-
{
|
394
|
-
"internalType": "address",
|
395
|
-
"name": "caller",
|
396
|
-
"type": "address"
|
397
|
-
}
|
398
|
-
],
|
399
|
-
"name": "ErrorIServiceCallerUnknown",
|
400
|
-
"type": "error"
|
401
|
-
},
|
402
|
-
{
|
403
|
-
"inputs": [
|
404
|
-
{
|
405
|
-
"internalType": "NftId",
|
406
|
-
"name": "nftId",
|
407
|
-
"type": "uint96"
|
408
|
-
}
|
409
|
-
],
|
410
|
-
"name": "ErrorNftOwnableAlreadyLinked",
|
411
|
-
"type": "error"
|
412
|
-
},
|
413
|
-
{
|
414
|
-
"inputs": [
|
415
|
-
{
|
416
|
-
"internalType": "address",
|
417
|
-
"name": "contractAddress",
|
418
|
-
"type": "address"
|
419
|
-
}
|
420
|
-
],
|
421
|
-
"name": "ErrorNftOwnableContractNotRegistered",
|
422
|
-
"type": "error"
|
423
|
-
},
|
424
|
-
{
|
425
|
-
"inputs": [],
|
426
|
-
"name": "ErrorNftOwnableInitialOwnerZero",
|
427
|
-
"type": "error"
|
428
|
-
},
|
429
|
-
{
|
430
|
-
"inputs": [
|
431
|
-
{
|
432
|
-
"internalType": "address",
|
433
|
-
"name": "account",
|
434
|
-
"type": "address"
|
435
|
-
}
|
436
|
-
],
|
437
|
-
"name": "ErrorNftOwnableNotOwner",
|
438
|
-
"type": "error"
|
439
|
-
},
|
440
|
-
{
|
441
|
-
"inputs": [
|
442
|
-
{
|
443
|
-
"internalType": "address",
|
444
|
-
"name": "registryAddress",
|
445
|
-
"type": "address"
|
446
|
-
}
|
447
|
-
],
|
448
|
-
"name": "ErrorNotRegistry",
|
449
|
-
"type": "error"
|
450
|
-
},
|
451
|
-
{
|
452
|
-
"inputs": [],
|
453
|
-
"name": "InvalidInitialization",
|
454
|
-
"type": "error"
|
455
|
-
},
|
456
|
-
{
|
457
|
-
"inputs": [],
|
458
|
-
"name": "NotInitializing",
|
459
|
-
"type": "error"
|
460
|
-
},
|
461
|
-
{
|
462
|
-
"anonymous": false,
|
463
|
-
"inputs": [
|
464
|
-
{
|
465
|
-
"indexed": false,
|
466
|
-
"internalType": "address",
|
467
|
-
"name": "authority",
|
468
|
-
"type": "address"
|
469
|
-
}
|
470
|
-
],
|
471
|
-
"name": "AuthorityUpdated",
|
472
|
-
"type": "event"
|
473
|
-
},
|
474
|
-
{
|
475
|
-
"anonymous": false,
|
476
|
-
"inputs": [
|
477
|
-
{
|
478
|
-
"indexed": false,
|
479
|
-
"internalType": "uint64",
|
480
|
-
"name": "version",
|
481
|
-
"type": "uint64"
|
482
|
-
}
|
483
|
-
],
|
484
|
-
"name": "Initialized",
|
485
|
-
"type": "event"
|
486
|
-
},
|
487
|
-
{
|
488
|
-
"inputs": [],
|
489
|
-
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
490
|
-
"outputs": [
|
491
|
-
{
|
492
|
-
"internalType": "bytes32",
|
493
|
-
"name": "",
|
494
|
-
"type": "bytes32"
|
495
|
-
}
|
496
|
-
],
|
497
|
-
"stateMutability": "view",
|
498
|
-
"type": "function"
|
499
|
-
},
|
500
|
-
{
|
501
|
-
"inputs": [],
|
502
|
-
"name": "REGISTERABLE_LOCATION_V1",
|
503
|
-
"outputs": [
|
504
|
-
{
|
505
|
-
"internalType": "bytes32",
|
506
|
-
"name": "",
|
507
|
-
"type": "bytes32"
|
508
|
-
}
|
509
|
-
],
|
510
|
-
"stateMutability": "view",
|
511
|
-
"type": "function"
|
512
|
-
},
|
513
|
-
{
|
514
|
-
"inputs": [],
|
515
|
-
"name": "authority",
|
516
|
-
"outputs": [
|
517
|
-
{
|
518
|
-
"internalType": "address",
|
519
|
-
"name": "",
|
520
|
-
"type": "address"
|
521
|
-
}
|
522
|
-
],
|
523
|
-
"stateMutability": "view",
|
524
|
-
"type": "function"
|
525
|
-
},
|
526
|
-
{
|
527
|
-
"inputs": [
|
528
|
-
{
|
529
|
-
"internalType": "NftId",
|
530
|
-
"name": "distributionNftId",
|
531
|
-
"type": "uint96"
|
532
|
-
},
|
533
|
-
{
|
534
|
-
"internalType": "ReferralId",
|
535
|
-
"name": "referralId",
|
536
|
-
"type": "bytes8"
|
537
|
-
},
|
538
|
-
{
|
539
|
-
"components": [
|
540
|
-
{
|
541
|
-
"internalType": "uint256",
|
542
|
-
"name": "netPremiumAmount",
|
543
|
-
"type": "uint256"
|
544
|
-
},
|
545
|
-
{
|
546
|
-
"internalType": "uint256",
|
547
|
-
"name": "fullPremiumAmount",
|
548
|
-
"type": "uint256"
|
549
|
-
},
|
550
|
-
{
|
551
|
-
"internalType": "uint256",
|
552
|
-
"name": "premiumAmount",
|
553
|
-
"type": "uint256"
|
554
|
-
},
|
555
|
-
{
|
556
|
-
"internalType": "uint256",
|
557
|
-
"name": "productFeeFixAmount",
|
558
|
-
"type": "uint256"
|
559
|
-
},
|
560
|
-
{
|
561
|
-
"internalType": "uint256",
|
562
|
-
"name": "poolFeeFixAmount",
|
563
|
-
"type": "uint256"
|
564
|
-
},
|
565
|
-
{
|
566
|
-
"internalType": "uint256",
|
567
|
-
"name": "bundleFeeFixAmount",
|
568
|
-
"type": "uint256"
|
569
|
-
},
|
570
|
-
{
|
571
|
-
"internalType": "uint256",
|
572
|
-
"name": "distributionFeeFixAmount",
|
573
|
-
"type": "uint256"
|
574
|
-
},
|
575
|
-
{
|
576
|
-
"internalType": "uint256",
|
577
|
-
"name": "productFeeVarAmount",
|
578
|
-
"type": "uint256"
|
579
|
-
},
|
580
|
-
{
|
581
|
-
"internalType": "uint256",
|
582
|
-
"name": "poolFeeVarAmount",
|
583
|
-
"type": "uint256"
|
584
|
-
},
|
585
|
-
{
|
586
|
-
"internalType": "uint256",
|
587
|
-
"name": "bundleFeeVarAmount",
|
588
|
-
"type": "uint256"
|
589
|
-
},
|
590
|
-
{
|
591
|
-
"internalType": "uint256",
|
592
|
-
"name": "distributionFeeVarAmount",
|
593
|
-
"type": "uint256"
|
594
|
-
},
|
595
|
-
{
|
596
|
-
"internalType": "uint256",
|
597
|
-
"name": "distributionOwnerFeeFixAmount",
|
598
|
-
"type": "uint256"
|
599
|
-
},
|
600
|
-
{
|
601
|
-
"internalType": "uint256",
|
602
|
-
"name": "distributionOwnerFeeVarAmount",
|
603
|
-
"type": "uint256"
|
604
|
-
},
|
605
|
-
{
|
606
|
-
"internalType": "uint256",
|
607
|
-
"name": "commissionAmount",
|
608
|
-
"type": "uint256"
|
609
|
-
},
|
610
|
-
{
|
611
|
-
"internalType": "uint256",
|
612
|
-
"name": "discountAmount",
|
613
|
-
"type": "uint256"
|
614
|
-
}
|
615
|
-
],
|
616
|
-
"internalType": "struct IPolicy.Premium",
|
617
|
-
"name": "premium",
|
618
|
-
"type": "tuple"
|
619
|
-
}
|
620
|
-
],
|
621
|
-
"name": "calculateFeeAmount",
|
622
|
-
"outputs": [
|
623
|
-
{
|
624
|
-
"components": [
|
625
|
-
{
|
626
|
-
"internalType": "uint256",
|
627
|
-
"name": "netPremiumAmount",
|
628
|
-
"type": "uint256"
|
629
|
-
},
|
630
|
-
{
|
631
|
-
"internalType": "uint256",
|
632
|
-
"name": "fullPremiumAmount",
|
633
|
-
"type": "uint256"
|
634
|
-
},
|
635
|
-
{
|
636
|
-
"internalType": "uint256",
|
637
|
-
"name": "premiumAmount",
|
638
|
-
"type": "uint256"
|
639
|
-
},
|
640
|
-
{
|
641
|
-
"internalType": "uint256",
|
642
|
-
"name": "productFeeFixAmount",
|
643
|
-
"type": "uint256"
|
644
|
-
},
|
645
|
-
{
|
646
|
-
"internalType": "uint256",
|
647
|
-
"name": "poolFeeFixAmount",
|
648
|
-
"type": "uint256"
|
649
|
-
},
|
650
|
-
{
|
651
|
-
"internalType": "uint256",
|
652
|
-
"name": "bundleFeeFixAmount",
|
653
|
-
"type": "uint256"
|
654
|
-
},
|
655
|
-
{
|
656
|
-
"internalType": "uint256",
|
657
|
-
"name": "distributionFeeFixAmount",
|
658
|
-
"type": "uint256"
|
659
|
-
},
|
660
|
-
{
|
661
|
-
"internalType": "uint256",
|
662
|
-
"name": "productFeeVarAmount",
|
663
|
-
"type": "uint256"
|
664
|
-
},
|
665
|
-
{
|
666
|
-
"internalType": "uint256",
|
667
|
-
"name": "poolFeeVarAmount",
|
668
|
-
"type": "uint256"
|
669
|
-
},
|
670
|
-
{
|
671
|
-
"internalType": "uint256",
|
672
|
-
"name": "bundleFeeVarAmount",
|
673
|
-
"type": "uint256"
|
674
|
-
},
|
675
|
-
{
|
676
|
-
"internalType": "uint256",
|
677
|
-
"name": "distributionFeeVarAmount",
|
678
|
-
"type": "uint256"
|
679
|
-
},
|
680
|
-
{
|
681
|
-
"internalType": "uint256",
|
682
|
-
"name": "distributionOwnerFeeFixAmount",
|
683
|
-
"type": "uint256"
|
684
|
-
},
|
685
|
-
{
|
686
|
-
"internalType": "uint256",
|
687
|
-
"name": "distributionOwnerFeeVarAmount",
|
688
|
-
"type": "uint256"
|
689
|
-
},
|
690
|
-
{
|
691
|
-
"internalType": "uint256",
|
692
|
-
"name": "commissionAmount",
|
693
|
-
"type": "uint256"
|
694
|
-
},
|
695
|
-
{
|
696
|
-
"internalType": "uint256",
|
697
|
-
"name": "discountAmount",
|
698
|
-
"type": "uint256"
|
699
|
-
}
|
700
|
-
],
|
701
|
-
"internalType": "struct IPolicy.Premium",
|
702
|
-
"name": "finalPremium",
|
703
|
-
"type": "tuple"
|
704
|
-
}
|
705
|
-
],
|
706
|
-
"stateMutability": "view",
|
707
|
-
"type": "function"
|
708
|
-
},
|
709
|
-
{
|
710
|
-
"inputs": [
|
711
|
-
{
|
712
|
-
"internalType": "address",
|
713
|
-
"name": "distributor",
|
714
|
-
"type": "address"
|
715
|
-
},
|
716
|
-
{
|
717
|
-
"internalType": "DistributorType",
|
718
|
-
"name": "distributorType",
|
719
|
-
"type": "bytes8"
|
720
|
-
},
|
721
|
-
{
|
722
|
-
"internalType": "bytes",
|
723
|
-
"name": "data",
|
724
|
-
"type": "bytes"
|
725
|
-
}
|
726
|
-
],
|
727
|
-
"name": "createDistributor",
|
728
|
-
"outputs": [
|
729
|
-
{
|
730
|
-
"internalType": "NftId",
|
731
|
-
"name": "distributorNftId",
|
732
|
-
"type": "uint96"
|
733
|
-
}
|
734
|
-
],
|
735
|
-
"stateMutability": "nonpayable",
|
736
|
-
"type": "function"
|
737
|
-
},
|
738
|
-
{
|
739
|
-
"inputs": [
|
740
|
-
{
|
741
|
-
"internalType": "string",
|
742
|
-
"name": "name",
|
743
|
-
"type": "string"
|
744
|
-
},
|
745
|
-
{
|
746
|
-
"internalType": "UFixed",
|
747
|
-
"name": "minDiscountPercentage",
|
748
|
-
"type": "uint256"
|
749
|
-
},
|
750
|
-
{
|
751
|
-
"internalType": "UFixed",
|
752
|
-
"name": "maxDiscountPercentage",
|
753
|
-
"type": "uint256"
|
754
|
-
},
|
755
|
-
{
|
756
|
-
"internalType": "UFixed",
|
757
|
-
"name": "commissionPercentage",
|
758
|
-
"type": "uint256"
|
759
|
-
},
|
760
|
-
{
|
761
|
-
"internalType": "uint32",
|
762
|
-
"name": "maxReferralCount",
|
763
|
-
"type": "uint32"
|
764
|
-
},
|
765
|
-
{
|
766
|
-
"internalType": "uint32",
|
767
|
-
"name": "maxReferralLifetime",
|
768
|
-
"type": "uint32"
|
769
|
-
},
|
770
|
-
{
|
771
|
-
"internalType": "bool",
|
772
|
-
"name": "allowSelfReferrals",
|
773
|
-
"type": "bool"
|
774
|
-
},
|
775
|
-
{
|
776
|
-
"internalType": "bool",
|
777
|
-
"name": "allowRenewals",
|
778
|
-
"type": "bool"
|
779
|
-
},
|
780
|
-
{
|
781
|
-
"internalType": "bytes",
|
782
|
-
"name": "data",
|
783
|
-
"type": "bytes"
|
784
|
-
}
|
785
|
-
],
|
786
|
-
"name": "createDistributorType",
|
787
|
-
"outputs": [
|
788
|
-
{
|
789
|
-
"internalType": "DistributorType",
|
790
|
-
"name": "distributorType",
|
791
|
-
"type": "bytes8"
|
792
|
-
}
|
793
|
-
],
|
794
|
-
"stateMutability": "nonpayable",
|
795
|
-
"type": "function"
|
796
|
-
},
|
797
|
-
{
|
798
|
-
"inputs": [
|
799
|
-
{
|
800
|
-
"internalType": "NftId",
|
801
|
-
"name": "distributorNftId",
|
802
|
-
"type": "uint96"
|
803
|
-
},
|
804
|
-
{
|
805
|
-
"internalType": "string",
|
806
|
-
"name": "code",
|
807
|
-
"type": "string"
|
808
|
-
},
|
809
|
-
{
|
810
|
-
"internalType": "UFixed",
|
811
|
-
"name": "discountPercentage",
|
812
|
-
"type": "uint256"
|
813
|
-
},
|
814
|
-
{
|
815
|
-
"internalType": "uint32",
|
816
|
-
"name": "maxReferrals",
|
817
|
-
"type": "uint32"
|
818
|
-
},
|
819
|
-
{
|
820
|
-
"internalType": "Timestamp",
|
821
|
-
"name": "expiryAt",
|
822
|
-
"type": "uint40"
|
823
|
-
},
|
824
|
-
{
|
825
|
-
"internalType": "bytes",
|
826
|
-
"name": "data",
|
827
|
-
"type": "bytes"
|
828
|
-
}
|
829
|
-
],
|
830
|
-
"name": "createReferral",
|
831
|
-
"outputs": [
|
832
|
-
{
|
833
|
-
"internalType": "ReferralId",
|
834
|
-
"name": "referralId",
|
835
|
-
"type": "bytes8"
|
836
|
-
}
|
837
|
-
],
|
838
|
-
"stateMutability": "nonpayable",
|
839
|
-
"type": "function"
|
840
|
-
},
|
841
|
-
{
|
842
|
-
"inputs": [],
|
843
|
-
"name": "getDomain",
|
844
|
-
"outputs": [
|
845
|
-
{
|
846
|
-
"internalType": "ObjectType",
|
847
|
-
"name": "",
|
848
|
-
"type": "uint8"
|
849
|
-
}
|
850
|
-
],
|
851
|
-
"stateMutability": "pure",
|
852
|
-
"type": "function"
|
853
|
-
},
|
854
|
-
{
|
855
|
-
"inputs": [],
|
856
|
-
"name": "getInitialInfo",
|
857
|
-
"outputs": [
|
858
|
-
{
|
859
|
-
"components": [
|
860
|
-
{
|
861
|
-
"internalType": "NftId",
|
862
|
-
"name": "nftId",
|
863
|
-
"type": "uint96"
|
864
|
-
},
|
865
|
-
{
|
866
|
-
"internalType": "NftId",
|
867
|
-
"name": "parentNftId",
|
868
|
-
"type": "uint96"
|
869
|
-
},
|
870
|
-
{
|
871
|
-
"internalType": "ObjectType",
|
872
|
-
"name": "objectType",
|
873
|
-
"type": "uint8"
|
874
|
-
},
|
875
|
-
{
|
876
|
-
"internalType": "bool",
|
877
|
-
"name": "isInterceptor",
|
878
|
-
"type": "bool"
|
879
|
-
},
|
880
|
-
{
|
881
|
-
"internalType": "address",
|
882
|
-
"name": "objectAddress",
|
883
|
-
"type": "address"
|
884
|
-
},
|
885
|
-
{
|
886
|
-
"internalType": "address",
|
887
|
-
"name": "initialOwner",
|
888
|
-
"type": "address"
|
889
|
-
},
|
890
|
-
{
|
891
|
-
"internalType": "bytes",
|
892
|
-
"name": "data",
|
893
|
-
"type": "bytes"
|
894
|
-
}
|
895
|
-
],
|
896
|
-
"internalType": "struct IRegistry.ObjectInfo",
|
897
|
-
"name": "info",
|
898
|
-
"type": "tuple"
|
899
|
-
}
|
900
|
-
],
|
901
|
-
"stateMutability": "view",
|
902
|
-
"type": "function"
|
903
|
-
},
|
904
|
-
{
|
905
|
-
"inputs": [],
|
906
|
-
"name": "getInstanceService",
|
907
|
-
"outputs": [
|
908
|
-
{
|
909
|
-
"internalType": "contract InstanceService",
|
910
|
-
"name": "",
|
911
|
-
"type": "address"
|
912
|
-
}
|
913
|
-
],
|
914
|
-
"stateMutability": "view",
|
915
|
-
"type": "function"
|
916
|
-
},
|
917
|
-
{
|
918
|
-
"inputs": [],
|
919
|
-
"name": "getMajorVersion",
|
920
|
-
"outputs": [
|
921
|
-
{
|
922
|
-
"internalType": "VersionPart",
|
923
|
-
"name": "majorVersion",
|
924
|
-
"type": "uint8"
|
925
|
-
}
|
926
|
-
],
|
927
|
-
"stateMutability": "view",
|
928
|
-
"type": "function"
|
929
|
-
},
|
930
|
-
{
|
931
|
-
"inputs": [],
|
932
|
-
"name": "getNftId",
|
933
|
-
"outputs": [
|
934
|
-
{
|
935
|
-
"internalType": "NftId",
|
936
|
-
"name": "",
|
937
|
-
"type": "uint96"
|
938
|
-
}
|
939
|
-
],
|
940
|
-
"stateMutability": "view",
|
941
|
-
"type": "function"
|
942
|
-
},
|
943
|
-
{
|
944
|
-
"inputs": [],
|
945
|
-
"name": "getOwner",
|
946
|
-
"outputs": [
|
947
|
-
{
|
948
|
-
"internalType": "address",
|
949
|
-
"name": "",
|
950
|
-
"type": "address"
|
951
|
-
}
|
952
|
-
],
|
953
|
-
"stateMutability": "view",
|
954
|
-
"type": "function"
|
955
|
-
},
|
956
|
-
{
|
957
|
-
"inputs": [],
|
958
|
-
"name": "getRegistry",
|
959
|
-
"outputs": [
|
960
|
-
{
|
961
|
-
"internalType": "contract IRegistry",
|
962
|
-
"name": "",
|
963
|
-
"type": "address"
|
964
|
-
}
|
965
|
-
],
|
966
|
-
"stateMutability": "view",
|
967
|
-
"type": "function"
|
968
|
-
},
|
969
|
-
{
|
970
|
-
"inputs": [],
|
971
|
-
"name": "getRegistryAddress",
|
972
|
-
"outputs": [
|
973
|
-
{
|
974
|
-
"internalType": "address",
|
975
|
-
"name": "",
|
976
|
-
"type": "address"
|
977
|
-
}
|
978
|
-
],
|
979
|
-
"stateMutability": "view",
|
980
|
-
"type": "function"
|
981
|
-
},
|
982
|
-
{
|
983
|
-
"inputs": [],
|
984
|
-
"name": "getRegistryService",
|
985
|
-
"outputs": [
|
986
|
-
{
|
987
|
-
"internalType": "contract IRegistryService",
|
988
|
-
"name": "",
|
989
|
-
"type": "address"
|
990
|
-
}
|
991
|
-
],
|
992
|
-
"stateMutability": "view",
|
993
|
-
"type": "function"
|
994
|
-
},
|
995
|
-
{
|
996
|
-
"inputs": [],
|
997
|
-
"name": "getVersion",
|
998
|
-
"outputs": [
|
999
|
-
{
|
1000
|
-
"internalType": "Version",
|
1001
|
-
"name": "",
|
1002
|
-
"type": "uint24"
|
1003
|
-
}
|
1004
|
-
],
|
1005
|
-
"stateMutability": "pure",
|
1006
|
-
"type": "function"
|
1007
|
-
},
|
1008
|
-
{
|
1009
|
-
"inputs": [],
|
1010
|
-
"name": "initializeERC165",
|
1011
|
-
"outputs": [],
|
1012
|
-
"stateMutability": "nonpayable",
|
1013
|
-
"type": "function"
|
1014
|
-
},
|
1015
|
-
{
|
1016
|
-
"inputs": [
|
1017
|
-
{
|
1018
|
-
"internalType": "address",
|
1019
|
-
"name": "initialOwner",
|
1020
|
-
"type": "address"
|
1021
|
-
},
|
1022
|
-
{
|
1023
|
-
"internalType": "address",
|
1024
|
-
"name": "registryAddress",
|
1025
|
-
"type": "address"
|
1026
|
-
}
|
1027
|
-
],
|
1028
|
-
"name": "initializeNftOwnable",
|
1029
|
-
"outputs": [],
|
1030
|
-
"stateMutability": "nonpayable",
|
1031
|
-
"type": "function"
|
1032
|
-
},
|
1033
|
-
{
|
1034
|
-
"inputs": [
|
1035
|
-
{
|
1036
|
-
"internalType": "address",
|
1037
|
-
"name": "registryAddress",
|
1038
|
-
"type": "address"
|
1039
|
-
},
|
1040
|
-
{
|
1041
|
-
"internalType": "NftId",
|
1042
|
-
"name": "parentNftId",
|
1043
|
-
"type": "uint96"
|
1044
|
-
},
|
1045
|
-
{
|
1046
|
-
"internalType": "ObjectType",
|
1047
|
-
"name": "objectType",
|
1048
|
-
"type": "uint8"
|
1049
|
-
},
|
1050
|
-
{
|
1051
|
-
"internalType": "bool",
|
1052
|
-
"name": "isInterceptor",
|
1053
|
-
"type": "bool"
|
1054
|
-
},
|
1055
|
-
{
|
1056
|
-
"internalType": "address",
|
1057
|
-
"name": "initialOwner",
|
1058
|
-
"type": "address"
|
1059
|
-
},
|
1060
|
-
{
|
1061
|
-
"internalType": "bytes",
|
1062
|
-
"name": "registryData",
|
1063
|
-
"type": "bytes"
|
1064
|
-
}
|
1065
|
-
],
|
1066
|
-
"name": "initializeRegisterable",
|
1067
|
-
"outputs": [],
|
1068
|
-
"stateMutability": "nonpayable",
|
1069
|
-
"type": "function"
|
1070
|
-
},
|
1071
|
-
{
|
1072
|
-
"inputs": [
|
1073
|
-
{
|
1074
|
-
"internalType": "address",
|
1075
|
-
"name": "registryAddress",
|
1076
|
-
"type": "address"
|
1077
|
-
}
|
1078
|
-
],
|
1079
|
-
"name": "initializeRegistryLinked",
|
1080
|
-
"outputs": [],
|
1081
|
-
"stateMutability": "nonpayable",
|
1082
|
-
"type": "function"
|
1083
|
-
},
|
1084
|
-
{
|
1085
|
-
"inputs": [
|
1086
|
-
{
|
1087
|
-
"internalType": "address",
|
1088
|
-
"name": "registry",
|
1089
|
-
"type": "address"
|
1090
|
-
},
|
1091
|
-
{
|
1092
|
-
"internalType": "address",
|
1093
|
-
"name": "initialOwner",
|
1094
|
-
"type": "address"
|
1095
|
-
}
|
1096
|
-
],
|
1097
|
-
"name": "initializeService",
|
1098
|
-
"outputs": [],
|
1099
|
-
"stateMutability": "nonpayable",
|
1100
|
-
"type": "function"
|
1101
|
-
},
|
1102
|
-
{
|
1103
|
-
"inputs": [
|
1104
|
-
{
|
1105
|
-
"internalType": "address",
|
1106
|
-
"name": "activatedBy",
|
1107
|
-
"type": "address"
|
1108
|
-
},
|
1109
|
-
{
|
1110
|
-
"internalType": "bytes",
|
1111
|
-
"name": "data",
|
1112
|
-
"type": "bytes"
|
1113
|
-
}
|
1114
|
-
],
|
1115
|
-
"name": "initializeVersionable",
|
1116
|
-
"outputs": [],
|
1117
|
-
"stateMutability": "nonpayable",
|
1118
|
-
"type": "function"
|
1119
|
-
},
|
1120
|
-
{
|
1121
|
-
"inputs": [],
|
1122
|
-
"name": "isConsumingScheduledOp",
|
1123
|
-
"outputs": [
|
1124
|
-
{
|
1125
|
-
"internalType": "bytes4",
|
1126
|
-
"name": "",
|
1127
|
-
"type": "bytes4"
|
1128
|
-
}
|
1129
|
-
],
|
1130
|
-
"stateMutability": "view",
|
1131
|
-
"type": "function"
|
1132
|
-
},
|
1133
|
-
{
|
1134
|
-
"inputs": [],
|
1135
|
-
"name": "linkToRegisteredNftId",
|
1136
|
-
"outputs": [],
|
1137
|
-
"stateMutability": "nonpayable",
|
1138
|
-
"type": "function"
|
1139
|
-
},
|
1140
|
-
{
|
1141
|
-
"inputs": [
|
1142
|
-
{
|
1143
|
-
"internalType": "NftId",
|
1144
|
-
"name": "distributionNftId",
|
1145
|
-
"type": "uint96"
|
1146
|
-
},
|
1147
|
-
{
|
1148
|
-
"internalType": "ReferralId",
|
1149
|
-
"name": "referralId",
|
1150
|
-
"type": "bytes8"
|
1151
|
-
},
|
1152
|
-
{
|
1153
|
-
"components": [
|
1154
|
-
{
|
1155
|
-
"internalType": "uint256",
|
1156
|
-
"name": "netPremiumAmount",
|
1157
|
-
"type": "uint256"
|
1158
|
-
},
|
1159
|
-
{
|
1160
|
-
"internalType": "uint256",
|
1161
|
-
"name": "fullPremiumAmount",
|
1162
|
-
"type": "uint256"
|
1163
|
-
},
|
1164
|
-
{
|
1165
|
-
"internalType": "uint256",
|
1166
|
-
"name": "premiumAmount",
|
1167
|
-
"type": "uint256"
|
1168
|
-
},
|
1169
|
-
{
|
1170
|
-
"internalType": "uint256",
|
1171
|
-
"name": "productFeeFixAmount",
|
1172
|
-
"type": "uint256"
|
1173
|
-
},
|
1174
|
-
{
|
1175
|
-
"internalType": "uint256",
|
1176
|
-
"name": "poolFeeFixAmount",
|
1177
|
-
"type": "uint256"
|
1178
|
-
},
|
1179
|
-
{
|
1180
|
-
"internalType": "uint256",
|
1181
|
-
"name": "bundleFeeFixAmount",
|
1182
|
-
"type": "uint256"
|
1183
|
-
},
|
1184
|
-
{
|
1185
|
-
"internalType": "uint256",
|
1186
|
-
"name": "distributionFeeFixAmount",
|
1187
|
-
"type": "uint256"
|
1188
|
-
},
|
1189
|
-
{
|
1190
|
-
"internalType": "uint256",
|
1191
|
-
"name": "productFeeVarAmount",
|
1192
|
-
"type": "uint256"
|
1193
|
-
},
|
1194
|
-
{
|
1195
|
-
"internalType": "uint256",
|
1196
|
-
"name": "poolFeeVarAmount",
|
1197
|
-
"type": "uint256"
|
1198
|
-
},
|
1199
|
-
{
|
1200
|
-
"internalType": "uint256",
|
1201
|
-
"name": "bundleFeeVarAmount",
|
1202
|
-
"type": "uint256"
|
1203
|
-
},
|
1204
|
-
{
|
1205
|
-
"internalType": "uint256",
|
1206
|
-
"name": "distributionFeeVarAmount",
|
1207
|
-
"type": "uint256"
|
1208
|
-
},
|
1209
|
-
{
|
1210
|
-
"internalType": "uint256",
|
1211
|
-
"name": "distributionOwnerFeeFixAmount",
|
1212
|
-
"type": "uint256"
|
1213
|
-
},
|
1214
|
-
{
|
1215
|
-
"internalType": "uint256",
|
1216
|
-
"name": "distributionOwnerFeeVarAmount",
|
1217
|
-
"type": "uint256"
|
1218
|
-
},
|
1219
|
-
{
|
1220
|
-
"internalType": "uint256",
|
1221
|
-
"name": "commissionAmount",
|
1222
|
-
"type": "uint256"
|
1223
|
-
},
|
1224
|
-
{
|
1225
|
-
"internalType": "uint256",
|
1226
|
-
"name": "discountAmount",
|
1227
|
-
"type": "uint256"
|
1228
|
-
}
|
1229
|
-
],
|
1230
|
-
"internalType": "struct IPolicy.Premium",
|
1231
|
-
"name": "premium",
|
1232
|
-
"type": "tuple"
|
1233
|
-
},
|
1234
|
-
{
|
1235
|
-
"internalType": "uint256",
|
1236
|
-
"name": "transferredDistributionFeeAmount",
|
1237
|
-
"type": "uint256"
|
1238
|
-
}
|
1239
|
-
],
|
1240
|
-
"name": "processSale",
|
1241
|
-
"outputs": [],
|
1242
|
-
"stateMutability": "nonpayable",
|
1243
|
-
"type": "function"
|
1244
|
-
},
|
1245
|
-
{
|
1246
|
-
"inputs": [
|
1247
|
-
{
|
1248
|
-
"internalType": "NftId",
|
1249
|
-
"name": "distributionNftId",
|
1250
|
-
"type": "uint96"
|
1251
|
-
},
|
1252
|
-
{
|
1253
|
-
"internalType": "ReferralId",
|
1254
|
-
"name": "referralId",
|
1255
|
-
"type": "bytes8"
|
1256
|
-
}
|
1257
|
-
],
|
1258
|
-
"name": "referralIsValid",
|
1259
|
-
"outputs": [
|
1260
|
-
{
|
1261
|
-
"internalType": "bool",
|
1262
|
-
"name": "isValid",
|
1263
|
-
"type": "bool"
|
1264
|
-
}
|
1265
|
-
],
|
1266
|
-
"stateMutability": "view",
|
1267
|
-
"type": "function"
|
1268
|
-
},
|
1269
|
-
{
|
1270
|
-
"inputs": [
|
1271
|
-
{
|
1272
|
-
"internalType": "address",
|
1273
|
-
"name": "distributionAddress",
|
1274
|
-
"type": "address"
|
1275
|
-
}
|
1276
|
-
],
|
1277
|
-
"name": "register",
|
1278
|
-
"outputs": [
|
1279
|
-
{
|
1280
|
-
"internalType": "NftId",
|
1281
|
-
"name": "distributionNftId",
|
1282
|
-
"type": "uint96"
|
1283
|
-
}
|
1284
|
-
],
|
1285
|
-
"stateMutability": "nonpayable",
|
1286
|
-
"type": "function"
|
1287
|
-
},
|
1288
|
-
{
|
1289
|
-
"inputs": [
|
1290
|
-
{
|
1291
|
-
"internalType": "bytes4",
|
1292
|
-
"name": "interfaceId",
|
1293
|
-
"type": "bytes4"
|
1294
|
-
}
|
1295
|
-
],
|
1296
|
-
"name": "registerInterface",
|
1297
|
-
"outputs": [],
|
1298
|
-
"stateMutability": "nonpayable",
|
1299
|
-
"type": "function"
|
1300
|
-
},
|
1301
|
-
{
|
1302
|
-
"inputs": [
|
1303
|
-
{
|
1304
|
-
"internalType": "address",
|
1305
|
-
"name": "newAuthority",
|
1306
|
-
"type": "address"
|
1307
|
-
}
|
1308
|
-
],
|
1309
|
-
"name": "setAuthority",
|
1310
|
-
"outputs": [],
|
1311
|
-
"stateMutability": "nonpayable",
|
1312
|
-
"type": "function"
|
1313
|
-
},
|
1314
|
-
{
|
1315
|
-
"inputs": [
|
1316
|
-
{
|
1317
|
-
"components": [
|
1318
|
-
{
|
1319
|
-
"internalType": "UFixed",
|
1320
|
-
"name": "fractionalFee",
|
1321
|
-
"type": "uint256"
|
1322
|
-
},
|
1323
|
-
{
|
1324
|
-
"internalType": "uint256",
|
1325
|
-
"name": "fixedFee",
|
1326
|
-
"type": "uint256"
|
1327
|
-
}
|
1328
|
-
],
|
1329
|
-
"internalType": "struct Fee",
|
1330
|
-
"name": "minDistributionOwnerFee",
|
1331
|
-
"type": "tuple"
|
1332
|
-
},
|
1333
|
-
{
|
1334
|
-
"components": [
|
1335
|
-
{
|
1336
|
-
"internalType": "UFixed",
|
1337
|
-
"name": "fractionalFee",
|
1338
|
-
"type": "uint256"
|
1339
|
-
},
|
1340
|
-
{
|
1341
|
-
"internalType": "uint256",
|
1342
|
-
"name": "fixedFee",
|
1343
|
-
"type": "uint256"
|
1344
|
-
}
|
1345
|
-
],
|
1346
|
-
"internalType": "struct Fee",
|
1347
|
-
"name": "distributionFee",
|
1348
|
-
"type": "tuple"
|
1349
|
-
}
|
1350
|
-
],
|
1351
|
-
"name": "setFees",
|
1352
|
-
"outputs": [],
|
1353
|
-
"stateMutability": "nonpayable",
|
1354
|
-
"type": "function"
|
1355
|
-
},
|
1356
|
-
{
|
1357
|
-
"inputs": [
|
1358
|
-
{
|
1359
|
-
"internalType": "bytes4",
|
1360
|
-
"name": "interfaceId",
|
1361
|
-
"type": "bytes4"
|
1362
|
-
}
|
1363
|
-
],
|
1364
|
-
"name": "supportsInterface",
|
1365
|
-
"outputs": [
|
1366
|
-
{
|
1367
|
-
"internalType": "bool",
|
1368
|
-
"name": "",
|
1369
|
-
"type": "bool"
|
1370
|
-
}
|
1371
|
-
],
|
1372
|
-
"stateMutability": "view",
|
1373
|
-
"type": "function"
|
1374
|
-
},
|
1375
|
-
{
|
1376
|
-
"inputs": [
|
1377
|
-
{
|
1378
|
-
"internalType": "NftId",
|
1379
|
-
"name": "distributorNftId",
|
1380
|
-
"type": "uint96"
|
1381
|
-
},
|
1382
|
-
{
|
1383
|
-
"internalType": "DistributorType",
|
1384
|
-
"name": "distributorType",
|
1385
|
-
"type": "bytes8"
|
1386
|
-
},
|
1387
|
-
{
|
1388
|
-
"internalType": "bytes",
|
1389
|
-
"name": "data",
|
1390
|
-
"type": "bytes"
|
1391
|
-
}
|
1392
|
-
],
|
1393
|
-
"name": "updateDistributorType",
|
1394
|
-
"outputs": [],
|
1395
|
-
"stateMutability": "nonpayable",
|
1396
|
-
"type": "function"
|
1397
|
-
},
|
1398
|
-
{
|
1399
|
-
"inputs": [
|
1400
|
-
{
|
1401
|
-
"internalType": "bytes",
|
1402
|
-
"name": "data",
|
1403
|
-
"type": "bytes"
|
1404
|
-
}
|
1405
|
-
],
|
1406
|
-
"name": "upgradeVersionable",
|
1407
|
-
"outputs": [],
|
1408
|
-
"stateMutability": "nonpayable",
|
1409
|
-
"type": "function"
|
1410
|
-
}
|
1411
|
-
],
|
1412
|
-
"bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615f9b80620000e66000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063644c45e01161011a578063b6b412ba116100ad578063cde749f41161007c578063cde749f414610561578063d25f509514610569578063ea8665721461057c578063f21de1e81461043e578063f7c34ee01461058f57600080fd5b8063b6b412ba14610520578063bf7e214f14610533578063caf4e3d414610551578063cc9fc59a1461055957600080fd5b80638dd2b781116100e95780638dd2b781146104c25780638fb36037146104d5578063ada9652e146104f6578063b68d18091461050b57600080fd5b8063644c45e014610476578063675393bf146104945780637a9e5e4b146104a7578063893d20e8146104ba57600080fd5b806327bb7a331161019d5780633d683fd91161016c5780633d683fd9146103ed5780634420e4861461040057806349bb9e4b1461042b5780635ab1bd531461043e5780635dcb3bae1461046357600080fd5b806327bb7a331461039f5780632b5198b1146103b2578063329d6e74146103d257806336fc697e146103e557600080fd5b80631eff4b22116101d95780631eff4b2214610288578063214cdb80146102bd578063219a3195146102d057806325d073841461038c57600080fd5b806301ffc9a71461020b5780630d8e6e2c1461024d5780630fec111c14610269578063138461e01461027e575b600080fd5b610238610219366004614aba565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102556105a2565b60405162ffffff9091168152602001610244565b61027161062c565b6040516102449190614b34565b6102866107e0565b005b6102af7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610244565b6102866102cb366004614aba565b6109e7565b6102e36102de366004614da3565b610a14565b6040516102449190815181526020808301519082015260408083015190820152606080830151908201526080808301519082015260a0808301519082015260c0808301519082015260e08083015190820152610100808301519082015261012080830151908201526101408083015190820152610160808301519082015261018080830151908201526101a080830151908201526101c091820151918101919091526101e00190565b61023861039a366004614dec565b6112a1565b6102866103ad366004614ee4565b6115d4565b6103c56103c0366004614f8e565b611660565b604051610244919061505a565b6102866103e036600461506f565b611c1a565b610286611d67565b6102866103fb3660046150a3565b611dad565b61041361040e366004615104565b611f1a565b6040516001600160601b039091168152602001610244565b610286610439366004615121565b6123b6565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610244565b610413610471366004615170565b6124b5565b600080516020615f06833981519152546001600160601b0316610413565b6102866104a2366004615104565b612655565b6102866104b5366004615104565b612763565b61044b6127fd565b6103c56104d03660046151a3565b612934565b6104dd6131c3565b6040516001600160e01b03199091168152602001610244565b6102af600080516020615f0683398151915281565b60785b60405160ff9091168152602001610244565b61028661052e36600461526d565b6131fb565b600080516020615f26833981519152546001600160a01b031661044b565b61044b613481565b61044b613518565b61050e613542565b6102866105773660046152a2565b6135b9565b61028661058a3660046152f4565b613b0c565b61028661059d3660046152f4565b613bb4565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610603573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106279190615322565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906106dc90615347565b80601f016020809104026020016040519081016040528092919081815260200182805461070890615347565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b50505050508152505090506040518060e00160405280610773600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016107c46127fd565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020615f0683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561084f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610873919061538c565b156108a45780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306108b76001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156108ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610923919061538c565b61094b5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161089b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c391906153b4565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109ef613c2b565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610a8d604051806101e001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000610a9885613c64565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ada573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afe91906153d1565b604051639ad69c6760e01b81526001600160601b03881660048201529091506000906001600160a01b03831690639ad69c679060240161010060405180830381865afa158015610b52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b769190615429565b6060810151604080830151885191516322f5db0f60e11b81529394509192600091610c109173__$5ac3274b8cf1e01ea223bf093142af05b0$__916345ebb61e91610bc8919060040190815260200190565b602060405180830381865af4158015610be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0991906154ca565b8451613d8d565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015610c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8591906154ca565b61014089018190526020890180519192508291610ca39083906154f9565b905250610cb08a8a6112a1565b610ce25750505060c085015161016086015250505061014082015161018083015250602081015160408201528061129a565b604051631d3be47760e01b81526000906001600160a01b03871690631d3be47790610d11908d9060040161505a565b600060405180830381865afa158015610d2e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d569190810190615567565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038816906327b1d79290602401600060405180830381865afa158015610dac573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610dd49190810190615645565b80516040516368322c6360e11b81529192506000916001600160a01b038a169163d06458c691610e07919060040161505a565b600060405180830381865afa158015610e24573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e4c91908101906156ee565b8b516040516322f5db0f60e11b8152600481019190915290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__906345ebb61e90602401602060405180830381865af4158015610ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec991906154ca565b60608301516040516332292b2760e21b815273__$5ac3274b8cf1e01ea223bf093142af05b0$__9263c8a4ac9c92610f0c92600401918252602082015260400190565b602060405180830381865af4158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d91906154ca565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc291906154ca565b6101a08d0181905260208d01516040516322f5db0f60e11b815291925073__$5ac3274b8cf1e01ea223bf093142af05b0$__916345ebb61e9161100b9160040190815260200190565b602060405180830381865af4158015611028573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104c91906154ca565b60408086015190516332292b2760e21b815273__$5ac3274b8cf1e01ea223bf093142af05b0$__9263c8a4ac9c9261108f92600401918252602082015260400190565b602060405180830381865af41580156110ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d091906154ca565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015611121573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114591906154ca565b6101c08d0181905260208701516101608e015261116282876157e5565b61116c91906157e5565b6101808d01526101c08c015160208d015161118791906157e5565b60408d015250505050602082015161016089015110156112005760c08801516101408901516101608a01516101808b01516101a08c01516101c08d015160405163a4d2313f60e01b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c40161089b565b876101a00151886101800151896101c0015161121c91906154f9565b61122691906154f9565b886101400151146112905760c08801516101408901516101608a01516101808b01516101a08c01516101c08d015160405163a4d2313f60e01b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c40161089b565b8796505050505050505b9392505050565b6000806112ad84613c64565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131391906153d1565b6001600160a01b0316631d3be477856040518263ffffffff1660e01b815260040161133e919061505a565b600060405180830381865afa15801561135b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113839190810190615567565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af41580156113e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611405919061538c565b15611415576000925050506115ce565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063790a38ad90602401602060405180830381865af4158015611471573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611495919061538c565b806115a7575060a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b90602401602060405180830381865af41580156114f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151b919061538c565b80156115a757506115a773__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561156e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159291906157f8565b8260a0015164ffffffffff9081169116111590565b92508280156115c95750806060015163ffffffff16816080015163ffffffff16105b925050505b92915050565b6115dc613c2b565b6115e68287613bb4565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016116568382615864565b5050505050505050565b600080600061166d613da2565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d591906153d1565b604051639ad69c6760e01b81526001600160601b03851660048201526001600160a01b039190911690639ad69c679060240161010060405180830381865afa158015611725573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117499190615429565b60408181015151905163771602f760e01b81526004810191909152602481018c905290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__9063771602f790604401602060405180830381865af41580156117ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d191906154ca565b60608301515160405163b67d77c560e01b815260048101919091526024810182905290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__9063b67d77c590604401602060405180830381865af4158015611835573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185991906154ca565b6040516321e5749b60e01b8152600481018f90526024810182905290915073__$5ac3274b8cf1e01ea223bf093142af05b0$__906321e5749b90604401602060405180830381865af41580156118b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d7919061538c565b156119e657604051632255341b60e11b8152600481018e905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af415801561192c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195091906154ca565b604051632255341b60e11b81526004810183905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af41580156119a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c491906154ca565b60405163e2ed03dd60e01b81526004810192909252602482015260440161089b565b50505073__$5906aa3f06c54ee09b434647963e1d1ed0$__63578c3039838e6040518363ffffffff1660e01b8152600401611a22929190615923565b602060405180830381865af4158015611a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a639190615945565b6040516355ee627560e01b815290935060009073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee627590611aaa906001600160c01b031988169060040161505a565b602060405180830381865af4158015611ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aeb91906154ca565b604051630e29a66960e21b8152600481018290529091506001600160a01b038316906338a699a490602401602060405180830381865afa158015611b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b57919061538c565b611c0a5760408051610120810182528e8152602081018e90528082018d9052606081018c905263ffffffff808c1660808301528a1660a082015288151560c082015287151560e0820152610100810187905290516304f2a7e960e31b81526001600160a01b038416906327953f4890611bd69085908590600401615962565b600060405180830381600087803b158015611bf057600080fd5b505af1158015611c04573d6000803e3d6000fd5b50505050505b5050509998505050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c611c3c6105a2565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611c7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca09190615a2e565b600080516020615f468339815191528054600160401b900460ff1680611cd3575080546001600160401b03808416911610155b15611cf15760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611d1b83614026565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b611d6f613c2b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000611db7613da2565b9150506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e1e91906153d1565b6040516313d8ebc960e11b81526001600160601b03871660048201529091506000906001600160a01b038316906327b1d79290602401600060405180830381865afa158015611e71573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e999190810190615645565b6001600160c01b031986168152604080820186905251633ed2a38d60e21b81529091506001600160a01b0384169063fb4a8e3490611ee0908990859060ff90600401615aa2565b600060405180830381600087803b158015611efa57600080fd5b505af1158015611f0e573d6000803e3d6000fd5b50505050505050505050565b600080808080611f33866078611f2e61402e565b6140a6565b93509350935093506000611f45613481565b604051638fbc2d8160e01b81526001600160a01b03878116600483015286811660248301529190911690638fbc2d81906044016000604051808303816000875af1158015611f97573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fbf9190810190615ae2565b90506000879050806001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561200157600080fd5b505af1158015612015573d6000803e3d6000fd5b5050505081600001519650836001600160a01b0316639e90178c88836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161010060405180830381865afa15801561206f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120939190615429565b6040518363ffffffff1660e01b81526004016120b0929190615bec565b600060405180830381600087803b1580156120ca57600080fd5b505af11580156120de573d6000803e3d6000fd5b5060009250600291506120ee9050565b60405190808252806020026020018201604052801561212157816020015b606081526020019060019003908161210c5790505b5060408051600180825281830190925291925060208083019080368337019050508160008151811061215557612155615c0a565b60209081029190910101526040805160028082526060820190925290816020016020820280368337019050508160018151811061219457612194615c0a565b602002602001018190525063b6b412ba60e01b816000815181106121ba576121ba615c0a565b60200260200101516000815181106121d4576121d4615c0a565b6001600160e01b0319909216602092830291909101909101528051637c07103960e11b908290600190811061220b5761220b615c0a565b602002602001015160008151811061222557612225615c0a565b6001600160e01b031992909216602092830291909101820152604080516002808252606082018352600093919290918301908036833701905050905061226961402e565b8160008151811061227c5761227c615c0a565b60200260200101906001600160401b031690816001600160401b0316815250506122a46144d7565b816001815181106122b7576122b7615c0a565b60200260200101906001600160401b031690816001600160401b0316815250506122df613518565b6001600160a01b0316636c6fbb28868c866001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561232d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123559190810190615c20565b86866040518663ffffffff1660e01b8152600401612377959493929190615c98565b600060405180830381600087803b15801561239157600080fd5b505af11580156123a5573d6000803e3d6000fd5b505050505050505050505050919050565b600080516020615f468339815191528054600160401b810460ff1615906001600160401b03166000811580156123e95750825b90506000826001600160401b031660011480156124055750303b155b905081158015612413575080155b156124315760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561245b57845460ff60401b1916600160401b1785555b6124658787614513565b83156124ac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b60008060006124c2613da2565b915091506124ce613481565b6001600160a01b03166357a8fba76040518060e001604052806124ef600090565b6001600160601b03168152602001856001600160601b03168152602001612514607a90565b60ff16815260200160011515815260200160006001600160a01b03168152602001896001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b81526004016125739190614b34565b6020604051808303816000875af1158015612592573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b691906153b4565b6040805160a0810182526001600160c01b0319881681526001602082015280820187905260006060820181905260808201529051635338a4af60e11b8152919450906001600160a01b0383169063a671495e906126199087908590600401615d6c565b600060405180830381600087803b15801561263357600080fd5b505af1158015612647573d6000803e3d6000fd5b505050505050509392505050565b61265d613c2b565b806001600160a01b03163b6000036126935760405163fdeac91f60e01b81526001600160a01b038216600482015260240161089b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa92505050801561270d575060408051601f3d908101601f1916820190925261270a9181019061538c565b60015b6127355760405163fdeac91f60e01b81526001600160a01b038216600482015260240161089b565b8061275e5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161089b565b505b50565b33612783600080516020615f26833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146127be5760405162d1953b60e31b81526001600160a01b038216600482015260240161089b565b816001600160a01b03163b6000036127f4576040516361798f2f60e11b81526001600160a01b038316600482015260240161089b565b61275e82614631565b600080600080516020615f0683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561286d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612891919061538c565b1561291e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156128f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061291891906153d1565b91505090565b54600160601b90046001600160a01b0316919050565b6000806000612941613da2565b9150915087516000036129695787604051634fad6a5360e11b815260040161089b9190615d8e565b60405163790a38ad60e01b815264ffffffffff8616600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063790a38ad90602401602060405180830381865af41580156129bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129e3919061538c565b15612a0a5760405163df85467b60e01b815264ffffffffff8616600482015260240161089b565b6000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a6e91906153d1565b6040516313d8ebc960e11b81526001600160601b038c1660048201529091506000906001600160a01b038316906327b1d79290602401600060405180830381865afa158015612ac1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ae99190810190615645565b80516040516368322c6360e11b8152919250906000906001600160a01b0385169063d06458c690612b1e90859060040161505a565b600060405180830381865afa158015612b3b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b6391908101906156ee565b90508963ffffffff16816080015163ffffffff161015612ba4576080810151604051636fcee12560e01b815263ffffffff909116600482015260240161089b565b60208101518b1015612cc0576020810151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612c06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2a91906154ca565b604051632255341b60e11b8152600481018d905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612c7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c9e91906154ca565b6040516338a25a8b60e21b81526004810192909252602482015260440161089b565b60408101518b1115612ddc576040818101519051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d4691906154ca565b604051632255341b60e11b8152600481018d905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612d96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dba91906154ca565b604051631e1ea4f360e31b81526004810192909252602482015260440161089b565b8060a0015163ffffffff1673__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5491906157f8565b604051633682752160e21b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612eab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ecf91906154ca565b604051633682752160e21b815264ffffffffff8c16600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f4991906154ca565b612f5391906157e5565b1115612fff5760a0810151604051633682752160e21b815264ffffffffff8b16600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612fb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fd891906154ca565b6040516331fa6ab160e11b815263ffffffff9092166004830152602482015260440161089b565b73__$9f290d768183857d0249ab5bb54619c5ab$__633f093cd6878e6040518363ffffffff1660e01b8152600401613038929190615923565b602060405180830381865af4158015613055573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130799190615945565b965060006040518060e001604052808f6001600160601b031681526020018e81526020018d81526020018c63ffffffff168152602001600063ffffffff1681526020018b64ffffffffff1681526020018a8152509050856001600160a01b03166354d747a8896001600160c01b03191673__$9f290d768183857d0249ab5bb54619c5ab$__6355ee627590916040518263ffffffff1660e01b8152600401613121919061505a565b602060405180830381865af415801561313e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061316291906154ca565b836040518363ffffffff1660e01b8152600401613180929190615e1d565b600060405180830381600087803b15801561319a57600080fd5b505af11580156131ae573d6000803e3d6000fd5b50505050505050505050509695505050505050565b600080516020615f26833981519152805460009190600160a01b900460ff166131ed576000612918565b638fb3603760e01b91505090565b815181511015613315578151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015613258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061327c91906154ca565b8151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af41580156132cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f391906154ca565b604051631a9c6b0960e01b81526004810192909252602482015260440161089b565b600080806133236078614692565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613369573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061338d91906153d1565b604051639ad69c6760e01b81526001600160601b03861660048201529091506000906001600160a01b03831690639ad69c679060240161010060405180830381865afa1580156133e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134059190615429565b6040818101899052606082018890525163f7b442d160e01b81529091506001600160a01b0384169063f7b442d190613446908890859060ff90600401615e36565b600060405180830381600087803b15801561346057600080fd5b505af1158015613474573d6000803e3d6000fd5b5050505050505050505050565b6000806134966001546001600160a01b031690565b6001600160a01b031663d39e604360285b6134af613542565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156134f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ce91906153d1565b60008061352d6001546001600160a01b031690565b6001600160a01b031663d39e604360466134a7565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015613595573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106279190615e66565b604051637bc32ecf60e01b815260009073__$9f290d768183857d0249ab5bb54619c5ab$__90637bc32ecf906135fd906001600160c01b031988169060040161505a565b602060405180830381865af415801561361a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061363e919061538c565b159050600061364d86866112a1565b905081801561365a575080155b1561369357604051631cf73cd360e21b81526001600160601b03871660048201526001600160c01b03198616602482015260440161089b565b600061369e87613c64565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156136e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061370491906153d1565b90506000816001600160a01b0316631d3be477896040518263ffffffff1660e01b8152600401613734919061505a565b600060405180830381865afa158015613751573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526137799190810190615567565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038416906327b1d79290602401600060405180830381865afa1580156137cf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526137f79190810190615645565b604051639ad69c6760e01b81526001600160601b038c1660048201529091506000906001600160a01b03851690639ad69c679060240161010060405180830381865afa15801561384b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061386f9190615429565b905060008961018001518a610160015161388991906154f9565b6101a08b015190915061389c81836154f9565b8a146138cf57896138ad82846154f9565b60405163b9d36bcd60e01b81526004810192909252602482015260440161089b565b811561394e57818360a0018181516138e791906154f9565b9052506001600160a01b03871663f7b442d18e8560ff6040518463ffffffff1660e01b815260040161391b93929190615e36565b600060405180830381600087803b15801561393557600080fd5b505af1158015613949573d6000803e3d6000fd5b505050505b8815613afd576001856080018181516139679190615e83565b91509063ffffffff16908163ffffffff1681525050866001600160a01b031663cf947d208d6001600160c01b03191673__$9f290d768183857d0249ab5bb54619c5ab$__6355ee627590916040518263ffffffff1660e01b81526004016139ce919061505a565b602060405180830381865af41580156139eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a0f91906154ca565b8760ff6040518463ffffffff1660e01b8152600401613a3093929190615ea7565b600060405180830381600087803b158015613a4a57600080fd5b505af1158015613a5e573d6000803e3d6000fd5b505050506000811115613afd578084606001818151613a7d91906154f9565b90525060808401805160019190613a959083906154f9565b9052508451604051633ed2a38d60e21b81526001600160a01b0389169163fb4a8e3491613aca9190889060ff90600401615aa2565b600060405180830381600087803b158015613ae457600080fd5b505af1158015613af8573d6000803e3d6000fd5b505050505b50505050505050505050505050565b613b14613c2b565b613b9482836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b7a91906153b4565b603c600085604051806020016040528060008152506115d4565b613ba4634a531f3360e01b6109e7565b61275e637b6a51fd60e01b6109e7565b613bbc613c2b565b613bc581612655565b613bcd611d67565b6001600160a01b038216613bf45760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615f0683398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020615f4683398151915254600160401b900460ff16613c6257604051631afcd79f60e31b815260040160405180910390fd5b565b600080613c796001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613cc8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613cf09190810190615ae2565b6020015190506000613d0a6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613d59573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613d819190810190615ae2565b60800151949350505050565b600061129a8383670de0b6b3a7640000614939565b600080613db76001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015613dfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e2191906153b4565b604051630a4d29dd60e31b81526001600160601b038216600482015290925073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015613e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea0919061538c565b15613ec05760405163aec62dbb60e01b815233600482015260240161089b565b6000613ed46001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613f23573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613f4b9190810190615ae2565b9050613f698160400151613f5d607890565b60ff9081169116141590565b15613f8957604051637ab07d8760e01b815233600482015260240161089b565b6000613f9d6001546001600160a01b031690565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613ff2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261401a9190810190615ae2565b60800151939492505050565b610206613c2b565b6040516368aebf7b60e01b81526002600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af4158015614082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106279190615a2e565b6000338180806140be6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038a81166004830152919091169063d272ac1e90602401602060405180830381865afa158015614106573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061412a91906153b4565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015614185573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141a9919061538c565b156141e05760405162b8422b60e71b81526001600160a01b03891660048201526001600160601b038216602482015260440161089b565b6040516301ffc9a760e01b81526396c8ab0560e01b60048201528895506001600160a01b038616906301ffc9a790602401602060405180830381865afa15801561422e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614252919061538c565b61427a576040516359bff0e360e11b81526001600160a01b038916600482015260240161089b565b6000856001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156142ba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526142e29190810190615ae2565b90506142f981604001518960ff9081169116141590565b15614339576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b166024830152909116604482015260640161089b565b60a08101516001600160a01b038681169082161461438b5760a0820151604051632b50a20960e21b81526001600160a01b03808d1660048301529182166024820152908716604482015260640161089b565b8160200151935061439b84614a23565b94506000856001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061440191906153d1565b6040516368fc2b7760e11b81526001600160401b038b1660048201526001600160a01b03898116602483015291925060009183169063d1f856ee90604401602060405180830381865afa15801561445c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614480919061538c565b9050806144c957604051636af540d960e01b81526001600160601b03871660048201526001600160401b038b1660248201526001600160a01b038916604482015260640161089b565b505050505093509350935093565b6040516368aebf7b60e01b81526108fc600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401614065565b600080516020615f468339815191528054600160401b810460ff1615906001600160401b03166000811580156145465750825b90506000826001600160401b031660011480156145625750303b155b905081158015614570575080155b1561458e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156145b857845460ff60401b1916600160401b1785555b600080878060200190518101906145cf9190615ec0565b925090506145dd818a613b0c565b6145ed63a6812b7960e01b6109e7565b505083156124ac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016124a3565b600080516020615f2683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201526000806146de6001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015614725573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261474d9190810190615ae2565b8051604082015190955090935060ff8681169116146147a45760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161089b565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa1580156147fa573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526148229190810190615ae2565b6080015190508092506000836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801561486b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061488f91906153d1565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa1580156148dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614900919061538c565b1561492f57608085015160405163d53987e560e01b81526001600160a01b03909116600482015260240161089b565b5050509193909250565b60008080600019858709858702925082811083820303915050806000036149735783828161496957614969615eef565b049250505061129a565b8084116149ba5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b604482015260640161089b565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b600080614a386001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015614a87573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614aaf9190810190615ae2565b608001519392505050565b600060208284031215614acc57600080fd5b81356001600160e01b03198116811461129a57600080fd5b60005b83811015614aff578181015183820152602001614ae7565b50506000910152565b60008151808452614b20816020860160208601614ae4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151614b9d60c08401826001600160a01b03169052565b5060c083015160e080840152614bb7610100840182614b08565b949350505050565b6001600160601b038116811461276057600080fd5b6001600160c01b03198116811461276057600080fd5b634e487b7160e01b600052604160045260246000fd5b6040516101e081016001600160401b0381118282101715614c2357614c23614bea565b60405290565b604080519081016001600160401b0381118282101715614c2357614c23614bea565b60405160e081016001600160401b0381118282101715614c2357614c23614bea565b60405160a081016001600160401b0381118282101715614c2357614c23614bea565b60405161012081016001600160401b0381118282101715614c2357614c23614bea565b604051601f8201601f191681016001600160401b0381118282101715614cda57614cda614bea565b604052919050565b60006101e08284031215614cf557600080fd5b614cfd614c00565b9050813581526020820135602082015260408201356040820152606082013560608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e08201526101008083013581830152506101208083013581830152506101408083013581830152506101608083013581830152506101808083013581830152506101a08083013581830152506101c080830135818301525092915050565b60008060006102208486031215614db957600080fd5b8335614dc481614bbf565b92506020840135614dd481614bd4565b9150614de38560408601614ce2565b90509250925092565b60008060408385031215614dff57600080fd5b8235614e0a81614bbf565b91506020830135614e1a81614bd4565b809150509250929050565b6001600160a01b038116811461276057600080fd5b60ff8116811461276057600080fd5b801515811461276057600080fd5b8035614e6281614e49565b919050565b60006001600160401b03821115614e8057614e80614bea565b50601f01601f191660200190565b600082601f830112614e9f57600080fd5b8135614eb2614ead82614e67565b614cb2565b818152846020838601011115614ec757600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215614efd57600080fd5b8635614f0881614e25565b95506020870135614f1881614bbf565b94506040870135614f2881614e3a565b93506060870135614f3881614e49565b92506080870135614f4881614e25565b915060a08701356001600160401b03811115614f6357600080fd5b614f6f89828a01614e8e565b9150509295509295509295565b63ffffffff8116811461276057600080fd5b60008060008060008060008060006101208a8c031215614fad57600080fd5b89356001600160401b0380821115614fc457600080fd5b614fd08d838e01614e8e565b9a5060208c0135995060408c0135985060608c0135975060808c01359150614ff782614f7c565b90955060a08b01359061500982614f7c565b81955061501860c08d01614e57565b945061502660e08d01614e57565b93506101008c013591508082111561503d57600080fd5b5061504a8c828d01614e8e565b9150509295985092959850929598565b6001600160c01b031991909116815260200190565b60006020828403121561508157600080fd5b81356001600160401b0381111561509757600080fd5b614bb784828501614e8e565b6000806000606084860312156150b857600080fd5b83356150c381614bbf565b925060208401356150d381614bd4565b915060408401356001600160401b038111156150ee57600080fd5b6150fa86828701614e8e565b9150509250925092565b60006020828403121561511657600080fd5b813561129a81614e25565b6000806040838503121561513457600080fd5b823561513f81614e25565b915060208301356001600160401b0381111561515a57600080fd5b61516685828601614e8e565b9150509250929050565b60008060006060848603121561518557600080fd5b83356150c381614e25565b64ffffffffff8116811461276057600080fd5b60008060008060008060c087890312156151bc57600080fd5b86356151c781614bbf565b955060208701356001600160401b03808211156151e357600080fd5b6151ef8a838b01614e8e565b9650604089013595506060890135915061520882614f7c565b90935060808801359061521a82615190565b90925060a0880135908082111561523057600080fd5b50614f6f89828a01614e8e565b60006040828403121561524f57600080fd5b615257614c29565b9050813581526020820135602082015292915050565b6000806080838503121561528057600080fd5b61528a848461523d565b9150615299846040850161523d565b90509250929050565b60008060008061024085870312156152b957600080fd5b84356152c481614bbf565b935060208501356152d481614bd4565b92506152e38660408701614ce2565b939692955092936102200135925050565b6000806040838503121561530757600080fd5b823561531281614e25565b91506020830135614e1a81614e25565b60006020828403121561533457600080fd5b815162ffffff8116811461129a57600080fd5b600181811c9082168061535b57607f821691505b60208210810361537b57634e487b7160e01b600052602260045260246000fd5b50919050565b8051614e6281614e49565b60006020828403121561539e57600080fd5b815161129a81614e49565b8051614e6281614bbf565b6000602082840312156153c657600080fd5b815161129a81614bbf565b6000602082840312156153e357600080fd5b815161129a81614e25565b60006040828403121561540057600080fd5b615408614c29565b9050815181526020820151602082015292915050565b8051614e6281614e25565b6000610100828403121561543c57600080fd5b60405160c081018181106001600160401b038211171561545e5761545e614bea565b604052825161546c81614bbf565b8152602083015161547c81614e25565b602082015261548e84604085016153ee565b60408201526154a084608085016153ee565b606082015260c08301516154b381614e25565b608082015260e0929092015160a083015250919050565b6000602082840312156154dc57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156115ce576115ce6154e3565b600082601f83011261551d57600080fd5b815161552b614ead82614e67565b81815284602083860101111561554057600080fd5b614bb7826020830160208701614ae4565b8051614e6281614f7c565b8051614e6281615190565b60006020828403121561557957600080fd5b81516001600160401b038082111561559057600080fd5b9083019060e082860312156155a457600080fd5b6155ac614c4b565b6155b5836153a9565b81526020830151828111156155c957600080fd5b6155d58782860161550c565b602083015250604083015160408201526155f160608401615551565b606082015261560260808401615551565b608082015261561360a0840161555c565b60a082015260c08301518281111561562a57600080fd5b6156368782860161550c565b60c08301525095945050505050565b60006020828403121561565757600080fd5b81516001600160401b038082111561566e57600080fd5b9083019060a0828603121561568257600080fd5b61568a614c6d565b825161569581614bd4565b815260208301516156a581614e49565b60208201526040830151828111156156bc57600080fd5b6156c88782860161550c565b604083015250606083015160608201526080830151608082015280935050505092915050565b60006020828403121561570057600080fd5b81516001600160401b038082111561571757600080fd5b90830190610120828603121561572c57600080fd5b615734614c8f565b82518281111561574357600080fd5b61574f8782860161550c565b82525060208301516020820152604083015160408201526060830151606082015261577c60808401615551565b608082015261578d60a08401615551565b60a082015261579e60c08401615381565b60c08201526157af60e08401615381565b60e082015261010080840151838111156157c857600080fd5b6157d48882870161550c565b918301919091525095945050505050565b818103818111156115ce576115ce6154e3565b60006020828403121561580a57600080fd5b815161129a81615190565b601f82111561585f57600081815260208120601f850160051c8101602086101561583c5750805b601f850160051c820191505b8181101561585b57828155600101615848565b5050505b505050565b81516001600160401b0381111561587d5761587d614bea565b6158918161588b8454615347565b84615815565b602080601f8311600181146158c657600084156158ae5750858301515b600019600386901b1c1916600185901b17855561585b565b600085815260208120601f198616915b828110156158f5578886015182559484019460019091019084016158d6565b50858210156159135787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160601b0383168152604060208201526000614bb76040830184614b08565b60006020828403121561595757600080fd5b815161129a81614bd4565b8281526040602082015260008251610120806040850152615987610160850183614b08565b91506020850151606085015260408501516080850152606085015160a085015260808501516159be60c086018263ffffffff169052565b5060a085015163ffffffff811660e08601525060c08501516101006159e68187018315159052565b60e087015115159286019290925250840151603f1984830301610140850152615a0f8282614b08565b9695505050505050565b6001600160401b038116811461276057600080fd5b600060208284031215615a4057600080fd5b815161129a81615a19565b6001600160401b0360c01b81511682526020810151151560208301526000604082015160a06040850152615a8260a0850182614b08565b905060608301516060850152608083015160808501528091505092915050565b6001600160601b0384168152606060208201526000615ac46060830185615a4b565b905060ff83166040830152949350505050565b8051614e6281614e3a565b600060208284031215615af457600080fd5b81516001600160401b0380821115615b0b57600080fd5b9083019060e08286031215615b1f57600080fd5b615b27614c4b565b615b30836153a9565b8152615b3e602084016153a9565b6020820152615b4f60408401615ad7565b6040820152615b6060608401615381565b6060820152615b716080840161541e565b608082015261561360a0840161541e565b80516001600160601b031682526020808201516001600160a01b0390811682850152604080840151805191860191909152918201516060850152606083015180516080860152602081015160a0860152915060808301511660c08401525060a0015160e090910152565b6001600160601b0383168152610120810161129a6020830184615b82565b634e487b7160e01b600052603260045260246000fd5b600060208284031215615c3257600080fd5b81516001600160401b03811115615c4857600080fd5b614bb78482850161550c565b600081518084526020808501945080840160005b83811015615c8d5781516001600160401b031687529582019590820190600101615c68565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152615cc960a0840187614b08565b8381036060850152855180825282820190600581901b830184018489016000805b84811015615d4757868403601f19018652825180518086529089019089860190845b81811015615d325783516001600160e01b0319168352928b0192918b0191600101615d0c565b50509689019694505091870191600101615cea565b5050508681036080880152615d5c8189615c54565b9c9b505050505050505050505050565b6001600160601b0383168152604060208201526000614bb76040830184615a4b565b60208152600061129a6020830184614b08565b6001600160601b0381511682526000602082015160e06020850152615dc960e0850182614b08565b905060408301516040850152606083015163ffffffff8082166060870152806080860151166080870152505064ffffffffff60a08401511660a085015260c083015184820360c08601526115c98282614b08565b828152604060208201526000614bb76040830184615da1565b6001600160601b03841681526101408101615e546020830185615b82565b60ff8316610120830152949350505050565b600060208284031215615e7857600080fd5b815161129a81614e3a565b63ffffffff818116838216019080821115615ea057615ea06154e3565b5092915050565b838152606060208201526000615ac46060830185615da1565b60008060408385031215615ed357600080fd5b8251615ede81614e25565b6020840151909250614e1a81614e25565b634e487b7160e01b600052601260045260246000fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212205485d0c0a813c01b611d5e9810e5005a0228bc1902ea6b8f90720ace3a625acd64736f6c63430008140033",
|
1413
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063644c45e01161011a578063b6b412ba116100ad578063cde749f41161007c578063cde749f414610561578063d25f509514610569578063ea8665721461057c578063f21de1e81461043e578063f7c34ee01461058f57600080fd5b8063b6b412ba14610520578063bf7e214f14610533578063caf4e3d414610551578063cc9fc59a1461055957600080fd5b80638dd2b781116100e95780638dd2b781146104c25780638fb36037146104d5578063ada9652e146104f6578063b68d18091461050b57600080fd5b8063644c45e014610476578063675393bf146104945780637a9e5e4b146104a7578063893d20e8146104ba57600080fd5b806327bb7a331161019d5780633d683fd91161016c5780633d683fd9146103ed5780634420e4861461040057806349bb9e4b1461042b5780635ab1bd531461043e5780635dcb3bae1461046357600080fd5b806327bb7a331461039f5780632b5198b1146103b2578063329d6e74146103d257806336fc697e146103e557600080fd5b80631eff4b22116101d95780631eff4b2214610288578063214cdb80146102bd578063219a3195146102d057806325d073841461038c57600080fd5b806301ffc9a71461020b5780630d8e6e2c1461024d5780630fec111c14610269578063138461e01461027e575b600080fd5b610238610219366004614aba565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102556105a2565b60405162ffffff9091168152602001610244565b61027161062c565b6040516102449190614b34565b6102866107e0565b005b6102af7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610244565b6102866102cb366004614aba565b6109e7565b6102e36102de366004614da3565b610a14565b6040516102449190815181526020808301519082015260408083015190820152606080830151908201526080808301519082015260a0808301519082015260c0808301519082015260e08083015190820152610100808301519082015261012080830151908201526101408083015190820152610160808301519082015261018080830151908201526101a080830151908201526101c091820151918101919091526101e00190565b61023861039a366004614dec565b6112a1565b6102866103ad366004614ee4565b6115d4565b6103c56103c0366004614f8e565b611660565b604051610244919061505a565b6102866103e036600461506f565b611c1a565b610286611d67565b6102866103fb3660046150a3565b611dad565b61041361040e366004615104565b611f1a565b6040516001600160601b039091168152602001610244565b610286610439366004615121565b6123b6565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610244565b610413610471366004615170565b6124b5565b600080516020615f06833981519152546001600160601b0316610413565b6102866104a2366004615104565b612655565b6102866104b5366004615104565b612763565b61044b6127fd565b6103c56104d03660046151a3565b612934565b6104dd6131c3565b6040516001600160e01b03199091168152602001610244565b6102af600080516020615f0683398151915281565b60785b60405160ff9091168152602001610244565b61028661052e36600461526d565b6131fb565b600080516020615f26833981519152546001600160a01b031661044b565b61044b613481565b61044b613518565b61050e613542565b6102866105773660046152a2565b6135b9565b61028661058a3660046152f4565b613b0c565b61028661059d3660046152f4565b613bb4565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610603573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106279190615322565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906106dc90615347565b80601f016020809104026020016040519081016040528092919081815260200182805461070890615347565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b50505050508152505090506040518060e00160405280610773600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016107c46127fd565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020615f0683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561084f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610873919061538c565b156108a45780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306108b76001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156108ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610923919061538c565b61094b5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161089b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c391906153b4565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109ef613c2b565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610a8d604051806101e001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000610a9885613c64565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ada573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afe91906153d1565b604051639ad69c6760e01b81526001600160601b03881660048201529091506000906001600160a01b03831690639ad69c679060240161010060405180830381865afa158015610b52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b769190615429565b6060810151604080830151885191516322f5db0f60e11b81529394509192600091610c109173__$5ac3274b8cf1e01ea223bf093142af05b0$__916345ebb61e91610bc8919060040190815260200190565b602060405180830381865af4158015610be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0991906154ca565b8451613d8d565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015610c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8591906154ca565b61014089018190526020890180519192508291610ca39083906154f9565b905250610cb08a8a6112a1565b610ce25750505060c085015161016086015250505061014082015161018083015250602081015160408201528061129a565b604051631d3be47760e01b81526000906001600160a01b03871690631d3be47790610d11908d9060040161505a565b600060405180830381865afa158015610d2e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d569190810190615567565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038816906327b1d79290602401600060405180830381865afa158015610dac573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610dd49190810190615645565b80516040516368322c6360e11b81529192506000916001600160a01b038a169163d06458c691610e07919060040161505a565b600060405180830381865afa158015610e24573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e4c91908101906156ee565b8b516040516322f5db0f60e11b8152600481019190915290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__906345ebb61e90602401602060405180830381865af4158015610ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec991906154ca565b60608301516040516332292b2760e21b815273__$5ac3274b8cf1e01ea223bf093142af05b0$__9263c8a4ac9c92610f0c92600401918252602082015260400190565b602060405180830381865af4158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d91906154ca565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc291906154ca565b6101a08d0181905260208d01516040516322f5db0f60e11b815291925073__$5ac3274b8cf1e01ea223bf093142af05b0$__916345ebb61e9161100b9160040190815260200190565b602060405180830381865af4158015611028573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104c91906154ca565b60408086015190516332292b2760e21b815273__$5ac3274b8cf1e01ea223bf093142af05b0$__9263c8a4ac9c9261108f92600401918252602082015260400190565b602060405180830381865af41580156110ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d091906154ca565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015611121573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114591906154ca565b6101c08d0181905260208701516101608e015261116282876157e5565b61116c91906157e5565b6101808d01526101c08c015160208d015161118791906157e5565b60408d015250505050602082015161016089015110156112005760c08801516101408901516101608a01516101808b01516101a08c01516101c08d015160405163a4d2313f60e01b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c40161089b565b876101a00151886101800151896101c0015161121c91906154f9565b61122691906154f9565b886101400151146112905760c08801516101408901516101608a01516101808b01516101a08c01516101c08d015160405163a4d2313f60e01b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c40161089b565b8796505050505050505b9392505050565b6000806112ad84613c64565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131391906153d1565b6001600160a01b0316631d3be477856040518263ffffffff1660e01b815260040161133e919061505a565b600060405180830381865afa15801561135b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113839190810190615567565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af41580156113e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611405919061538c565b15611415576000925050506115ce565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063790a38ad90602401602060405180830381865af4158015611471573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611495919061538c565b806115a7575060a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b90602401602060405180830381865af41580156114f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151b919061538c565b80156115a757506115a773__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561156e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159291906157f8565b8260a0015164ffffffffff9081169116111590565b92508280156115c95750806060015163ffffffff16816080015163ffffffff16105b925050505b92915050565b6115dc613c2b565b6115e68287613bb4565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016116568382615864565b5050505050505050565b600080600061166d613da2565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d591906153d1565b604051639ad69c6760e01b81526001600160601b03851660048201526001600160a01b039190911690639ad69c679060240161010060405180830381865afa158015611725573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117499190615429565b60408181015151905163771602f760e01b81526004810191909152602481018c905290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__9063771602f790604401602060405180830381865af41580156117ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d191906154ca565b60608301515160405163b67d77c560e01b815260048101919091526024810182905290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__9063b67d77c590604401602060405180830381865af4158015611835573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185991906154ca565b6040516321e5749b60e01b8152600481018f90526024810182905290915073__$5ac3274b8cf1e01ea223bf093142af05b0$__906321e5749b90604401602060405180830381865af41580156118b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d7919061538c565b156119e657604051632255341b60e11b8152600481018e905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af415801561192c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195091906154ca565b604051632255341b60e11b81526004810183905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af41580156119a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c491906154ca565b60405163e2ed03dd60e01b81526004810192909252602482015260440161089b565b50505073__$5906aa3f06c54ee09b434647963e1d1ed0$__63578c3039838e6040518363ffffffff1660e01b8152600401611a22929190615923565b602060405180830381865af4158015611a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a639190615945565b6040516355ee627560e01b815290935060009073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee627590611aaa906001600160c01b031988169060040161505a565b602060405180830381865af4158015611ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aeb91906154ca565b604051630e29a66960e21b8152600481018290529091506001600160a01b038316906338a699a490602401602060405180830381865afa158015611b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b57919061538c565b611c0a5760408051610120810182528e8152602081018e90528082018d9052606081018c905263ffffffff808c1660808301528a1660a082015288151560c082015287151560e0820152610100810187905290516304f2a7e960e31b81526001600160a01b038416906327953f4890611bd69085908590600401615962565b600060405180830381600087803b158015611bf057600080fd5b505af1158015611c04573d6000803e3d6000fd5b50505050505b5050509998505050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c611c3c6105a2565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611c7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca09190615a2e565b600080516020615f468339815191528054600160401b900460ff1680611cd3575080546001600160401b03808416911610155b15611cf15760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611d1b83614026565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b611d6f613c2b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000611db7613da2565b9150506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e1e91906153d1565b6040516313d8ebc960e11b81526001600160601b03871660048201529091506000906001600160a01b038316906327b1d79290602401600060405180830381865afa158015611e71573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e999190810190615645565b6001600160c01b031986168152604080820186905251633ed2a38d60e21b81529091506001600160a01b0384169063fb4a8e3490611ee0908990859060ff90600401615aa2565b600060405180830381600087803b158015611efa57600080fd5b505af1158015611f0e573d6000803e3d6000fd5b50505050505050505050565b600080808080611f33866078611f2e61402e565b6140a6565b93509350935093506000611f45613481565b604051638fbc2d8160e01b81526001600160a01b03878116600483015286811660248301529190911690638fbc2d81906044016000604051808303816000875af1158015611f97573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fbf9190810190615ae2565b90506000879050806001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561200157600080fd5b505af1158015612015573d6000803e3d6000fd5b5050505081600001519650836001600160a01b0316639e90178c88836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161010060405180830381865afa15801561206f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120939190615429565b6040518363ffffffff1660e01b81526004016120b0929190615bec565b600060405180830381600087803b1580156120ca57600080fd5b505af11580156120de573d6000803e3d6000fd5b5060009250600291506120ee9050565b60405190808252806020026020018201604052801561212157816020015b606081526020019060019003908161210c5790505b5060408051600180825281830190925291925060208083019080368337019050508160008151811061215557612155615c0a565b60209081029190910101526040805160028082526060820190925290816020016020820280368337019050508160018151811061219457612194615c0a565b602002602001018190525063b6b412ba60e01b816000815181106121ba576121ba615c0a565b60200260200101516000815181106121d4576121d4615c0a565b6001600160e01b0319909216602092830291909101909101528051637c07103960e11b908290600190811061220b5761220b615c0a565b602002602001015160008151811061222557612225615c0a565b6001600160e01b031992909216602092830291909101820152604080516002808252606082018352600093919290918301908036833701905050905061226961402e565b8160008151811061227c5761227c615c0a565b60200260200101906001600160401b031690816001600160401b0316815250506122a46144d7565b816001815181106122b7576122b7615c0a565b60200260200101906001600160401b031690816001600160401b0316815250506122df613518565b6001600160a01b0316636c6fbb28868c866001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561232d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123559190810190615c20565b86866040518663ffffffff1660e01b8152600401612377959493929190615c98565b600060405180830381600087803b15801561239157600080fd5b505af11580156123a5573d6000803e3d6000fd5b505050505050505050505050919050565b600080516020615f468339815191528054600160401b810460ff1615906001600160401b03166000811580156123e95750825b90506000826001600160401b031660011480156124055750303b155b905081158015612413575080155b156124315760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561245b57845460ff60401b1916600160401b1785555b6124658787614513565b83156124ac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b60008060006124c2613da2565b915091506124ce613481565b6001600160a01b03166357a8fba76040518060e001604052806124ef600090565b6001600160601b03168152602001856001600160601b03168152602001612514607a90565b60ff16815260200160011515815260200160006001600160a01b03168152602001896001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b81526004016125739190614b34565b6020604051808303816000875af1158015612592573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b691906153b4565b6040805160a0810182526001600160c01b0319881681526001602082015280820187905260006060820181905260808201529051635338a4af60e11b8152919450906001600160a01b0383169063a671495e906126199087908590600401615d6c565b600060405180830381600087803b15801561263357600080fd5b505af1158015612647573d6000803e3d6000fd5b505050505050509392505050565b61265d613c2b565b806001600160a01b03163b6000036126935760405163fdeac91f60e01b81526001600160a01b038216600482015260240161089b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa92505050801561270d575060408051601f3d908101601f1916820190925261270a9181019061538c565b60015b6127355760405163fdeac91f60e01b81526001600160a01b038216600482015260240161089b565b8061275e5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161089b565b505b50565b33612783600080516020615f26833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146127be5760405162d1953b60e31b81526001600160a01b038216600482015260240161089b565b816001600160a01b03163b6000036127f4576040516361798f2f60e11b81526001600160a01b038316600482015260240161089b565b61275e82614631565b600080600080516020615f0683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561286d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612891919061538c565b1561291e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156128f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061291891906153d1565b91505090565b54600160601b90046001600160a01b0316919050565b6000806000612941613da2565b9150915087516000036129695787604051634fad6a5360e11b815260040161089b9190615d8e565b60405163790a38ad60e01b815264ffffffffff8616600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063790a38ad90602401602060405180830381865af41580156129bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129e3919061538c565b15612a0a5760405163df85467b60e01b815264ffffffffff8616600482015260240161089b565b6000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a6e91906153d1565b6040516313d8ebc960e11b81526001600160601b038c1660048201529091506000906001600160a01b038316906327b1d79290602401600060405180830381865afa158015612ac1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ae99190810190615645565b80516040516368322c6360e11b8152919250906000906001600160a01b0385169063d06458c690612b1e90859060040161505a565b600060405180830381865afa158015612b3b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b6391908101906156ee565b90508963ffffffff16816080015163ffffffff161015612ba4576080810151604051636fcee12560e01b815263ffffffff909116600482015260240161089b565b60208101518b1015612cc0576020810151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612c06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2a91906154ca565b604051632255341b60e11b8152600481018d905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612c7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c9e91906154ca565b6040516338a25a8b60e21b81526004810192909252602482015260440161089b565b60408101518b1115612ddc576040818101519051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d4691906154ca565b604051632255341b60e11b8152600481018d905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612d96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dba91906154ca565b604051631e1ea4f360e31b81526004810192909252602482015260440161089b565b8060a0015163ffffffff1673__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5491906157f8565b604051633682752160e21b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612eab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ecf91906154ca565b604051633682752160e21b815264ffffffffff8c16600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f4991906154ca565b612f5391906157e5565b1115612fff5760a0810151604051633682752160e21b815264ffffffffff8b16600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612fb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fd891906154ca565b6040516331fa6ab160e11b815263ffffffff9092166004830152602482015260440161089b565b73__$9f290d768183857d0249ab5bb54619c5ab$__633f093cd6878e6040518363ffffffff1660e01b8152600401613038929190615923565b602060405180830381865af4158015613055573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130799190615945565b965060006040518060e001604052808f6001600160601b031681526020018e81526020018d81526020018c63ffffffff168152602001600063ffffffff1681526020018b64ffffffffff1681526020018a8152509050856001600160a01b03166354d747a8896001600160c01b03191673__$9f290d768183857d0249ab5bb54619c5ab$__6355ee627590916040518263ffffffff1660e01b8152600401613121919061505a565b602060405180830381865af415801561313e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061316291906154ca565b836040518363ffffffff1660e01b8152600401613180929190615e1d565b600060405180830381600087803b15801561319a57600080fd5b505af11580156131ae573d6000803e3d6000fd5b50505050505050505050509695505050505050565b600080516020615f26833981519152805460009190600160a01b900460ff166131ed576000612918565b638fb3603760e01b91505090565b815181511015613315578151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015613258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061327c91906154ca565b8151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af41580156132cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f391906154ca565b604051631a9c6b0960e01b81526004810192909252602482015260440161089b565b600080806133236078614692565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613369573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061338d91906153d1565b604051639ad69c6760e01b81526001600160601b03861660048201529091506000906001600160a01b03831690639ad69c679060240161010060405180830381865afa1580156133e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134059190615429565b6040818101899052606082018890525163f7b442d160e01b81529091506001600160a01b0384169063f7b442d190613446908890859060ff90600401615e36565b600060405180830381600087803b15801561346057600080fd5b505af1158015613474573d6000803e3d6000fd5b5050505050505050505050565b6000806134966001546001600160a01b031690565b6001600160a01b031663d39e604360285b6134af613542565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156134f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ce91906153d1565b60008061352d6001546001600160a01b031690565b6001600160a01b031663d39e604360466134a7565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015613595573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106279190615e66565b604051637bc32ecf60e01b815260009073__$9f290d768183857d0249ab5bb54619c5ab$__90637bc32ecf906135fd906001600160c01b031988169060040161505a565b602060405180830381865af415801561361a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061363e919061538c565b159050600061364d86866112a1565b905081801561365a575080155b1561369357604051631cf73cd360e21b81526001600160601b03871660048201526001600160c01b03198616602482015260440161089b565b600061369e87613c64565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156136e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061370491906153d1565b90506000816001600160a01b0316631d3be477896040518263ffffffff1660e01b8152600401613734919061505a565b600060405180830381865afa158015613751573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526137799190810190615567565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038416906327b1d79290602401600060405180830381865afa1580156137cf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526137f79190810190615645565b604051639ad69c6760e01b81526001600160601b038c1660048201529091506000906001600160a01b03851690639ad69c679060240161010060405180830381865afa15801561384b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061386f9190615429565b905060008961018001518a610160015161388991906154f9565b6101a08b015190915061389c81836154f9565b8a146138cf57896138ad82846154f9565b60405163b9d36bcd60e01b81526004810192909252602482015260440161089b565b811561394e57818360a0018181516138e791906154f9565b9052506001600160a01b03871663f7b442d18e8560ff6040518463ffffffff1660e01b815260040161391b93929190615e36565b600060405180830381600087803b15801561393557600080fd5b505af1158015613949573d6000803e3d6000fd5b505050505b8815613afd576001856080018181516139679190615e83565b91509063ffffffff16908163ffffffff1681525050866001600160a01b031663cf947d208d6001600160c01b03191673__$9f290d768183857d0249ab5bb54619c5ab$__6355ee627590916040518263ffffffff1660e01b81526004016139ce919061505a565b602060405180830381865af41580156139eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a0f91906154ca565b8760ff6040518463ffffffff1660e01b8152600401613a3093929190615ea7565b600060405180830381600087803b158015613a4a57600080fd5b505af1158015613a5e573d6000803e3d6000fd5b505050506000811115613afd578084606001818151613a7d91906154f9565b90525060808401805160019190613a959083906154f9565b9052508451604051633ed2a38d60e21b81526001600160a01b0389169163fb4a8e3491613aca9190889060ff90600401615aa2565b600060405180830381600087803b158015613ae457600080fd5b505af1158015613af8573d6000803e3d6000fd5b505050505b50505050505050505050505050565b613b14613c2b565b613b9482836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b7a91906153b4565b603c600085604051806020016040528060008152506115d4565b613ba4634a531f3360e01b6109e7565b61275e637b6a51fd60e01b6109e7565b613bbc613c2b565b613bc581612655565b613bcd611d67565b6001600160a01b038216613bf45760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615f0683398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020615f4683398151915254600160401b900460ff16613c6257604051631afcd79f60e31b815260040160405180910390fd5b565b600080613c796001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613cc8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613cf09190810190615ae2565b6020015190506000613d0a6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613d59573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613d819190810190615ae2565b60800151949350505050565b600061129a8383670de0b6b3a7640000614939565b600080613db76001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015613dfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e2191906153b4565b604051630a4d29dd60e31b81526001600160601b038216600482015290925073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015613e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea0919061538c565b15613ec05760405163aec62dbb60e01b815233600482015260240161089b565b6000613ed46001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613f23573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613f4b9190810190615ae2565b9050613f698160400151613f5d607890565b60ff9081169116141590565b15613f8957604051637ab07d8760e01b815233600482015260240161089b565b6000613f9d6001546001600160a01b031690565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613ff2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261401a9190810190615ae2565b60800151939492505050565b610206613c2b565b6040516368aebf7b60e01b81526002600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af4158015614082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106279190615a2e565b6000338180806140be6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038a81166004830152919091169063d272ac1e90602401602060405180830381865afa158015614106573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061412a91906153b4565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015614185573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141a9919061538c565b156141e05760405162b8422b60e71b81526001600160a01b03891660048201526001600160601b038216602482015260440161089b565b6040516301ffc9a760e01b81526396c8ab0560e01b60048201528895506001600160a01b038616906301ffc9a790602401602060405180830381865afa15801561422e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614252919061538c565b61427a576040516359bff0e360e11b81526001600160a01b038916600482015260240161089b565b6000856001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156142ba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526142e29190810190615ae2565b90506142f981604001518960ff9081169116141590565b15614339576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b166024830152909116604482015260640161089b565b60a08101516001600160a01b038681169082161461438b5760a0820151604051632b50a20960e21b81526001600160a01b03808d1660048301529182166024820152908716604482015260640161089b565b8160200151935061439b84614a23565b94506000856001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061440191906153d1565b6040516368fc2b7760e11b81526001600160401b038b1660048201526001600160a01b03898116602483015291925060009183169063d1f856ee90604401602060405180830381865afa15801561445c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614480919061538c565b9050806144c957604051636af540d960e01b81526001600160601b03871660048201526001600160401b038b1660248201526001600160a01b038916604482015260640161089b565b505050505093509350935093565b6040516368aebf7b60e01b81526108fc600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401614065565b600080516020615f468339815191528054600160401b810460ff1615906001600160401b03166000811580156145465750825b90506000826001600160401b031660011480156145625750303b155b905081158015614570575080155b1561458e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156145b857845460ff60401b1916600160401b1785555b600080878060200190518101906145cf9190615ec0565b925090506145dd818a613b0c565b6145ed63a6812b7960e01b6109e7565b505083156124ac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016124a3565b600080516020615f2683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201526000806146de6001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015614725573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261474d9190810190615ae2565b8051604082015190955090935060ff8681169116146147a45760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161089b565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa1580156147fa573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526148229190810190615ae2565b6080015190508092506000836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801561486b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061488f91906153d1565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa1580156148dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614900919061538c565b1561492f57608085015160405163d53987e560e01b81526001600160a01b03909116600482015260240161089b565b5050509193909250565b60008080600019858709858702925082811083820303915050806000036149735783828161496957614969615eef565b049250505061129a565b8084116149ba5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b604482015260640161089b565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b600080614a386001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015614a87573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614aaf9190810190615ae2565b608001519392505050565b600060208284031215614acc57600080fd5b81356001600160e01b03198116811461129a57600080fd5b60005b83811015614aff578181015183820152602001614ae7565b50506000910152565b60008151808452614b20816020860160208601614ae4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151614b9d60c08401826001600160a01b03169052565b5060c083015160e080840152614bb7610100840182614b08565b949350505050565b6001600160601b038116811461276057600080fd5b6001600160c01b03198116811461276057600080fd5b634e487b7160e01b600052604160045260246000fd5b6040516101e081016001600160401b0381118282101715614c2357614c23614bea565b60405290565b604080519081016001600160401b0381118282101715614c2357614c23614bea565b60405160e081016001600160401b0381118282101715614c2357614c23614bea565b60405160a081016001600160401b0381118282101715614c2357614c23614bea565b60405161012081016001600160401b0381118282101715614c2357614c23614bea565b604051601f8201601f191681016001600160401b0381118282101715614cda57614cda614bea565b604052919050565b60006101e08284031215614cf557600080fd5b614cfd614c00565b9050813581526020820135602082015260408201356040820152606082013560608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e08201526101008083013581830152506101208083013581830152506101408083013581830152506101608083013581830152506101808083013581830152506101a08083013581830152506101c080830135818301525092915050565b60008060006102208486031215614db957600080fd5b8335614dc481614bbf565b92506020840135614dd481614bd4565b9150614de38560408601614ce2565b90509250925092565b60008060408385031215614dff57600080fd5b8235614e0a81614bbf565b91506020830135614e1a81614bd4565b809150509250929050565b6001600160a01b038116811461276057600080fd5b60ff8116811461276057600080fd5b801515811461276057600080fd5b8035614e6281614e49565b919050565b60006001600160401b03821115614e8057614e80614bea565b50601f01601f191660200190565b600082601f830112614e9f57600080fd5b8135614eb2614ead82614e67565b614cb2565b818152846020838601011115614ec757600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215614efd57600080fd5b8635614f0881614e25565b95506020870135614f1881614bbf565b94506040870135614f2881614e3a565b93506060870135614f3881614e49565b92506080870135614f4881614e25565b915060a08701356001600160401b03811115614f6357600080fd5b614f6f89828a01614e8e565b9150509295509295509295565b63ffffffff8116811461276057600080fd5b60008060008060008060008060006101208a8c031215614fad57600080fd5b89356001600160401b0380821115614fc457600080fd5b614fd08d838e01614e8e565b9a5060208c0135995060408c0135985060608c0135975060808c01359150614ff782614f7c565b90955060a08b01359061500982614f7c565b81955061501860c08d01614e57565b945061502660e08d01614e57565b93506101008c013591508082111561503d57600080fd5b5061504a8c828d01614e8e565b9150509295985092959850929598565b6001600160c01b031991909116815260200190565b60006020828403121561508157600080fd5b81356001600160401b0381111561509757600080fd5b614bb784828501614e8e565b6000806000606084860312156150b857600080fd5b83356150c381614bbf565b925060208401356150d381614bd4565b915060408401356001600160401b038111156150ee57600080fd5b6150fa86828701614e8e565b9150509250925092565b60006020828403121561511657600080fd5b813561129a81614e25565b6000806040838503121561513457600080fd5b823561513f81614e25565b915060208301356001600160401b0381111561515a57600080fd5b61516685828601614e8e565b9150509250929050565b60008060006060848603121561518557600080fd5b83356150c381614e25565b64ffffffffff8116811461276057600080fd5b60008060008060008060c087890312156151bc57600080fd5b86356151c781614bbf565b955060208701356001600160401b03808211156151e357600080fd5b6151ef8a838b01614e8e565b9650604089013595506060890135915061520882614f7c565b90935060808801359061521a82615190565b90925060a0880135908082111561523057600080fd5b50614f6f89828a01614e8e565b60006040828403121561524f57600080fd5b615257614c29565b9050813581526020820135602082015292915050565b6000806080838503121561528057600080fd5b61528a848461523d565b9150615299846040850161523d565b90509250929050565b60008060008061024085870312156152b957600080fd5b84356152c481614bbf565b935060208501356152d481614bd4565b92506152e38660408701614ce2565b939692955092936102200135925050565b6000806040838503121561530757600080fd5b823561531281614e25565b91506020830135614e1a81614e25565b60006020828403121561533457600080fd5b815162ffffff8116811461129a57600080fd5b600181811c9082168061535b57607f821691505b60208210810361537b57634e487b7160e01b600052602260045260246000fd5b50919050565b8051614e6281614e49565b60006020828403121561539e57600080fd5b815161129a81614e49565b8051614e6281614bbf565b6000602082840312156153c657600080fd5b815161129a81614bbf565b6000602082840312156153e357600080fd5b815161129a81614e25565b60006040828403121561540057600080fd5b615408614c29565b9050815181526020820151602082015292915050565b8051614e6281614e25565b6000610100828403121561543c57600080fd5b60405160c081018181106001600160401b038211171561545e5761545e614bea565b604052825161546c81614bbf565b8152602083015161547c81614e25565b602082015261548e84604085016153ee565b60408201526154a084608085016153ee565b606082015260c08301516154b381614e25565b608082015260e0929092015160a083015250919050565b6000602082840312156154dc57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156115ce576115ce6154e3565b600082601f83011261551d57600080fd5b815161552b614ead82614e67565b81815284602083860101111561554057600080fd5b614bb7826020830160208701614ae4565b8051614e6281614f7c565b8051614e6281615190565b60006020828403121561557957600080fd5b81516001600160401b038082111561559057600080fd5b9083019060e082860312156155a457600080fd5b6155ac614c4b565b6155b5836153a9565b81526020830151828111156155c957600080fd5b6155d58782860161550c565b602083015250604083015160408201526155f160608401615551565b606082015261560260808401615551565b608082015261561360a0840161555c565b60a082015260c08301518281111561562a57600080fd5b6156368782860161550c565b60c08301525095945050505050565b60006020828403121561565757600080fd5b81516001600160401b038082111561566e57600080fd5b9083019060a0828603121561568257600080fd5b61568a614c6d565b825161569581614bd4565b815260208301516156a581614e49565b60208201526040830151828111156156bc57600080fd5b6156c88782860161550c565b604083015250606083015160608201526080830151608082015280935050505092915050565b60006020828403121561570057600080fd5b81516001600160401b038082111561571757600080fd5b90830190610120828603121561572c57600080fd5b615734614c8f565b82518281111561574357600080fd5b61574f8782860161550c565b82525060208301516020820152604083015160408201526060830151606082015261577c60808401615551565b608082015261578d60a08401615551565b60a082015261579e60c08401615381565b60c08201526157af60e08401615381565b60e082015261010080840151838111156157c857600080fd5b6157d48882870161550c565b918301919091525095945050505050565b818103818111156115ce576115ce6154e3565b60006020828403121561580a57600080fd5b815161129a81615190565b601f82111561585f57600081815260208120601f850160051c8101602086101561583c5750805b601f850160051c820191505b8181101561585b57828155600101615848565b5050505b505050565b81516001600160401b0381111561587d5761587d614bea565b6158918161588b8454615347565b84615815565b602080601f8311600181146158c657600084156158ae5750858301515b600019600386901b1c1916600185901b17855561585b565b600085815260208120601f198616915b828110156158f5578886015182559484019460019091019084016158d6565b50858210156159135787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160601b0383168152604060208201526000614bb76040830184614b08565b60006020828403121561595757600080fd5b815161129a81614bd4565b8281526040602082015260008251610120806040850152615987610160850183614b08565b91506020850151606085015260408501516080850152606085015160a085015260808501516159be60c086018263ffffffff169052565b5060a085015163ffffffff811660e08601525060c08501516101006159e68187018315159052565b60e087015115159286019290925250840151603f1984830301610140850152615a0f8282614b08565b9695505050505050565b6001600160401b038116811461276057600080fd5b600060208284031215615a4057600080fd5b815161129a81615a19565b6001600160401b0360c01b81511682526020810151151560208301526000604082015160a06040850152615a8260a0850182614b08565b905060608301516060850152608083015160808501528091505092915050565b6001600160601b0384168152606060208201526000615ac46060830185615a4b565b905060ff83166040830152949350505050565b8051614e6281614e3a565b600060208284031215615af457600080fd5b81516001600160401b0380821115615b0b57600080fd5b9083019060e08286031215615b1f57600080fd5b615b27614c4b565b615b30836153a9565b8152615b3e602084016153a9565b6020820152615b4f60408401615ad7565b6040820152615b6060608401615381565b6060820152615b716080840161541e565b608082015261561360a0840161541e565b80516001600160601b031682526020808201516001600160a01b0390811682850152604080840151805191860191909152918201516060850152606083015180516080860152602081015160a0860152915060808301511660c08401525060a0015160e090910152565b6001600160601b0383168152610120810161129a6020830184615b82565b634e487b7160e01b600052603260045260246000fd5b600060208284031215615c3257600080fd5b81516001600160401b03811115615c4857600080fd5b614bb78482850161550c565b600081518084526020808501945080840160005b83811015615c8d5781516001600160401b031687529582019590820190600101615c68565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152615cc960a0840187614b08565b8381036060850152855180825282820190600581901b830184018489016000805b84811015615d4757868403601f19018652825180518086529089019089860190845b81811015615d325783516001600160e01b0319168352928b0192918b0191600101615d0c565b50509689019694505091870191600101615cea565b5050508681036080880152615d5c8189615c54565b9c9b505050505050505050505050565b6001600160601b0383168152604060208201526000614bb76040830184615a4b565b60208152600061129a6020830184614b08565b6001600160601b0381511682526000602082015160e06020850152615dc960e0850182614b08565b905060408301516040850152606083015163ffffffff8082166060870152806080860151166080870152505064ffffffffff60a08401511660a085015260c083015184820360c08601526115c98282614b08565b828152604060208201526000614bb76040830184615da1565b6001600160601b03841681526101408101615e546020830185615b82565b60ff8316610120830152949350505050565b600060208284031215615e7857600080fd5b815161129a81614e3a565b63ffffffff818116838216019080821115615ea057615ea06154e3565b5092915050565b838152606060208201526000615ac46060830185615da1565b60008060408385031215615ed357600080fd5b8251615ede81614e25565b6020840151909250614e1a81614e25565b634e487b7160e01b600052601260045260246000fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212205485d0c0a813c01b611d5e9810e5005a0228bc1902ea6b8f90720ace3a625acd64736f6c63430008140033",
|
1414
|
-
"linkReferences": {
|
1415
|
-
"contracts/types/DistributorType.sol": {
|
1416
|
-
"DistributorTypeLib": [
|
1417
|
-
{
|
1418
|
-
"length": 20,
|
1419
|
-
"start": 6865
|
1420
|
-
},
|
1421
|
-
{
|
1422
|
-
"length": 20,
|
1423
|
-
"start": 7006
|
1424
|
-
}
|
1425
|
-
]
|
1426
|
-
},
|
1427
|
-
"contracts/types/NftId.sol": {
|
1428
|
-
"NftIdLib": [
|
1429
|
-
{
|
1430
|
-
"length": 20,
|
1431
|
-
"start": 2299
|
1432
|
-
},
|
1433
|
-
{
|
1434
|
-
"length": 20,
|
1435
|
-
"start": 5261
|
1436
|
-
},
|
1437
|
-
{
|
1438
|
-
"length": 20,
|
1439
|
-
"start": 10521
|
1440
|
-
},
|
1441
|
-
{
|
1442
|
-
"length": 20,
|
1443
|
-
"start": 16168
|
1444
|
-
},
|
1445
|
-
{
|
1446
|
-
"length": 20,
|
1447
|
-
"start": 16945
|
1448
|
-
}
|
1449
|
-
]
|
1450
|
-
},
|
1451
|
-
"contracts/types/Referral.sol": {
|
1452
|
-
"ReferralLib": [
|
1453
|
-
{
|
1454
|
-
"length": 20,
|
1455
|
-
"start": 12519
|
1456
|
-
},
|
1457
|
-
{
|
1458
|
-
"length": 20,
|
1459
|
-
"start": 12753
|
1460
|
-
},
|
1461
|
-
{
|
1462
|
-
"length": 20,
|
1463
|
-
"start": 14001
|
1464
|
-
},
|
1465
|
-
{
|
1466
|
-
"length": 20,
|
1467
|
-
"start": 14974
|
1468
|
-
}
|
1469
|
-
]
|
1470
|
-
},
|
1471
|
-
"contracts/types/RoleId.sol": {
|
1472
|
-
"RoleIdLib": [
|
1473
|
-
{
|
1474
|
-
"length": 20,
|
1475
|
-
"start": 16685
|
1476
|
-
},
|
1477
|
-
{
|
1478
|
-
"length": 20,
|
1479
|
-
"start": 17879
|
1480
|
-
}
|
1481
|
-
]
|
1482
|
-
},
|
1483
|
-
"contracts/types/Timestamp.sol": {
|
1484
|
-
"TimestampLib": [
|
1485
|
-
{
|
1486
|
-
"length": 20,
|
1487
|
-
"start": 5405
|
1488
|
-
},
|
1489
|
-
{
|
1490
|
-
"length": 20,
|
1491
|
-
"start": 5539
|
1492
|
-
},
|
1493
|
-
{
|
1494
|
-
"length": 20,
|
1495
|
-
"start": 5645
|
1496
|
-
},
|
1497
|
-
{
|
1498
|
-
"length": 20,
|
1499
|
-
"start": 10859
|
1500
|
-
},
|
1501
|
-
{
|
1502
|
-
"length": 20,
|
1503
|
-
"start": 11983
|
1504
|
-
},
|
1505
|
-
{
|
1506
|
-
"length": 20,
|
1507
|
-
"start": 12119
|
1508
|
-
},
|
1509
|
-
{
|
1510
|
-
"length": 20,
|
1511
|
-
"start": 12241
|
1512
|
-
},
|
1513
|
-
{
|
1514
|
-
"length": 20,
|
1515
|
-
"start": 12384
|
1516
|
-
}
|
1517
|
-
]
|
1518
|
-
},
|
1519
|
-
"contracts/types/UFixed.sol": {
|
1520
|
-
"UFixedLib": [
|
1521
|
-
{
|
1522
|
-
"length": 20,
|
1523
|
-
"start": 3203
|
1524
|
-
},
|
1525
|
-
{
|
1526
|
-
"length": 20,
|
1527
|
-
"start": 3341
|
1528
|
-
},
|
1529
|
-
{
|
1530
|
-
"length": 20,
|
1531
|
-
"start": 3921
|
1532
|
-
},
|
1533
|
-
{
|
1534
|
-
"length": 20,
|
1535
|
-
"start": 4035
|
1536
|
-
},
|
1537
|
-
{
|
1538
|
-
"length": 20,
|
1539
|
-
"start": 4170
|
1540
|
-
},
|
1541
|
-
{
|
1542
|
-
"length": 20,
|
1543
|
-
"start": 4295
|
1544
|
-
},
|
1545
|
-
{
|
1546
|
-
"length": 20,
|
1547
|
-
"start": 4422
|
1548
|
-
},
|
1549
|
-
{
|
1550
|
-
"length": 20,
|
1551
|
-
"start": 4557
|
1552
|
-
},
|
1553
|
-
{
|
1554
|
-
"length": 20,
|
1555
|
-
"start": 6233
|
1556
|
-
},
|
1557
|
-
{
|
1558
|
-
"length": 20,
|
1559
|
-
"start": 6369
|
1560
|
-
},
|
1561
|
-
{
|
1562
|
-
"length": 20,
|
1563
|
-
"start": 6495
|
1564
|
-
},
|
1565
|
-
{
|
1566
|
-
"length": 20,
|
1567
|
-
"start": 6616
|
1568
|
-
},
|
1569
|
-
{
|
1570
|
-
"length": 20,
|
1571
|
-
"start": 6732
|
1572
|
-
},
|
1573
|
-
{
|
1574
|
-
"length": 20,
|
1575
|
-
"start": 11442
|
1576
|
-
},
|
1577
|
-
{
|
1578
|
-
"length": 20,
|
1579
|
-
"start": 11558
|
1580
|
-
},
|
1581
|
-
{
|
1582
|
-
"length": 20,
|
1583
|
-
"start": 11726
|
1584
|
-
},
|
1585
|
-
{
|
1586
|
-
"length": 20,
|
1587
|
-
"start": 11842
|
1588
|
-
},
|
1589
|
-
{
|
1590
|
-
"length": 20,
|
1591
|
-
"start": 13060
|
1592
|
-
},
|
1593
|
-
{
|
1594
|
-
"length": 20,
|
1595
|
-
"start": 13179
|
1596
|
-
}
|
1597
|
-
]
|
1598
|
-
},
|
1599
|
-
"contracts/types/Version.sol": {
|
1600
|
-
"VersionLib": [
|
1601
|
-
{
|
1602
|
-
"length": 20,
|
1603
|
-
"start": 1711
|
1604
|
-
},
|
1605
|
-
{
|
1606
|
-
"length": 20,
|
1607
|
-
"start": 7426
|
1608
|
-
}
|
1609
|
-
],
|
1610
|
-
"VersionPartLib": [
|
1611
|
-
{
|
1612
|
-
"length": 20,
|
1613
|
-
"start": 13889
|
1614
|
-
}
|
1615
|
-
]
|
1616
|
-
}
|
1617
|
-
},
|
1618
|
-
"deployedLinkReferences": {
|
1619
|
-
"contracts/types/DistributorType.sol": {
|
1620
|
-
"DistributorTypeLib": [
|
1621
|
-
{
|
1622
|
-
"length": 20,
|
1623
|
-
"start": 6635
|
1624
|
-
},
|
1625
|
-
{
|
1626
|
-
"length": 20,
|
1627
|
-
"start": 6776
|
1628
|
-
}
|
1629
|
-
]
|
1630
|
-
},
|
1631
|
-
"contracts/types/NftId.sol": {
|
1632
|
-
"NftIdLib": [
|
1633
|
-
{
|
1634
|
-
"length": 20,
|
1635
|
-
"start": 2069
|
1636
|
-
},
|
1637
|
-
{
|
1638
|
-
"length": 20,
|
1639
|
-
"start": 5031
|
1640
|
-
},
|
1641
|
-
{
|
1642
|
-
"length": 20,
|
1643
|
-
"start": 10291
|
1644
|
-
},
|
1645
|
-
{
|
1646
|
-
"length": 20,
|
1647
|
-
"start": 15938
|
1648
|
-
},
|
1649
|
-
{
|
1650
|
-
"length": 20,
|
1651
|
-
"start": 16715
|
1652
|
-
}
|
1653
|
-
]
|
1654
|
-
},
|
1655
|
-
"contracts/types/Referral.sol": {
|
1656
|
-
"ReferralLib": [
|
1657
|
-
{
|
1658
|
-
"length": 20,
|
1659
|
-
"start": 12289
|
1660
|
-
},
|
1661
|
-
{
|
1662
|
-
"length": 20,
|
1663
|
-
"start": 12523
|
1664
|
-
},
|
1665
|
-
{
|
1666
|
-
"length": 20,
|
1667
|
-
"start": 13771
|
1668
|
-
},
|
1669
|
-
{
|
1670
|
-
"length": 20,
|
1671
|
-
"start": 14744
|
1672
|
-
}
|
1673
|
-
]
|
1674
|
-
},
|
1675
|
-
"contracts/types/RoleId.sol": {
|
1676
|
-
"RoleIdLib": [
|
1677
|
-
{
|
1678
|
-
"length": 20,
|
1679
|
-
"start": 16455
|
1680
|
-
},
|
1681
|
-
{
|
1682
|
-
"length": 20,
|
1683
|
-
"start": 17649
|
1684
|
-
}
|
1685
|
-
]
|
1686
|
-
},
|
1687
|
-
"contracts/types/Timestamp.sol": {
|
1688
|
-
"TimestampLib": [
|
1689
|
-
{
|
1690
|
-
"length": 20,
|
1691
|
-
"start": 5175
|
1692
|
-
},
|
1693
|
-
{
|
1694
|
-
"length": 20,
|
1695
|
-
"start": 5309
|
1696
|
-
},
|
1697
|
-
{
|
1698
|
-
"length": 20,
|
1699
|
-
"start": 5415
|
1700
|
-
},
|
1701
|
-
{
|
1702
|
-
"length": 20,
|
1703
|
-
"start": 10629
|
1704
|
-
},
|
1705
|
-
{
|
1706
|
-
"length": 20,
|
1707
|
-
"start": 11753
|
1708
|
-
},
|
1709
|
-
{
|
1710
|
-
"length": 20,
|
1711
|
-
"start": 11889
|
1712
|
-
},
|
1713
|
-
{
|
1714
|
-
"length": 20,
|
1715
|
-
"start": 12011
|
1716
|
-
},
|
1717
|
-
{
|
1718
|
-
"length": 20,
|
1719
|
-
"start": 12154
|
1720
|
-
}
|
1721
|
-
]
|
1722
|
-
},
|
1723
|
-
"contracts/types/UFixed.sol": {
|
1724
|
-
"UFixedLib": [
|
1725
|
-
{
|
1726
|
-
"length": 20,
|
1727
|
-
"start": 2973
|
1728
|
-
},
|
1729
|
-
{
|
1730
|
-
"length": 20,
|
1731
|
-
"start": 3111
|
1732
|
-
},
|
1733
|
-
{
|
1734
|
-
"length": 20,
|
1735
|
-
"start": 3691
|
1736
|
-
},
|
1737
|
-
{
|
1738
|
-
"length": 20,
|
1739
|
-
"start": 3805
|
1740
|
-
},
|
1741
|
-
{
|
1742
|
-
"length": 20,
|
1743
|
-
"start": 3940
|
1744
|
-
},
|
1745
|
-
{
|
1746
|
-
"length": 20,
|
1747
|
-
"start": 4065
|
1748
|
-
},
|
1749
|
-
{
|
1750
|
-
"length": 20,
|
1751
|
-
"start": 4192
|
1752
|
-
},
|
1753
|
-
{
|
1754
|
-
"length": 20,
|
1755
|
-
"start": 4327
|
1756
|
-
},
|
1757
|
-
{
|
1758
|
-
"length": 20,
|
1759
|
-
"start": 6003
|
1760
|
-
},
|
1761
|
-
{
|
1762
|
-
"length": 20,
|
1763
|
-
"start": 6139
|
1764
|
-
},
|
1765
|
-
{
|
1766
|
-
"length": 20,
|
1767
|
-
"start": 6265
|
1768
|
-
},
|
1769
|
-
{
|
1770
|
-
"length": 20,
|
1771
|
-
"start": 6386
|
1772
|
-
},
|
1773
|
-
{
|
1774
|
-
"length": 20,
|
1775
|
-
"start": 6502
|
1776
|
-
},
|
1777
|
-
{
|
1778
|
-
"length": 20,
|
1779
|
-
"start": 11212
|
1780
|
-
},
|
1781
|
-
{
|
1782
|
-
"length": 20,
|
1783
|
-
"start": 11328
|
1784
|
-
},
|
1785
|
-
{
|
1786
|
-
"length": 20,
|
1787
|
-
"start": 11496
|
1788
|
-
},
|
1789
|
-
{
|
1790
|
-
"length": 20,
|
1791
|
-
"start": 11612
|
1792
|
-
},
|
1793
|
-
{
|
1794
|
-
"length": 20,
|
1795
|
-
"start": 12830
|
1796
|
-
},
|
1797
|
-
{
|
1798
|
-
"length": 20,
|
1799
|
-
"start": 12949
|
1800
|
-
}
|
1801
|
-
]
|
1802
|
-
},
|
1803
|
-
"contracts/types/Version.sol": {
|
1804
|
-
"VersionLib": [
|
1805
|
-
{
|
1806
|
-
"length": 20,
|
1807
|
-
"start": 1481
|
1808
|
-
},
|
1809
|
-
{
|
1810
|
-
"length": 20,
|
1811
|
-
"start": 7196
|
1812
|
-
}
|
1813
|
-
],
|
1814
|
-
"VersionPartLib": [
|
1815
|
-
{
|
1816
|
-
"length": 20,
|
1817
|
-
"start": 13659
|
1818
|
-
}
|
1819
|
-
]
|
1820
|
-
}
|
1821
|
-
}
|
1822
|
-
}
|