@etherisc/gif-next 0.0.2-e6ad61d-739 → 0.0.2-e802d97-713
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +338 -19
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1349 -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/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +331 -1138
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +463 -1216
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +228 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1701 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1053 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3642 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/{instance/treasury/ITreasury.sol/ITreasury.json → oracle/IOracle.sol/IOracle.json} +2 -2
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +718 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1105 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +746 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1432 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +738 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +834 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1278 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +810 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +499 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.json +387 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1146 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +754 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +983 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +778 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +679 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +694 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +744 -26
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1026 -52
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +407 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1415 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +709 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1292 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +137 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1715 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1728 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1806 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1824 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1490 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +792 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +468 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/lifecycle/ILifecycle.sol/ILifecycleModule.json → shared/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +42 -77
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -134
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +571 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +353 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +260 -218
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2045 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +777 -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 +1324 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +726 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2189 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +105 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/distribution/Distribution.sol +261 -0
- package/contracts/distribution/DistributionService.sol +298 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/distribution/IDistributionComponent.sol +66 -0
- package/contracts/distribution/IDistributionService.sol +81 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +79 -22
- package/contracts/instance/IInstanceService.sol +81 -0
- package/contracts/instance/Instance.sol +217 -53
- package/contracts/instance/InstanceAdmin.sol +331 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
- package/contracts/instance/InstanceReader.sol +390 -0
- package/contracts/instance/InstanceService.sol +362 -0
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +281 -0
- package/contracts/instance/base/BalanceStore.sol +118 -0
- package/contracts/instance/base/Cloneable.sol +51 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectManager.sol +82 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/mock/Dip.sol +26 -0
- package/contracts/oracle/IOracle.sol +20 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +145 -0
- package/contracts/oracle/OracleService.sol +277 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +112 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +299 -0
- package/contracts/pool/PoolService.sol +453 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +42 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +475 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +301 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/product/Product.sol +377 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +144 -62
- package/contracts/registry/IRegistry.sol +99 -42
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +521 -127
- package/contracts/registry/RegistryAdmin.sol +237 -0
- package/contracts/registry/RegistryService.sol +266 -0
- package/contracts/registry/RegistryServiceManager.sol +58 -0
- package/contracts/registry/ReleaseManager.sol +600 -0
- package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/AccessManagerCustom.sol +736 -0
- package/contracts/shared/AccessManagerExtended.sol +470 -0
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +618 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/IAccessManagerExtended.sol +74 -0
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/shared/IKeyValueStore.sol +53 -0
- package/contracts/shared/ILifecycle.sol +30 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +144 -0
- package/contracts/shared/KeyValueStore.sol +127 -0
- package/contracts/shared/Lifecycle.sol +130 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +102 -0
- package/contracts/shared/ProxyManager.sol +199 -0
- package/contracts/shared/Registerable.sol +75 -0
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +77 -0
- package/contracts/shared/TokenHandler.sol +58 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +149 -0
- package/contracts/staking/StakeManagerLib.sol +179 -0
- package/contracts/staking/Staking.sol +551 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +406 -0
- package/contracts/staking/StakingServiceManager.sol +45 -0
- package/contracts/staking/StakingStore.sol +572 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +128 -0
- package/contracts/{types → type}/Blocknumber.sol +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/type/NftId.sol +78 -0
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/{types → type}/ObjectType.sol +81 -20
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +89 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +146 -0
- package/contracts/type/Seconds.sol +81 -0
- package/contracts/{types → type}/StateId.sol +50 -6
- package/contracts/{types → type}/Timestamp.sol +41 -7
- package/contracts/type/UFixed.sol +326 -0
- package/contracts/type/Version.sol +108 -0
- package/package.json +14 -7
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -205
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -328
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -346
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- 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/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
- 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/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 -174
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/components/Pool.sol +0 -52
- package/contracts/components/Product.sol +0 -89
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -32
- package/contracts/types/NftId.sol +0 -51
- package/contracts/types/UFixed.sol +0 -210
@@ -0,0 +1,2189 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "StakingStore",
|
4
|
+
"sourceName": "contracts/staking/StakingStore.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "contract IRegistry",
|
10
|
+
"name": "registry",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "contract StakingReader",
|
15
|
+
"name": "reader",
|
16
|
+
"type": "address"
|
17
|
+
}
|
18
|
+
],
|
19
|
+
"stateMutability": "nonpayable",
|
20
|
+
"type": "constructor"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"inputs": [
|
24
|
+
{
|
25
|
+
"internalType": "address",
|
26
|
+
"name": "authority",
|
27
|
+
"type": "address"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedInvalidAuthority",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"internalType": "uint32",
|
42
|
+
"name": "delay",
|
43
|
+
"type": "uint32"
|
44
|
+
}
|
45
|
+
],
|
46
|
+
"name": "AccessManagedRequiredDelay",
|
47
|
+
"type": "error"
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"inputs": [
|
51
|
+
{
|
52
|
+
"internalType": "address",
|
53
|
+
"name": "caller",
|
54
|
+
"type": "address"
|
55
|
+
}
|
56
|
+
],
|
57
|
+
"name": "AccessManagedUnauthorized",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"inputs": [
|
62
|
+
{
|
63
|
+
"internalType": "ObjectType",
|
64
|
+
"name": "objectType",
|
65
|
+
"type": "uint8"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"internalType": "StateId",
|
69
|
+
"name": "fromStateId",
|
70
|
+
"type": "uint8"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"internalType": "StateId",
|
74
|
+
"name": "toStateId",
|
75
|
+
"type": "uint8"
|
76
|
+
}
|
77
|
+
],
|
78
|
+
"name": "ErrorInvalidStateTransition",
|
79
|
+
"type": "error"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"inputs": [
|
83
|
+
{
|
84
|
+
"internalType": "Key32",
|
85
|
+
"name": "key",
|
86
|
+
"type": "bytes32"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"internalType": "ObjectType",
|
90
|
+
"name": "objectType",
|
91
|
+
"type": "uint8"
|
92
|
+
}
|
93
|
+
],
|
94
|
+
"name": "ErrorKeyValueStoreAlreadyCreated",
|
95
|
+
"type": "error"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"inputs": [
|
99
|
+
{
|
100
|
+
"internalType": "Key32",
|
101
|
+
"name": "key",
|
102
|
+
"type": "bytes32"
|
103
|
+
}
|
104
|
+
],
|
105
|
+
"name": "ErrorKeyValueStoreNotExisting",
|
106
|
+
"type": "error"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"inputs": [
|
110
|
+
{
|
111
|
+
"internalType": "Key32",
|
112
|
+
"name": "key",
|
113
|
+
"type": "bytes32"
|
114
|
+
}
|
115
|
+
],
|
116
|
+
"name": "ErrorKeyValueStoreStateZero",
|
117
|
+
"type": "error"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"inputs": [
|
121
|
+
{
|
122
|
+
"internalType": "ObjectType",
|
123
|
+
"name": "objectType",
|
124
|
+
"type": "uint8"
|
125
|
+
}
|
126
|
+
],
|
127
|
+
"name": "ErrorKeyValueStoreTypeUndefined",
|
128
|
+
"type": "error"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"inputs": [
|
132
|
+
{
|
133
|
+
"internalType": "NftId",
|
134
|
+
"name": "nftId",
|
135
|
+
"type": "uint96"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"internalType": "ObjectType",
|
139
|
+
"name": "objectType",
|
140
|
+
"type": "uint8"
|
141
|
+
}
|
142
|
+
],
|
143
|
+
"name": "ErrorNoLifecycle",
|
144
|
+
"type": "error"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"inputs": [
|
148
|
+
{
|
149
|
+
"internalType": "NftId",
|
150
|
+
"name": "nftId",
|
151
|
+
"type": "uint96"
|
152
|
+
}
|
153
|
+
],
|
154
|
+
"name": "ErrorStakingStoreBalanceAlreadyInitialized",
|
155
|
+
"type": "error"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"inputs": [
|
159
|
+
{
|
160
|
+
"internalType": "NftId",
|
161
|
+
"name": "nftId",
|
162
|
+
"type": "uint96"
|
163
|
+
}
|
164
|
+
],
|
165
|
+
"name": "ErrorStakingStoreBalanceNotInitialized",
|
166
|
+
"type": "error"
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"inputs": [
|
170
|
+
{
|
171
|
+
"internalType": "NftId",
|
172
|
+
"name": "targetNftId",
|
173
|
+
"type": "uint96"
|
174
|
+
}
|
175
|
+
],
|
176
|
+
"name": "ErrorStakingStoreNotTarget",
|
177
|
+
"type": "error"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"inputs": [
|
181
|
+
{
|
182
|
+
"internalType": "NftId",
|
183
|
+
"name": "targetNftId",
|
184
|
+
"type": "uint96"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"internalType": "Amount",
|
188
|
+
"name": "dipAmount",
|
189
|
+
"type": "uint96"
|
190
|
+
},
|
191
|
+
{
|
192
|
+
"internalType": "Amount",
|
193
|
+
"name": "reservesBalanceAmount",
|
194
|
+
"type": "uint96"
|
195
|
+
}
|
196
|
+
],
|
197
|
+
"name": "ErrorStakingStoreRewardReservesInsufficient",
|
198
|
+
"type": "error"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"inputs": [
|
202
|
+
{
|
203
|
+
"internalType": "NftId",
|
204
|
+
"name": "nftId",
|
205
|
+
"type": "uint96"
|
206
|
+
}
|
207
|
+
],
|
208
|
+
"name": "ErrorStakingStoreTvlBalanceNotInitialized",
|
209
|
+
"type": "error"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"inputs": [],
|
213
|
+
"name": "InvalidInitialization",
|
214
|
+
"type": "error"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"inputs": [],
|
218
|
+
"name": "NotInitializing",
|
219
|
+
"type": "error"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"anonymous": false,
|
223
|
+
"inputs": [
|
224
|
+
{
|
225
|
+
"indexed": false,
|
226
|
+
"internalType": "address",
|
227
|
+
"name": "authority",
|
228
|
+
"type": "address"
|
229
|
+
}
|
230
|
+
],
|
231
|
+
"name": "AuthorityUpdated",
|
232
|
+
"type": "event"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"anonymous": false,
|
236
|
+
"inputs": [
|
237
|
+
{
|
238
|
+
"indexed": false,
|
239
|
+
"internalType": "uint64",
|
240
|
+
"name": "version",
|
241
|
+
"type": "uint64"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
"name": "Initialized",
|
245
|
+
"type": "event"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"anonymous": false,
|
249
|
+
"inputs": [
|
250
|
+
{
|
251
|
+
"indexed": false,
|
252
|
+
"internalType": "ObjectType",
|
253
|
+
"name": "objectType",
|
254
|
+
"type": "uint8"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"indexed": false,
|
258
|
+
"internalType": "KeyId",
|
259
|
+
"name": "keyId",
|
260
|
+
"type": "bytes31"
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"indexed": false,
|
264
|
+
"internalType": "StateId",
|
265
|
+
"name": "state",
|
266
|
+
"type": "uint8"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"indexed": false,
|
270
|
+
"internalType": "address",
|
271
|
+
"name": "createdBy",
|
272
|
+
"type": "address"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"indexed": false,
|
276
|
+
"internalType": "address",
|
277
|
+
"name": "txOrigin",
|
278
|
+
"type": "address"
|
279
|
+
}
|
280
|
+
],
|
281
|
+
"name": "LogInfoCreated",
|
282
|
+
"type": "event"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"anonymous": false,
|
286
|
+
"inputs": [
|
287
|
+
{
|
288
|
+
"indexed": false,
|
289
|
+
"internalType": "ObjectType",
|
290
|
+
"name": "objectType",
|
291
|
+
"type": "uint8"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"indexed": false,
|
295
|
+
"internalType": "KeyId",
|
296
|
+
"name": "keyId",
|
297
|
+
"type": "bytes31"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"indexed": false,
|
301
|
+
"internalType": "StateId",
|
302
|
+
"name": "state",
|
303
|
+
"type": "uint8"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"indexed": false,
|
307
|
+
"internalType": "address",
|
308
|
+
"name": "updatedBy",
|
309
|
+
"type": "address"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"indexed": false,
|
313
|
+
"internalType": "address",
|
314
|
+
"name": "txOrigin",
|
315
|
+
"type": "address"
|
316
|
+
},
|
317
|
+
{
|
318
|
+
"indexed": false,
|
319
|
+
"internalType": "Blocknumber",
|
320
|
+
"name": "lastUpdatedIn",
|
321
|
+
"type": "uint32"
|
322
|
+
}
|
323
|
+
],
|
324
|
+
"name": "LogInfoUpdated",
|
325
|
+
"type": "event"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"anonymous": false,
|
329
|
+
"inputs": [
|
330
|
+
{
|
331
|
+
"indexed": false,
|
332
|
+
"internalType": "NftId",
|
333
|
+
"name": "targetNftId",
|
334
|
+
"type": "uint96"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"indexed": false,
|
338
|
+
"internalType": "Amount",
|
339
|
+
"name": "dipAmount",
|
340
|
+
"type": "uint96"
|
341
|
+
},
|
342
|
+
{
|
343
|
+
"indexed": false,
|
344
|
+
"internalType": "Amount",
|
345
|
+
"name": "reserveBalance",
|
346
|
+
"type": "uint96"
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"indexed": false,
|
350
|
+
"internalType": "Blocknumber",
|
351
|
+
"name": "lastUpdatedIn",
|
352
|
+
"type": "uint32"
|
353
|
+
}
|
354
|
+
],
|
355
|
+
"name": "LogStakingStoreReserveBalanceDecreased",
|
356
|
+
"type": "event"
|
357
|
+
},
|
358
|
+
{
|
359
|
+
"anonymous": false,
|
360
|
+
"inputs": [
|
361
|
+
{
|
362
|
+
"indexed": false,
|
363
|
+
"internalType": "NftId",
|
364
|
+
"name": "targetNftId",
|
365
|
+
"type": "uint96"
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"indexed": false,
|
369
|
+
"internalType": "Amount",
|
370
|
+
"name": "dipAmount",
|
371
|
+
"type": "uint96"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"indexed": false,
|
375
|
+
"internalType": "Amount",
|
376
|
+
"name": "reserveBalance",
|
377
|
+
"type": "uint96"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"indexed": false,
|
381
|
+
"internalType": "Blocknumber",
|
382
|
+
"name": "lastUpdatedIn",
|
383
|
+
"type": "uint32"
|
384
|
+
}
|
385
|
+
],
|
386
|
+
"name": "LogStakingStoreReserveBalanceIncreased",
|
387
|
+
"type": "event"
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"anonymous": false,
|
391
|
+
"inputs": [
|
392
|
+
{
|
393
|
+
"indexed": false,
|
394
|
+
"internalType": "NftId",
|
395
|
+
"name": "nftId",
|
396
|
+
"type": "uint96"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"indexed": false,
|
400
|
+
"internalType": "Amount",
|
401
|
+
"name": "addedAmount",
|
402
|
+
"type": "uint96"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"indexed": false,
|
406
|
+
"internalType": "Amount",
|
407
|
+
"name": "newBalance",
|
408
|
+
"type": "uint96"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"indexed": false,
|
412
|
+
"internalType": "Blocknumber",
|
413
|
+
"name": "lastUpdatedIn",
|
414
|
+
"type": "uint32"
|
415
|
+
}
|
416
|
+
],
|
417
|
+
"name": "LogStakingStoreRewardsDecreased",
|
418
|
+
"type": "event"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"anonymous": false,
|
422
|
+
"inputs": [
|
423
|
+
{
|
424
|
+
"indexed": false,
|
425
|
+
"internalType": "NftId",
|
426
|
+
"name": "nftId",
|
427
|
+
"type": "uint96"
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"indexed": false,
|
431
|
+
"internalType": "Amount",
|
432
|
+
"name": "addedAmount",
|
433
|
+
"type": "uint96"
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"indexed": false,
|
437
|
+
"internalType": "Amount",
|
438
|
+
"name": "newBalance",
|
439
|
+
"type": "uint96"
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"indexed": false,
|
443
|
+
"internalType": "Blocknumber",
|
444
|
+
"name": "lastUpdatedIn",
|
445
|
+
"type": "uint32"
|
446
|
+
}
|
447
|
+
],
|
448
|
+
"name": "LogStakingStoreRewardsIncreased",
|
449
|
+
"type": "event"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"anonymous": false,
|
453
|
+
"inputs": [
|
454
|
+
{
|
455
|
+
"indexed": false,
|
456
|
+
"internalType": "NftId",
|
457
|
+
"name": "nftId",
|
458
|
+
"type": "uint96"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"indexed": false,
|
462
|
+
"internalType": "Amount",
|
463
|
+
"name": "amount",
|
464
|
+
"type": "uint96"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"indexed": false,
|
468
|
+
"internalType": "Amount",
|
469
|
+
"name": "rewardAmount",
|
470
|
+
"type": "uint96"
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"indexed": false,
|
474
|
+
"internalType": "Amount",
|
475
|
+
"name": "rewardIncrementAmount",
|
476
|
+
"type": "uint96"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"indexed": false,
|
480
|
+
"internalType": "Amount",
|
481
|
+
"name": "newBalance",
|
482
|
+
"type": "uint96"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"indexed": false,
|
486
|
+
"internalType": "Blocknumber",
|
487
|
+
"name": "lastUpdatedIn",
|
488
|
+
"type": "uint32"
|
489
|
+
}
|
490
|
+
],
|
491
|
+
"name": "LogStakingStoreRewardsRestaked",
|
492
|
+
"type": "event"
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"anonymous": false,
|
496
|
+
"inputs": [
|
497
|
+
{
|
498
|
+
"indexed": false,
|
499
|
+
"internalType": "NftId",
|
500
|
+
"name": "nftId",
|
501
|
+
"type": "uint96"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"indexed": false,
|
505
|
+
"internalType": "Amount",
|
506
|
+
"name": "addedAmount",
|
507
|
+
"type": "uint96"
|
508
|
+
},
|
509
|
+
{
|
510
|
+
"indexed": false,
|
511
|
+
"internalType": "Amount",
|
512
|
+
"name": "newBalance",
|
513
|
+
"type": "uint96"
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"indexed": false,
|
517
|
+
"internalType": "Blocknumber",
|
518
|
+
"name": "lastUpdatedIn",
|
519
|
+
"type": "uint32"
|
520
|
+
}
|
521
|
+
],
|
522
|
+
"name": "LogStakingStoreStakesDecreased",
|
523
|
+
"type": "event"
|
524
|
+
},
|
525
|
+
{
|
526
|
+
"anonymous": false,
|
527
|
+
"inputs": [
|
528
|
+
{
|
529
|
+
"indexed": false,
|
530
|
+
"internalType": "NftId",
|
531
|
+
"name": "nftId",
|
532
|
+
"type": "uint96"
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"indexed": false,
|
536
|
+
"internalType": "Amount",
|
537
|
+
"name": "addedAmount",
|
538
|
+
"type": "uint96"
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"indexed": false,
|
542
|
+
"internalType": "Amount",
|
543
|
+
"name": "newBalance",
|
544
|
+
"type": "uint96"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"indexed": false,
|
548
|
+
"internalType": "Blocknumber",
|
549
|
+
"name": "lastUpdatedIn",
|
550
|
+
"type": "uint32"
|
551
|
+
}
|
552
|
+
],
|
553
|
+
"name": "LogStakingStoreStakesIncreased",
|
554
|
+
"type": "event"
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"anonymous": false,
|
558
|
+
"inputs": [
|
559
|
+
{
|
560
|
+
"indexed": false,
|
561
|
+
"internalType": "NftId",
|
562
|
+
"name": "targetNftId",
|
563
|
+
"type": "uint96"
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"indexed": false,
|
567
|
+
"internalType": "address",
|
568
|
+
"name": "token",
|
569
|
+
"type": "address"
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"indexed": false,
|
573
|
+
"internalType": "Amount",
|
574
|
+
"name": "amount",
|
575
|
+
"type": "uint96"
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"indexed": false,
|
579
|
+
"internalType": "Amount",
|
580
|
+
"name": "newBalance",
|
581
|
+
"type": "uint96"
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"indexed": false,
|
585
|
+
"internalType": "Blocknumber",
|
586
|
+
"name": "lastUpdatedIn",
|
587
|
+
"type": "uint32"
|
588
|
+
}
|
589
|
+
],
|
590
|
+
"name": "LogStakingStoreTotalValueLockedDecreased",
|
591
|
+
"type": "event"
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"anonymous": false,
|
595
|
+
"inputs": [
|
596
|
+
{
|
597
|
+
"indexed": false,
|
598
|
+
"internalType": "NftId",
|
599
|
+
"name": "targetNftId",
|
600
|
+
"type": "uint96"
|
601
|
+
},
|
602
|
+
{
|
603
|
+
"indexed": false,
|
604
|
+
"internalType": "address",
|
605
|
+
"name": "token",
|
606
|
+
"type": "address"
|
607
|
+
},
|
608
|
+
{
|
609
|
+
"indexed": false,
|
610
|
+
"internalType": "Amount",
|
611
|
+
"name": "amount",
|
612
|
+
"type": "uint96"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"indexed": false,
|
616
|
+
"internalType": "Amount",
|
617
|
+
"name": "newBalance",
|
618
|
+
"type": "uint96"
|
619
|
+
},
|
620
|
+
{
|
621
|
+
"indexed": false,
|
622
|
+
"internalType": "Blocknumber",
|
623
|
+
"name": "lastUpdatedIn",
|
624
|
+
"type": "uint32"
|
625
|
+
}
|
626
|
+
],
|
627
|
+
"name": "LogStakingStoreTotalValueLockedIncreased",
|
628
|
+
"type": "event"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"anonymous": false,
|
632
|
+
"inputs": [
|
633
|
+
{
|
634
|
+
"indexed": false,
|
635
|
+
"internalType": "ObjectType",
|
636
|
+
"name": "objectType",
|
637
|
+
"type": "uint8"
|
638
|
+
},
|
639
|
+
{
|
640
|
+
"indexed": false,
|
641
|
+
"internalType": "KeyId",
|
642
|
+
"name": "keyId",
|
643
|
+
"type": "bytes31"
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"indexed": false,
|
647
|
+
"internalType": "StateId",
|
648
|
+
"name": "stateOld",
|
649
|
+
"type": "uint8"
|
650
|
+
},
|
651
|
+
{
|
652
|
+
"indexed": false,
|
653
|
+
"internalType": "StateId",
|
654
|
+
"name": "stateNew",
|
655
|
+
"type": "uint8"
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"indexed": false,
|
659
|
+
"internalType": "address",
|
660
|
+
"name": "updatedBy",
|
661
|
+
"type": "address"
|
662
|
+
},
|
663
|
+
{
|
664
|
+
"indexed": false,
|
665
|
+
"internalType": "address",
|
666
|
+
"name": "txOrigin",
|
667
|
+
"type": "address"
|
668
|
+
},
|
669
|
+
{
|
670
|
+
"indexed": false,
|
671
|
+
"internalType": "Blocknumber",
|
672
|
+
"name": "lastUpdatedIn",
|
673
|
+
"type": "uint32"
|
674
|
+
}
|
675
|
+
],
|
676
|
+
"name": "LogStateUpdated",
|
677
|
+
"type": "event"
|
678
|
+
},
|
679
|
+
{
|
680
|
+
"inputs": [],
|
681
|
+
"name": "authority",
|
682
|
+
"outputs": [
|
683
|
+
{
|
684
|
+
"internalType": "address",
|
685
|
+
"name": "",
|
686
|
+
"type": "address"
|
687
|
+
}
|
688
|
+
],
|
689
|
+
"stateMutability": "view",
|
690
|
+
"type": "function"
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"inputs": [
|
694
|
+
{
|
695
|
+
"internalType": "ObjectType",
|
696
|
+
"name": "objectType",
|
697
|
+
"type": "uint8"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"internalType": "StateId",
|
701
|
+
"name": "fromId",
|
702
|
+
"type": "uint8"
|
703
|
+
},
|
704
|
+
{
|
705
|
+
"internalType": "StateId",
|
706
|
+
"name": "toId",
|
707
|
+
"type": "uint8"
|
708
|
+
}
|
709
|
+
],
|
710
|
+
"name": "checkTransition",
|
711
|
+
"outputs": [],
|
712
|
+
"stateMutability": "view",
|
713
|
+
"type": "function"
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"inputs": [
|
717
|
+
{
|
718
|
+
"internalType": "NftId",
|
719
|
+
"name": "nftId",
|
720
|
+
"type": "uint96"
|
721
|
+
},
|
722
|
+
{
|
723
|
+
"internalType": "NftId",
|
724
|
+
"name": "targetNftId",
|
725
|
+
"type": "uint96"
|
726
|
+
},
|
727
|
+
{
|
728
|
+
"internalType": "Amount",
|
729
|
+
"name": "maxClaimAmount",
|
730
|
+
"type": "uint96"
|
731
|
+
}
|
732
|
+
],
|
733
|
+
"name": "claimUpTo",
|
734
|
+
"outputs": [
|
735
|
+
{
|
736
|
+
"internalType": "Amount",
|
737
|
+
"name": "claimedAmount",
|
738
|
+
"type": "uint96"
|
739
|
+
}
|
740
|
+
],
|
741
|
+
"stateMutability": "nonpayable",
|
742
|
+
"type": "function"
|
743
|
+
},
|
744
|
+
{
|
745
|
+
"inputs": [
|
746
|
+
{
|
747
|
+
"internalType": "NftId",
|
748
|
+
"name": "stakeNftId",
|
749
|
+
"type": "uint96"
|
750
|
+
},
|
751
|
+
{
|
752
|
+
"components": [
|
753
|
+
{
|
754
|
+
"internalType": "Timestamp",
|
755
|
+
"name": "lockedUntil",
|
756
|
+
"type": "uint40"
|
757
|
+
}
|
758
|
+
],
|
759
|
+
"internalType": "struct IStaking.StakeInfo",
|
760
|
+
"name": "stakeInfo",
|
761
|
+
"type": "tuple"
|
762
|
+
}
|
763
|
+
],
|
764
|
+
"name": "create",
|
765
|
+
"outputs": [],
|
766
|
+
"stateMutability": "nonpayable",
|
767
|
+
"type": "function"
|
768
|
+
},
|
769
|
+
{
|
770
|
+
"inputs": [
|
771
|
+
{
|
772
|
+
"internalType": "NftId",
|
773
|
+
"name": "targetNftId",
|
774
|
+
"type": "uint96"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"components": [
|
778
|
+
{
|
779
|
+
"internalType": "ObjectType",
|
780
|
+
"name": "objectType",
|
781
|
+
"type": "uint8"
|
782
|
+
},
|
783
|
+
{
|
784
|
+
"internalType": "uint256",
|
785
|
+
"name": "chainId",
|
786
|
+
"type": "uint256"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"internalType": "Seconds",
|
790
|
+
"name": "lockingPeriod",
|
791
|
+
"type": "uint40"
|
792
|
+
},
|
793
|
+
{
|
794
|
+
"internalType": "UFixed",
|
795
|
+
"name": "rewardRate",
|
796
|
+
"type": "uint256"
|
797
|
+
}
|
798
|
+
],
|
799
|
+
"internalType": "struct IStaking.TargetInfo",
|
800
|
+
"name": "targetInfo",
|
801
|
+
"type": "tuple"
|
802
|
+
}
|
803
|
+
],
|
804
|
+
"name": "createTarget",
|
805
|
+
"outputs": [],
|
806
|
+
"stateMutability": "nonpayable",
|
807
|
+
"type": "function"
|
808
|
+
},
|
809
|
+
{
|
810
|
+
"inputs": [
|
811
|
+
{
|
812
|
+
"internalType": "NftId",
|
813
|
+
"name": "targetNftId",
|
814
|
+
"type": "uint96"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"internalType": "Amount",
|
818
|
+
"name": "dipAmount",
|
819
|
+
"type": "uint96"
|
820
|
+
}
|
821
|
+
],
|
822
|
+
"name": "decreaseReserves",
|
823
|
+
"outputs": [
|
824
|
+
{
|
825
|
+
"internalType": "Amount",
|
826
|
+
"name": "newReserveBalance",
|
827
|
+
"type": "uint96"
|
828
|
+
}
|
829
|
+
],
|
830
|
+
"stateMutability": "nonpayable",
|
831
|
+
"type": "function"
|
832
|
+
},
|
833
|
+
{
|
834
|
+
"inputs": [
|
835
|
+
{
|
836
|
+
"internalType": "NftId",
|
837
|
+
"name": "targetNftId",
|
838
|
+
"type": "uint96"
|
839
|
+
},
|
840
|
+
{
|
841
|
+
"internalType": "UFixed",
|
842
|
+
"name": "stakingRate",
|
843
|
+
"type": "uint256"
|
844
|
+
},
|
845
|
+
{
|
846
|
+
"internalType": "address",
|
847
|
+
"name": "token",
|
848
|
+
"type": "address"
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"internalType": "Amount",
|
852
|
+
"name": "amount",
|
853
|
+
"type": "uint96"
|
854
|
+
}
|
855
|
+
],
|
856
|
+
"name": "decreaseTotalValueLocked",
|
857
|
+
"outputs": [
|
858
|
+
{
|
859
|
+
"internalType": "Amount",
|
860
|
+
"name": "newBalance",
|
861
|
+
"type": "uint96"
|
862
|
+
}
|
863
|
+
],
|
864
|
+
"stateMutability": "nonpayable",
|
865
|
+
"type": "function"
|
866
|
+
},
|
867
|
+
{
|
868
|
+
"inputs": [
|
869
|
+
{
|
870
|
+
"internalType": "Key32",
|
871
|
+
"name": "key32",
|
872
|
+
"type": "bytes32"
|
873
|
+
}
|
874
|
+
],
|
875
|
+
"name": "exists",
|
876
|
+
"outputs": [
|
877
|
+
{
|
878
|
+
"internalType": "bool",
|
879
|
+
"name": "",
|
880
|
+
"type": "bool"
|
881
|
+
}
|
882
|
+
],
|
883
|
+
"stateMutability": "view",
|
884
|
+
"type": "function"
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"inputs": [
|
888
|
+
{
|
889
|
+
"internalType": "NftId",
|
890
|
+
"name": "stakeNftId",
|
891
|
+
"type": "uint96"
|
892
|
+
}
|
893
|
+
],
|
894
|
+
"name": "exists",
|
895
|
+
"outputs": [
|
896
|
+
{
|
897
|
+
"internalType": "bool",
|
898
|
+
"name": "",
|
899
|
+
"type": "bool"
|
900
|
+
}
|
901
|
+
],
|
902
|
+
"stateMutability": "view",
|
903
|
+
"type": "function"
|
904
|
+
},
|
905
|
+
{
|
906
|
+
"inputs": [
|
907
|
+
{
|
908
|
+
"internalType": "Key32",
|
909
|
+
"name": "key32",
|
910
|
+
"type": "bytes32"
|
911
|
+
}
|
912
|
+
],
|
913
|
+
"name": "get",
|
914
|
+
"outputs": [
|
915
|
+
{
|
916
|
+
"components": [
|
917
|
+
{
|
918
|
+
"components": [
|
919
|
+
{
|
920
|
+
"internalType": "ObjectType",
|
921
|
+
"name": "objectType",
|
922
|
+
"type": "uint8"
|
923
|
+
},
|
924
|
+
{
|
925
|
+
"internalType": "StateId",
|
926
|
+
"name": "state",
|
927
|
+
"type": "uint8"
|
928
|
+
},
|
929
|
+
{
|
930
|
+
"internalType": "Blocknumber",
|
931
|
+
"name": "updatedIn",
|
932
|
+
"type": "uint32"
|
933
|
+
},
|
934
|
+
{
|
935
|
+
"internalType": "Blocknumber",
|
936
|
+
"name": "createdIn",
|
937
|
+
"type": "uint32"
|
938
|
+
}
|
939
|
+
],
|
940
|
+
"internalType": "struct IKeyValueStore.Metadata",
|
941
|
+
"name": "metadata",
|
942
|
+
"type": "tuple"
|
943
|
+
},
|
944
|
+
{
|
945
|
+
"internalType": "bytes",
|
946
|
+
"name": "data",
|
947
|
+
"type": "bytes"
|
948
|
+
}
|
949
|
+
],
|
950
|
+
"internalType": "struct IKeyValueStore.Value",
|
951
|
+
"name": "value",
|
952
|
+
"type": "tuple"
|
953
|
+
}
|
954
|
+
],
|
955
|
+
"stateMutability": "view",
|
956
|
+
"type": "function"
|
957
|
+
},
|
958
|
+
{
|
959
|
+
"inputs": [
|
960
|
+
{
|
961
|
+
"internalType": "NftId",
|
962
|
+
"name": "nftId",
|
963
|
+
"type": "uint96"
|
964
|
+
}
|
965
|
+
],
|
966
|
+
"name": "getBalanceUpdatedAt",
|
967
|
+
"outputs": [
|
968
|
+
{
|
969
|
+
"internalType": "Timestamp",
|
970
|
+
"name": "updatedAt",
|
971
|
+
"type": "uint40"
|
972
|
+
}
|
973
|
+
],
|
974
|
+
"stateMutability": "view",
|
975
|
+
"type": "function"
|
976
|
+
},
|
977
|
+
{
|
978
|
+
"inputs": [
|
979
|
+
{
|
980
|
+
"internalType": "NftId",
|
981
|
+
"name": "nftId",
|
982
|
+
"type": "uint96"
|
983
|
+
}
|
984
|
+
],
|
985
|
+
"name": "getBalanceUpdatedIn",
|
986
|
+
"outputs": [
|
987
|
+
{
|
988
|
+
"internalType": "Blocknumber",
|
989
|
+
"name": "blocknumber",
|
990
|
+
"type": "uint32"
|
991
|
+
}
|
992
|
+
],
|
993
|
+
"stateMutability": "view",
|
994
|
+
"type": "function"
|
995
|
+
},
|
996
|
+
{
|
997
|
+
"inputs": [
|
998
|
+
{
|
999
|
+
"internalType": "Key32",
|
1000
|
+
"name": "key32",
|
1001
|
+
"type": "bytes32"
|
1002
|
+
}
|
1003
|
+
],
|
1004
|
+
"name": "getData",
|
1005
|
+
"outputs": [
|
1006
|
+
{
|
1007
|
+
"internalType": "bytes",
|
1008
|
+
"name": "data",
|
1009
|
+
"type": "bytes"
|
1010
|
+
}
|
1011
|
+
],
|
1012
|
+
"stateMutability": "view",
|
1013
|
+
"type": "function"
|
1014
|
+
},
|
1015
|
+
{
|
1016
|
+
"inputs": [
|
1017
|
+
{
|
1018
|
+
"internalType": "ObjectType",
|
1019
|
+
"name": "objectType",
|
1020
|
+
"type": "uint8"
|
1021
|
+
}
|
1022
|
+
],
|
1023
|
+
"name": "getInitialState",
|
1024
|
+
"outputs": [
|
1025
|
+
{
|
1026
|
+
"internalType": "StateId",
|
1027
|
+
"name": "",
|
1028
|
+
"type": "uint8"
|
1029
|
+
}
|
1030
|
+
],
|
1031
|
+
"stateMutability": "view",
|
1032
|
+
"type": "function"
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
"inputs": [
|
1036
|
+
{
|
1037
|
+
"internalType": "Key32",
|
1038
|
+
"name": "key32",
|
1039
|
+
"type": "bytes32"
|
1040
|
+
}
|
1041
|
+
],
|
1042
|
+
"name": "getMetadata",
|
1043
|
+
"outputs": [
|
1044
|
+
{
|
1045
|
+
"components": [
|
1046
|
+
{
|
1047
|
+
"internalType": "ObjectType",
|
1048
|
+
"name": "objectType",
|
1049
|
+
"type": "uint8"
|
1050
|
+
},
|
1051
|
+
{
|
1052
|
+
"internalType": "StateId",
|
1053
|
+
"name": "state",
|
1054
|
+
"type": "uint8"
|
1055
|
+
},
|
1056
|
+
{
|
1057
|
+
"internalType": "Blocknumber",
|
1058
|
+
"name": "updatedIn",
|
1059
|
+
"type": "uint32"
|
1060
|
+
},
|
1061
|
+
{
|
1062
|
+
"internalType": "Blocknumber",
|
1063
|
+
"name": "createdIn",
|
1064
|
+
"type": "uint32"
|
1065
|
+
}
|
1066
|
+
],
|
1067
|
+
"internalType": "struct IKeyValueStore.Metadata",
|
1068
|
+
"name": "metadata",
|
1069
|
+
"type": "tuple"
|
1070
|
+
}
|
1071
|
+
],
|
1072
|
+
"stateMutability": "view",
|
1073
|
+
"type": "function"
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
"inputs": [
|
1077
|
+
{
|
1078
|
+
"internalType": "NftId",
|
1079
|
+
"name": "nftId",
|
1080
|
+
"type": "uint96"
|
1081
|
+
}
|
1082
|
+
],
|
1083
|
+
"name": "getRequiredStakeBalance",
|
1084
|
+
"outputs": [
|
1085
|
+
{
|
1086
|
+
"internalType": "Amount",
|
1087
|
+
"name": "requiredAmount",
|
1088
|
+
"type": "uint96"
|
1089
|
+
}
|
1090
|
+
],
|
1091
|
+
"stateMutability": "view",
|
1092
|
+
"type": "function"
|
1093
|
+
},
|
1094
|
+
{
|
1095
|
+
"inputs": [
|
1096
|
+
{
|
1097
|
+
"internalType": "NftId",
|
1098
|
+
"name": "nftId",
|
1099
|
+
"type": "uint96"
|
1100
|
+
}
|
1101
|
+
],
|
1102
|
+
"name": "getReserveBalance",
|
1103
|
+
"outputs": [
|
1104
|
+
{
|
1105
|
+
"internalType": "Amount",
|
1106
|
+
"name": "balanceAmount",
|
1107
|
+
"type": "uint96"
|
1108
|
+
}
|
1109
|
+
],
|
1110
|
+
"stateMutability": "view",
|
1111
|
+
"type": "function"
|
1112
|
+
},
|
1113
|
+
{
|
1114
|
+
"inputs": [
|
1115
|
+
{
|
1116
|
+
"internalType": "NftId",
|
1117
|
+
"name": "nftId",
|
1118
|
+
"type": "uint96"
|
1119
|
+
}
|
1120
|
+
],
|
1121
|
+
"name": "getRewardBalance",
|
1122
|
+
"outputs": [
|
1123
|
+
{
|
1124
|
+
"internalType": "Amount",
|
1125
|
+
"name": "rewardAmount",
|
1126
|
+
"type": "uint96"
|
1127
|
+
}
|
1128
|
+
],
|
1129
|
+
"stateMutability": "view",
|
1130
|
+
"type": "function"
|
1131
|
+
},
|
1132
|
+
{
|
1133
|
+
"inputs": [
|
1134
|
+
{
|
1135
|
+
"internalType": "NftId",
|
1136
|
+
"name": "nftId",
|
1137
|
+
"type": "uint96"
|
1138
|
+
}
|
1139
|
+
],
|
1140
|
+
"name": "getStakeBalance",
|
1141
|
+
"outputs": [
|
1142
|
+
{
|
1143
|
+
"internalType": "Amount",
|
1144
|
+
"name": "balanceAmount",
|
1145
|
+
"type": "uint96"
|
1146
|
+
}
|
1147
|
+
],
|
1148
|
+
"stateMutability": "view",
|
1149
|
+
"type": "function"
|
1150
|
+
},
|
1151
|
+
{
|
1152
|
+
"inputs": [
|
1153
|
+
{
|
1154
|
+
"internalType": "NftId",
|
1155
|
+
"name": "nftId",
|
1156
|
+
"type": "uint96"
|
1157
|
+
}
|
1158
|
+
],
|
1159
|
+
"name": "getStakeBalances",
|
1160
|
+
"outputs": [
|
1161
|
+
{
|
1162
|
+
"internalType": "Amount",
|
1163
|
+
"name": "stakeBalance",
|
1164
|
+
"type": "uint96"
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
"internalType": "Amount",
|
1168
|
+
"name": "rewardBalance",
|
1169
|
+
"type": "uint96"
|
1170
|
+
},
|
1171
|
+
{
|
1172
|
+
"internalType": "Timestamp",
|
1173
|
+
"name": "lastUpdatedAt",
|
1174
|
+
"type": "uint40"
|
1175
|
+
}
|
1176
|
+
],
|
1177
|
+
"stateMutability": "view",
|
1178
|
+
"type": "function"
|
1179
|
+
},
|
1180
|
+
{
|
1181
|
+
"inputs": [
|
1182
|
+
{
|
1183
|
+
"internalType": "uint256",
|
1184
|
+
"name": "chainId",
|
1185
|
+
"type": "uint256"
|
1186
|
+
},
|
1187
|
+
{
|
1188
|
+
"internalType": "address",
|
1189
|
+
"name": "token",
|
1190
|
+
"type": "address"
|
1191
|
+
}
|
1192
|
+
],
|
1193
|
+
"name": "getStakingRate",
|
1194
|
+
"outputs": [
|
1195
|
+
{
|
1196
|
+
"internalType": "UFixed",
|
1197
|
+
"name": "stakingRate",
|
1198
|
+
"type": "uint256"
|
1199
|
+
}
|
1200
|
+
],
|
1201
|
+
"stateMutability": "view",
|
1202
|
+
"type": "function"
|
1203
|
+
},
|
1204
|
+
{
|
1205
|
+
"inputs": [],
|
1206
|
+
"name": "getStakingReader",
|
1207
|
+
"outputs": [
|
1208
|
+
{
|
1209
|
+
"internalType": "contract StakingReader",
|
1210
|
+
"name": "stakingReader",
|
1211
|
+
"type": "address"
|
1212
|
+
}
|
1213
|
+
],
|
1214
|
+
"stateMutability": "view",
|
1215
|
+
"type": "function"
|
1216
|
+
},
|
1217
|
+
{
|
1218
|
+
"inputs": [
|
1219
|
+
{
|
1220
|
+
"internalType": "Key32",
|
1221
|
+
"name": "key32",
|
1222
|
+
"type": "bytes32"
|
1223
|
+
}
|
1224
|
+
],
|
1225
|
+
"name": "getState",
|
1226
|
+
"outputs": [
|
1227
|
+
{
|
1228
|
+
"internalType": "StateId",
|
1229
|
+
"name": "state",
|
1230
|
+
"type": "uint8"
|
1231
|
+
}
|
1232
|
+
],
|
1233
|
+
"stateMutability": "view",
|
1234
|
+
"type": "function"
|
1235
|
+
},
|
1236
|
+
{
|
1237
|
+
"inputs": [
|
1238
|
+
{
|
1239
|
+
"internalType": "NftId",
|
1240
|
+
"name": "nftId",
|
1241
|
+
"type": "uint96"
|
1242
|
+
}
|
1243
|
+
],
|
1244
|
+
"name": "getTargetBalances",
|
1245
|
+
"outputs": [
|
1246
|
+
{
|
1247
|
+
"internalType": "Amount",
|
1248
|
+
"name": "stakeBalance",
|
1249
|
+
"type": "uint96"
|
1250
|
+
},
|
1251
|
+
{
|
1252
|
+
"internalType": "Amount",
|
1253
|
+
"name": "rewardBalance",
|
1254
|
+
"type": "uint96"
|
1255
|
+
},
|
1256
|
+
{
|
1257
|
+
"internalType": "Amount",
|
1258
|
+
"name": "reserveBalance",
|
1259
|
+
"type": "uint96"
|
1260
|
+
},
|
1261
|
+
{
|
1262
|
+
"internalType": "Blocknumber",
|
1263
|
+
"name": "lastUpdatedIn",
|
1264
|
+
"type": "uint32"
|
1265
|
+
}
|
1266
|
+
],
|
1267
|
+
"stateMutability": "view",
|
1268
|
+
"type": "function"
|
1269
|
+
},
|
1270
|
+
{
|
1271
|
+
"inputs": [],
|
1272
|
+
"name": "getTargetManager",
|
1273
|
+
"outputs": [
|
1274
|
+
{
|
1275
|
+
"internalType": "contract NftIdSetManager",
|
1276
|
+
"name": "targetManager",
|
1277
|
+
"type": "address"
|
1278
|
+
}
|
1279
|
+
],
|
1280
|
+
"stateMutability": "view",
|
1281
|
+
"type": "function"
|
1282
|
+
},
|
1283
|
+
{
|
1284
|
+
"inputs": [
|
1285
|
+
{
|
1286
|
+
"internalType": "NftId",
|
1287
|
+
"name": "nftId",
|
1288
|
+
"type": "uint96"
|
1289
|
+
},
|
1290
|
+
{
|
1291
|
+
"internalType": "address",
|
1292
|
+
"name": "token",
|
1293
|
+
"type": "address"
|
1294
|
+
}
|
1295
|
+
],
|
1296
|
+
"name": "getTotalValueLocked",
|
1297
|
+
"outputs": [
|
1298
|
+
{
|
1299
|
+
"internalType": "Amount",
|
1300
|
+
"name": "tvlBalanceAmount",
|
1301
|
+
"type": "uint96"
|
1302
|
+
}
|
1303
|
+
],
|
1304
|
+
"stateMutability": "view",
|
1305
|
+
"type": "function"
|
1306
|
+
},
|
1307
|
+
{
|
1308
|
+
"inputs": [
|
1309
|
+
{
|
1310
|
+
"internalType": "ObjectType",
|
1311
|
+
"name": "objectType",
|
1312
|
+
"type": "uint8"
|
1313
|
+
}
|
1314
|
+
],
|
1315
|
+
"name": "hasLifecycle",
|
1316
|
+
"outputs": [
|
1317
|
+
{
|
1318
|
+
"internalType": "bool",
|
1319
|
+
"name": "",
|
1320
|
+
"type": "bool"
|
1321
|
+
}
|
1322
|
+
],
|
1323
|
+
"stateMutability": "view",
|
1324
|
+
"type": "function"
|
1325
|
+
},
|
1326
|
+
{
|
1327
|
+
"inputs": [
|
1328
|
+
{
|
1329
|
+
"internalType": "NftId",
|
1330
|
+
"name": "targetNftId",
|
1331
|
+
"type": "uint96"
|
1332
|
+
},
|
1333
|
+
{
|
1334
|
+
"internalType": "Amount",
|
1335
|
+
"name": "dipAmount",
|
1336
|
+
"type": "uint96"
|
1337
|
+
}
|
1338
|
+
],
|
1339
|
+
"name": "increaseReserves",
|
1340
|
+
"outputs": [
|
1341
|
+
{
|
1342
|
+
"internalType": "Amount",
|
1343
|
+
"name": "newReserveBalance",
|
1344
|
+
"type": "uint96"
|
1345
|
+
}
|
1346
|
+
],
|
1347
|
+
"stateMutability": "nonpayable",
|
1348
|
+
"type": "function"
|
1349
|
+
},
|
1350
|
+
{
|
1351
|
+
"inputs": [
|
1352
|
+
{
|
1353
|
+
"internalType": "NftId",
|
1354
|
+
"name": "nftId",
|
1355
|
+
"type": "uint96"
|
1356
|
+
},
|
1357
|
+
{
|
1358
|
+
"internalType": "NftId",
|
1359
|
+
"name": "targetNftId",
|
1360
|
+
"type": "uint96"
|
1361
|
+
},
|
1362
|
+
{
|
1363
|
+
"internalType": "Amount",
|
1364
|
+
"name": "amount",
|
1365
|
+
"type": "uint96"
|
1366
|
+
}
|
1367
|
+
],
|
1368
|
+
"name": "increaseStake",
|
1369
|
+
"outputs": [],
|
1370
|
+
"stateMutability": "nonpayable",
|
1371
|
+
"type": "function"
|
1372
|
+
},
|
1373
|
+
{
|
1374
|
+
"inputs": [
|
1375
|
+
{
|
1376
|
+
"internalType": "NftId",
|
1377
|
+
"name": "targetNftId",
|
1378
|
+
"type": "uint96"
|
1379
|
+
},
|
1380
|
+
{
|
1381
|
+
"internalType": "UFixed",
|
1382
|
+
"name": "stakingRate",
|
1383
|
+
"type": "uint256"
|
1384
|
+
},
|
1385
|
+
{
|
1386
|
+
"internalType": "address",
|
1387
|
+
"name": "token",
|
1388
|
+
"type": "address"
|
1389
|
+
},
|
1390
|
+
{
|
1391
|
+
"internalType": "Amount",
|
1392
|
+
"name": "amount",
|
1393
|
+
"type": "uint96"
|
1394
|
+
}
|
1395
|
+
],
|
1396
|
+
"name": "increaseTotalValueLocked",
|
1397
|
+
"outputs": [
|
1398
|
+
{
|
1399
|
+
"internalType": "Amount",
|
1400
|
+
"name": "newBalance",
|
1401
|
+
"type": "uint96"
|
1402
|
+
}
|
1403
|
+
],
|
1404
|
+
"stateMutability": "nonpayable",
|
1405
|
+
"type": "function"
|
1406
|
+
},
|
1407
|
+
{
|
1408
|
+
"inputs": [],
|
1409
|
+
"name": "initializeLifecycle",
|
1410
|
+
"outputs": [],
|
1411
|
+
"stateMutability": "nonpayable",
|
1412
|
+
"type": "function"
|
1413
|
+
},
|
1414
|
+
{
|
1415
|
+
"inputs": [],
|
1416
|
+
"name": "isConsumingScheduledOp",
|
1417
|
+
"outputs": [
|
1418
|
+
{
|
1419
|
+
"internalType": "bytes4",
|
1420
|
+
"name": "",
|
1421
|
+
"type": "bytes4"
|
1422
|
+
}
|
1423
|
+
],
|
1424
|
+
"stateMutability": "view",
|
1425
|
+
"type": "function"
|
1426
|
+
},
|
1427
|
+
{
|
1428
|
+
"inputs": [
|
1429
|
+
{
|
1430
|
+
"internalType": "ObjectType",
|
1431
|
+
"name": "objectType",
|
1432
|
+
"type": "uint8"
|
1433
|
+
},
|
1434
|
+
{
|
1435
|
+
"internalType": "StateId",
|
1436
|
+
"name": "fromId",
|
1437
|
+
"type": "uint8"
|
1438
|
+
},
|
1439
|
+
{
|
1440
|
+
"internalType": "StateId",
|
1441
|
+
"name": "toId",
|
1442
|
+
"type": "uint8"
|
1443
|
+
}
|
1444
|
+
],
|
1445
|
+
"name": "isValidTransition",
|
1446
|
+
"outputs": [
|
1447
|
+
{
|
1448
|
+
"internalType": "bool",
|
1449
|
+
"name": "",
|
1450
|
+
"type": "bool"
|
1451
|
+
}
|
1452
|
+
],
|
1453
|
+
"stateMutability": "view",
|
1454
|
+
"type": "function"
|
1455
|
+
},
|
1456
|
+
{
|
1457
|
+
"inputs": [
|
1458
|
+
{
|
1459
|
+
"internalType": "NftId",
|
1460
|
+
"name": "nftId",
|
1461
|
+
"type": "uint96"
|
1462
|
+
},
|
1463
|
+
{
|
1464
|
+
"internalType": "NftId",
|
1465
|
+
"name": "targetNftId",
|
1466
|
+
"type": "uint96"
|
1467
|
+
},
|
1468
|
+
{
|
1469
|
+
"internalType": "Amount",
|
1470
|
+
"name": "rewardIncrementAmount",
|
1471
|
+
"type": "uint96"
|
1472
|
+
}
|
1473
|
+
],
|
1474
|
+
"name": "restakeRewards",
|
1475
|
+
"outputs": [],
|
1476
|
+
"stateMutability": "nonpayable",
|
1477
|
+
"type": "function"
|
1478
|
+
},
|
1479
|
+
{
|
1480
|
+
"inputs": [
|
1481
|
+
{
|
1482
|
+
"internalType": "address",
|
1483
|
+
"name": "newAuthority",
|
1484
|
+
"type": "address"
|
1485
|
+
}
|
1486
|
+
],
|
1487
|
+
"name": "setAuthority",
|
1488
|
+
"outputs": [],
|
1489
|
+
"stateMutability": "nonpayable",
|
1490
|
+
"type": "function"
|
1491
|
+
},
|
1492
|
+
{
|
1493
|
+
"inputs": [
|
1494
|
+
{
|
1495
|
+
"internalType": "uint256",
|
1496
|
+
"name": "chainId",
|
1497
|
+
"type": "uint256"
|
1498
|
+
},
|
1499
|
+
{
|
1500
|
+
"internalType": "address",
|
1501
|
+
"name": "token",
|
1502
|
+
"type": "address"
|
1503
|
+
},
|
1504
|
+
{
|
1505
|
+
"internalType": "UFixed",
|
1506
|
+
"name": "stakingRate",
|
1507
|
+
"type": "uint256"
|
1508
|
+
}
|
1509
|
+
],
|
1510
|
+
"name": "setStakingRate",
|
1511
|
+
"outputs": [],
|
1512
|
+
"stateMutability": "nonpayable",
|
1513
|
+
"type": "function"
|
1514
|
+
},
|
1515
|
+
{
|
1516
|
+
"inputs": [
|
1517
|
+
{
|
1518
|
+
"internalType": "ObjectType",
|
1519
|
+
"name": "objectType",
|
1520
|
+
"type": "uint8"
|
1521
|
+
},
|
1522
|
+
{
|
1523
|
+
"internalType": "KeyId",
|
1524
|
+
"name": "id",
|
1525
|
+
"type": "bytes31"
|
1526
|
+
}
|
1527
|
+
],
|
1528
|
+
"name": "toKey32",
|
1529
|
+
"outputs": [
|
1530
|
+
{
|
1531
|
+
"internalType": "Key32",
|
1532
|
+
"name": "",
|
1533
|
+
"type": "bytes32"
|
1534
|
+
}
|
1535
|
+
],
|
1536
|
+
"stateMutability": "pure",
|
1537
|
+
"type": "function"
|
1538
|
+
},
|
1539
|
+
{
|
1540
|
+
"inputs": [
|
1541
|
+
{
|
1542
|
+
"internalType": "NftId",
|
1543
|
+
"name": "nftId",
|
1544
|
+
"type": "uint96"
|
1545
|
+
},
|
1546
|
+
{
|
1547
|
+
"internalType": "NftId",
|
1548
|
+
"name": "targetNftId",
|
1549
|
+
"type": "uint96"
|
1550
|
+
},
|
1551
|
+
{
|
1552
|
+
"internalType": "Amount",
|
1553
|
+
"name": "maxUnstakeAmount",
|
1554
|
+
"type": "uint96"
|
1555
|
+
},
|
1556
|
+
{
|
1557
|
+
"internalType": "Amount",
|
1558
|
+
"name": "maxClaimAmount",
|
1559
|
+
"type": "uint96"
|
1560
|
+
}
|
1561
|
+
],
|
1562
|
+
"name": "unstakeUpTo",
|
1563
|
+
"outputs": [
|
1564
|
+
{
|
1565
|
+
"internalType": "Amount",
|
1566
|
+
"name": "unstakedAmount",
|
1567
|
+
"type": "uint96"
|
1568
|
+
},
|
1569
|
+
{
|
1570
|
+
"internalType": "Amount",
|
1571
|
+
"name": "claimedAmount",
|
1572
|
+
"type": "uint96"
|
1573
|
+
}
|
1574
|
+
],
|
1575
|
+
"stateMutability": "nonpayable",
|
1576
|
+
"type": "function"
|
1577
|
+
},
|
1578
|
+
{
|
1579
|
+
"inputs": [
|
1580
|
+
{
|
1581
|
+
"internalType": "NftId",
|
1582
|
+
"name": "stakeNftId",
|
1583
|
+
"type": "uint96"
|
1584
|
+
},
|
1585
|
+
{
|
1586
|
+
"components": [
|
1587
|
+
{
|
1588
|
+
"internalType": "Timestamp",
|
1589
|
+
"name": "lockedUntil",
|
1590
|
+
"type": "uint40"
|
1591
|
+
}
|
1592
|
+
],
|
1593
|
+
"internalType": "struct IStaking.StakeInfo",
|
1594
|
+
"name": "stakeInfo",
|
1595
|
+
"type": "tuple"
|
1596
|
+
}
|
1597
|
+
],
|
1598
|
+
"name": "update",
|
1599
|
+
"outputs": [],
|
1600
|
+
"stateMutability": "nonpayable",
|
1601
|
+
"type": "function"
|
1602
|
+
},
|
1603
|
+
{
|
1604
|
+
"inputs": [
|
1605
|
+
{
|
1606
|
+
"internalType": "NftId",
|
1607
|
+
"name": "nftId",
|
1608
|
+
"type": "uint96"
|
1609
|
+
},
|
1610
|
+
{
|
1611
|
+
"internalType": "NftId",
|
1612
|
+
"name": "targetNftId",
|
1613
|
+
"type": "uint96"
|
1614
|
+
},
|
1615
|
+
{
|
1616
|
+
"internalType": "Amount",
|
1617
|
+
"name": "rewardIncrementAmount",
|
1618
|
+
"type": "uint96"
|
1619
|
+
}
|
1620
|
+
],
|
1621
|
+
"name": "updateRewards",
|
1622
|
+
"outputs": [],
|
1623
|
+
"stateMutability": "nonpayable",
|
1624
|
+
"type": "function"
|
1625
|
+
},
|
1626
|
+
{
|
1627
|
+
"inputs": [
|
1628
|
+
{
|
1629
|
+
"internalType": "NftId",
|
1630
|
+
"name": "targetNftId",
|
1631
|
+
"type": "uint96"
|
1632
|
+
},
|
1633
|
+
{
|
1634
|
+
"components": [
|
1635
|
+
{
|
1636
|
+
"internalType": "ObjectType",
|
1637
|
+
"name": "objectType",
|
1638
|
+
"type": "uint8"
|
1639
|
+
},
|
1640
|
+
{
|
1641
|
+
"internalType": "uint256",
|
1642
|
+
"name": "chainId",
|
1643
|
+
"type": "uint256"
|
1644
|
+
},
|
1645
|
+
{
|
1646
|
+
"internalType": "Seconds",
|
1647
|
+
"name": "lockingPeriod",
|
1648
|
+
"type": "uint40"
|
1649
|
+
},
|
1650
|
+
{
|
1651
|
+
"internalType": "UFixed",
|
1652
|
+
"name": "rewardRate",
|
1653
|
+
"type": "uint256"
|
1654
|
+
}
|
1655
|
+
],
|
1656
|
+
"internalType": "struct IStaking.TargetInfo",
|
1657
|
+
"name": "targetInfo",
|
1658
|
+
"type": "tuple"
|
1659
|
+
}
|
1660
|
+
],
|
1661
|
+
"name": "updateTarget",
|
1662
|
+
"outputs": [],
|
1663
|
+
"stateMutability": "nonpayable",
|
1664
|
+
"type": "function"
|
1665
|
+
}
|
1666
|
+
],
|
1667
|
+
"bytecode": "0x60806040523480156200001157600080fd5b50604051620051653803806200516583398101604081905262000034916200023d565b3362000040816200013e565b50600480546001600160a01b0319166001600160a01b0384169081178255604080516307158bc560e51b8152905160009363e2b178a0928082019260209290918290030181865afa1580156200009a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000c091906200027c565b9050620000cd8162000192565b600680546001600160a01b0319166001600160a01b038416179055604051620000f69062000216565b604051809103906000f08015801562000113573d6000803e3d6000fd5b50600580546001600160a01b0319166001600160a01b039290921691909117905550620002a3915050565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60005433906001600160a01b03168114620001cf5760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b60000362000207576040516361798f2f60e11b81526001600160a01b0383166004820152602401620001c6565b62000212826200013e565b5050565b61077b80620049ea83390190565b6001600160a01b03811681146200023a57600080fd5b50565b600080604083850312156200025157600080fd5b82516200025e8162000224565b6020840151909250620002718162000224565b809150509250929050565b6000602082840312156200028f57600080fd5b81516200029c8162000224565b9392505050565b61473780620002b36000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c80637b21556111610146578063bf1db3f9116100c3578063e9e96c7011610087578063e9e96c7014610786578063eb98e8a014610799578063f48016ce146107cc578063fb145432146107df578063fb39549c1461080b578063ff86054d1461081e57600080fd5b8063bf1db3f9146106dd578063bf7e214f146106f0578063d7537c3714610701578063dfb7e33714610714578063e067350f1461075a57600080fd5b80639a7263641161010a5780639a72636414610572578063a5961b4c146105a6578063a898967514610633578063b04fa50614610646578063beba1120146106b157600080fd5b80637b21556114610468578063828227de146104ac5780638eaa6ac0146104f05780638fb360371461051057806391a2059f1461053157600080fd5b80634a2101d1116101d45780636291423a116101985780636291423a146103e057806363fe327a14610405578063717f1b981461041657806377f91851146104425780637a9e5e4b1461045557600080fd5b80634a2101d1146103745780634b51da0c146103875780634f9c1c091461039a57806354f6127f146103ad57806362841be2146103cd57600080fd5b806330f441991161021b57806330f44199146103105780633861317f1461032357806338a699a4146103365780633fbdfe3214610359578063468bce061461036c57600080fd5b806309648a9d146102585780630d35818114610297578063136cfef7146102bd5780631807a488146102e85780632df8be9b146102fd575b600080fd5b610280610266366004613f60565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b6102806102a5366004613f8b565b60ff9081166000908152600160205260409020541690565b6102d06102cb366004613fbd565b610899565b6040516001600160601b03909116815260200161028e565b6102fb6102f636600461401f565b610978565b005b6102fb61030b36600461401f565b610a6a565b6102fb61031e3660046140b9565b610c60565b6102fb6103313660046140b9565b610e03565b610349610344366004613f60565b610f09565b604051901515815260200161028e565b6102d06103673660046140b9565b610f9a565b6102fb61111c565b6102fb6103823660046140b9565b611156565b6102fb610395366004614104565b61122d565b6103496103a8366004614179565b6112de565b6103c06103bb366004613f60565b611379565b60405161028e91906141dc565b6102fb6103db366004614104565b61141e565b6006546001600160a01b03165b6040516001600160a01b03909116815260200161028e565b6005546001600160a01b03166103ed565b6102d0610424366004614179565b6001600160601b039081166000908152600960205260409020541690565b6102d0610450366004614206565b6114d8565b6102fb610463366004614257565b611737565b61049e610476366004614272565b60009182526007602090815260408084206001600160a01b0393909316845291905290205490565b60405190815260200161028e565b6104db6104ba366004614179565b6001600160601b03166000908152600c602052604090205463ffffffff1690565b60405163ffffffff909116815260200161028e565b6105036104fe366004613f60565b6117ad565b60405161028e919061429e565b6105186118d2565b6040516001600160e01b0319909116815260200161028e565b6102d061053f366004614305565b6001600160601b039182166000908152600d602090815260408083206001600160a01b0394909416835292905220541690565b6102fb610580366004614331565b60009283526007602090815260408085206001600160a01b039094168552929052912055565b6106266105b4366004613f60565b604080516080808201835260008083526020808401829052838501829052606093840182905294815260038552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b60405161028e9190614366565b6102fb6106413660046143a7565b6118f8565b6106a1610654366004614179565b6001600160601b039081166000908152600860209081526040808320546009835281842054600a845282852054600c90945291909320549284169490841693919091169163ffffffff1690565b60405161028e94939291906143e7565b6102d06106bf366004614179565b6001600160601b039081166000908152600f60205260409020541690565b6103496106eb366004613f8b565b6119ee565b6000546001600160a01b03166103ed565b6102d061070f366004613fbd565b611a3b565b610744610722366004614179565b6001600160601b03166000908152600b602052604090205464ffffffffff1690565b60405164ffffffffff909116815260200161028e565b6102d0610768366004614179565b6001600160601b039081166000908152600a60205260409020541690565b6103496107943660046143a7565b611ab6565b6107ac6107a7366004614416565b611aea565b604080516001600160601b0393841681529290911660208301520161028e565b61049e6107da366004614467565b611d91565b6102d06107ed366004614179565b6001600160601b039081166000908152600860205260409020541690565b6102d0610819366004614206565b611e14565b61086c61082c366004614179565b6001600160601b039081166000908152600860209081526040808320546009835281842054600b9093529220549183169392169164ffffffffff90911690565b604080516001600160601b03948516815293909216602084015264ffffffffff169082015260600161028e565b6001600160601b038083166000908152600a60205260408120549091166108c08382612139565b156108fe576040516301a4b29960e11b81526001600160601b0380861660048301528085166024830152821660448201526064015b60405180910390fd5b6001600160601b038085166000908152600a60205260409020546109239116846121c0565b915060006109318584612248565b90507fd3383e52279373b5cfb83f1b6d4bd83e415313626f418a63a24251420d4b96df8585858460405161096894939291906143e7565b60405180910390a1505092915050565b610a6673__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156109ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a119190614495565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b604051602081830303815290604052610a6160ff90565b6123ef565b5050565b610b5073__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b039190614495565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b604051602081830303815290604052612564565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbd91906144ae565b6001600160601b0383166000908152601060205260409020805463ffffffff191663ffffffff92909216919091179055610bf682612918565b6005546040516346f0e8a760e11b81526001600160601b03841660048201526001600160a01b0390911690638de1d14e90602401600060405180830381600087803b158015610c4457600080fd5b505af1158015610c58573d6000803e3d6000fd5b505050505050565b6000610c6b84612c97565b6001600160601b0380861660009081526008602090815260408083205460099092529091205492935081169116610d2186610caf610ca98585612d5c565b87612d5c565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610cf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1c91906144d4565b612da7565b6001600160601b03808616600090815260086020526040902054610d7a918791610d5091610ca9911685612d5c565b6001600160601b03808916600090815260096020526040902054610d759116856121c0565b612f46565b6001600160601b0386811660008181526008602090815260409182902054825193845286851691840191909152848416918301919091528683166060830152909116608082015263ffffffff841660a08201527ff3a6a30356c886f04fc20380e987b6e55a1e83a7926e1a21ee6001faced599c99060c0015b60405180910390a1505050505050565b6000610e0e84612c97565b6001600160601b03808616600090815260086020526040902054919250610e5c918691610e3c911685612d5c565b6001600160601b0380881660009081526009602052604090205416612da7565b6001600160601b03808416600090815260086020526040902054610ea7918591610e87911685612d5c565b6001600160601b0380871660009081526009602052604090205416612f46565b6001600160601b03808516600090815260086020526040908190205490517fa206257df4168139cff2e8dea9c50f2226429e81d904d5ee2b14e4f4656f30f592610efb9288928792919091169086906143e7565b60405180910390a150505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610f70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9491906144f1565b92915050565b600080610fa685612c97565b6001600160601b0386811660009081526009602052604090819020549051637931c81160e01b815286831660048201529116602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af415801561101c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104091906144d4565b6001600160601b0380871660009081526008602090815260408083205460099092529091205492945061107e92889291821691610d1c9116866121c0565b6001600160601b038085166000908152600860209081526040808320546009909252909120546110b8928792811691610d759116866121c0565b6001600160601b03808616600090815260096020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef9261110c9289928792919091169086906143e7565b60405180910390a1509392505050565b611124612fd9565b61112c613027565b61113461314a565b61113c61323e565b611144613375565b61114c6134a1565b61115461355d565b565b600061116184612c97565b6001600160601b0380861660009081526008602090815260408083205460099092529091205492935061119f92879291821691610d1c911686612d5c565b6001600160601b038084166000908152600860209081526040808320546009909252909120546111d9928692811691610d75911686612d5c565b6001600160601b03808516600090815260096020526040908190205490517f9824c1941460e3f3dca0007309b88a95f4fb73bd9628ee7ad0a528b100983c7992610efb9288928792919091169086906143e7565b610a6673__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156112a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c69190614495565b60408051845164ffffffffff16602082015201610a4a565b6000610f9473__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015611355573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103449190614495565b600081815260036020526040902060010180546060919061139990614513565b80601f01602080910402602001604051908101604052809291908181526020018280546113c590614513565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b50505050509050919050565b6114cf73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015611493573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b79190614495565b60408051845164ffffffffff16602082015201610b3c565b610a6682613661565b6000806000806114e88887613985565b9250925092506114f88286612d5c565b604051632c34efe560e11b81526001600160601b03821660048201526024810189905290945060009073__$3bac17678db7ae928afa209f2f44deec9c$__90635869dfca90604401602060405180830381865af415801561155d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158191906144d4565b6001600160601b038a81166000818152600d602090815260408083206001600160a01b038e1680855290835281842080546001600160601b03199081168e891617909155858552600e84528285209185529083528184208054909116878716179055928252600f90522054919250611604916115fe9116846121c0565b82612d5c565b600f60008b6001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ba91906144ae565b6001600160601b038a1660009081526010602052604090819020805463ffffffff191663ffffffff9390931692909217909155517f4bd4ee2e64e523eeed623045709eb9e7828b3b191c978feb362e5b600c7d4dd990611723908b908a908a908a908a9061454d565b60405180910390a150505050949350505050565b60005433906001600160a01b0316811461176e5760405162d1953b60e31b81526001600160a01b03821660048201526024016108f5565b816001600160a01b03163b6000036117a4576040516361798f2f60e11b81526001600160a01b03831660048201526024016108f5565b610a6682613a99565b6040805160c081018252600091810182815260608083018490526080830184905260a083019390935281526020810191909152600082815260036020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161184990614513565b80601f016020809104026020016040519081016040528092919081815260200182805461187590614513565b80156118c25780601f10611897576101008083540402835291602001916118c2565b820191906000526020600020905b8154815290600101906020018083116118a557829003601f168201915b5050505050815250509050919050565b60008054600160a01b900460ff166118ea5750600090565b638fb3603760e01b5b905090565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561195d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198191906144f1565b1561198b57505050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054166119e957604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016108f5565b505050565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610f53565b6001600160601b038083166000908152600a60205260408120549091611a62911683612d5c565b90506000611a708483612248565b90507f15ce01bb869f4f5440b921c09a1c73e043269a1e29f44d11a7a899ed51fa67b884848484604051611aa794939291906143e7565b60405180910390a15092915050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054165b9392505050565b6000806000611af887612c97565b6001600160601b0388811660009081526008602052604090819020549051637931c81160e01b815288831660048201529116602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af4158015611b6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9291906144d4565b6001600160601b0388811660009081526009602052604090819020549051637931c81160e01b815287831660048201529116602482015290935073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af4158015611c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2c91906144d4565b6001600160601b03808916600090815260086020526040902054919350611c7f918991611c5a9116866121c0565b6001600160601b03808b16600090815260096020526040902054610d1c9116866121c0565b6001600160601b03808716600090815260086020526040902054611ccf918891611caa9116866121c0565b6001600160601b03808a16600090815260096020526040902054610d759116866121c0565b6001600160601b03808816600090815260086020526040908190205490517f4d67c2532a3443dbc1612538256c1fb6566afcd9729bf99254b26aef3b953cdd92611d23928b928892919091169086906143e7565b60405180910390a16001600160601b03808816600090815260096020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef92611d7f928b928792919091169086906143e7565b60405180910390a15094509492505050565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce90604401602060405180830381865af4158015611df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae39190614495565b600080600080611e248887613985565b925092509250611e3482866121c0565b6040516355205f0f60e01b81526001600160601b038216600482015290945060009073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd9690611ec9908b9084906355205f0f90602401602060405180830381865af4158015611ea0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec49190614495565b613aed565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3e9190614495565b6040518263ffffffff1660e01b8152600401611f5c91815260200190565b602060405180830381865af4158015611f79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9d91906144d4565b6001600160601b038a81166000818152600d602090815260408083206001600160a01b038e1680855290835281842080546001600160601b03199081168e891617909155858552600e84528285209185529083528184208054909116878716179055928252600f9052205491925061201a916115fe9116846121c0565b600f60008b6001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156120ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d091906144ae565b6001600160601b038a1660009081526010602052604090819020805463ffffffff191663ffffffff9390931692909217909155517ff9be485b3e2a5d1dc6dadfab8a9962c32cc55ac95a026b980452f8b13872378990611723908b908a908a908a908a9061454d565b604051632601631360e21b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af415801561219c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae391906144f1565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa22906044015b602060405180830381865af4158015612224573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae391906144d4565b6001600160601b0382166000908152600c602052604080822054905163010bd26b60e61b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af41580156122b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122db91906144f1565b15612304576040516364692acf60e01b81526001600160601b03841660048201526024016108f5565b506001600160601b038281166000908152600c6020908152604080832054600a83529281902080546001600160601b03191694861694909417909355825163e8b7afe360e01b8152925163ffffffff9092169273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9263e8b7afe3926004808401939192918290030181865af4158015612395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b991906144ae565b6001600160601b03939093166000908152600c60205260409020805463ffffffff191663ffffffff909416939093179092555090565b60006123fb8483613b02565b600085815260036020526040902090915060010161241984826145d4565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801561248c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124b09190614694565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612500573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252491906146b1565b6040805160ff938416815260ff1990921660208301529185169181019190915233606082015232608082015263ffffffff831660a082015260c001610efb565b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156125b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125db9190614694565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015612630573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061265491906144f1565b15612677576040516307014a8d60e51b815260ff821660048201526024016108f5565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af41580156126e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270491906144f1565b1561272e57604051633f92eac960e21b81526004810185905260ff831660248201526044016108f5565b6000612738613e07565b90506000612745846119ee565b612750576004612766565b60ff808516600090815260016020526040902054165b835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b9190910217845560008781526003602052604090209091506001016127d986826145d4565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801561284c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128709190614694565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156128c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128e491906146b1565b6040805160ff938416815260ff1990921660208301529184169181019190915233606082015232608082015260a001610df3565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af4158015612988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ac91906144f1565b156129d5576040516366d785a360e11b81526001600160601b03821660048201526024016108f5565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4291906144d4565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af891906144d4565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612b8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bae91906144d4565b600a6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c6491906144ae565b6001600160601b03919091166000908152600c60205260409020805463ffffffff191663ffffffff909216919091179055565b6001600160601b0381166000908152600c60205260409081902054905163010bd26b60e61b815263ffffffff909116600482018190529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af4158015612d0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2e91906144f1565b15612d5757604051631f7e16df60e01b81526001600160601b03831660048201526024016108f5565b919050565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401612207565b6001600160601b03838116600090815260086020908152604080832080546001600160601b031990811688871617909155600983529281902080549093169385169390931790915581516356db0c1960e11b8152915173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb618329260048083019391928290030181865af4158015612e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5e91906146ce565b600b6000856001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f1091906144ae565b6001600160601b03939093166000908152600c60205260409020805463ffffffff191663ffffffff909416939093179092555050565b6001600160601b03838116600090815260086020908152604080832080546001600160601b0319908116888716179091556009835292819020805490931693851693909317909155815163e8b7afe360e01b8152915173__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9263e8b7afe39260048083019391928290030181865af4158015612eec573d6000803e3d6000fd5b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661115457604051631afcd79f60e31b815260040160405180910390fd5b7f81c2bf9f7c6e8ac9bd8bcd9d323e94b867d2f5054aff8759d884773c680ec1ec8054600460ff19918216179091557f3bea789071f7022d2e499e6822d37d1c257788cb0571ef6b1f16966b885724a58054821660019081179091557f8a8216ae346f5d8074fa9b37ffd09a4992f4191e502fa1d51d941f5a64f5a25e80548316821790557fe785a33bc32d0e2a5e4b716d847330e9d735b07deed8b2509893b88e2b93b6ab8054909216811790915560dc600090815260026020527f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef090606e5b60ff1660ff168152602001908152602001600020600061312660c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c128054600460ff1991821681179092557fd9c9c94fc8f62fb3e9020ec6692ef87cedf81d23b1b13c613db81032a386b9e380548216600190811790915560009283527f0c5b5dcb854d48f82af9a0c0be9f07e9b6b87611330f3e1332370633114b39986020527f4ab3dc03b20370f9434f355300c236010beb3b3b136c6e0dfa03035ced7d908a805490921681179091559060029060645b60ff1660ff1681526020019081526020016000206000613220606e90565b60ff1660ff168152602001908152602001600020600061312660d290565b7f7415b658af57d740454b01d91722f71a360db8fdd5ec2a068a92c37e2bc3b1d68054600a60ff19918216179091557fab79e80fd729060036ec87a13f874ebb2dc8097341e81335d5f018d31c2230ea8054821660019081179091557f8af8421b7334508d165e28c916d150439f145e2d4404f8d042384995e44da22c80548316821790557f704650e2c2b388c7f42b779fec98a489390951f3660e3a7b2934fe2ad93c296d80548316821790557ffb362930faacff64ed42cd22de657ab2009d6be858da2a0a71ae171c109762b380548316821790557fb19ff17ecc97d518e411a190bae6e3e57c7fe5b7729a8001643e962878c90e948054909216811790915560d3600090815260026020527feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d906004613108565b7fb96e7c6ce00677da9e7edc0b5e71a26baf67854c9401b1cb6b18f18ab47e894f805460ff199081166032179091557fe0f799b18ed14704744a6a90b2e266143509ff6f419922f415e020d311a951678054821660019081179091557ff6d470c2fb98eaf5d9d596e96de7d0a691978f6d979b269ca92a53d557258c0480548316821790557ffa53d3f6917a453ff553a8f5724fe00b960b6bd175de8e9a6477d8b5a89f761680548316821790557f77835ececcc7e965708390fdc28b7c7141b063a8a849f3954f1d294d077301848054603c93168317905560009182527f3926cb2852d780b0b027970c63edfde054d1b6dcba3e6f9d5494b62c7dc3deaf602052907fc9e3618963d7dbe07b8b3573182ffa1de8d2f958f5f00fb5340bae64f230e5ef9060dc613126565b7f345f7c6c888721344af4147de0834159e0b302300ba13c4e7b6c0b60d8f2314e8054600460ff1991821681179092557f407059394974f4a6e984471ea08a5889d3198ae87d98fbababeea2ec39cee73480548216600190811790915560009283527f6a139e57a9d1f86bc8f0b3d2eb8e45b5b4df08813d7b8752b0f4de25d5e262a66020527fd57fdcc48f6392aa013894061d4db610915b31b9da04e85b3ea48b2024e3a6ae805490921681179091559060029060c8613202565b7f2cc30221e0553428287371236269b4e2f6f11f95f33fb976fdb79b586bb6c3428054600460ff1991821681179092557f72c28f6105a4b66926686556d216309d10fc1f05bca54e13a863485b986739668054821660019081179091557f502388fa7709de7faaaeec639b71fa97b87016a63c80b15cc438c8821369582a80548316821790557f3922b489d3bf40adc1aac6c21dc8ffedb23efe59369d3be0ba20b715fd49765d8054909216811790915560009182527fc0c96d13f150a4b457c3bd96e92c2a5ab695d3246c81b0c07a0503c31ecba472602052907f28cb432d97675e510e3b7bca559b3e9dbf9d7e0ae845f60e0c426f5dd5d2688e906048613126565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af41580156136d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136f591906144f1565b1561371e576040516366d785a360e11b81526001600160601b03821660048201526024016108f5565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613767573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061378b91906144d4565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561381d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061384191906144d4565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156138d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138f791906146ce565b600b6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c40573d6000803e3d6000fd5b6001600160601b03821660009081526010602052604080822054905163010bd26b60e61b815263ffffffff909116600482018190529190819073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af41580156139fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1e91906144f1565b15613a47576040516362540e0360e11b81526001600160601b03861660048201526024016108f5565b50506001600160601b039283166000818152600d602090815260408083206001600160a01b0390961680845295825280832054938352600e825280832095835294905292909220549093918316921690565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b6000611ae38383670de0b6b3a7640000613e76565b60405163037c8cb160e51b815260ff8216600482015260009073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015613b57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b7b91906144f1565b15613b9c5760405163093b89e160e11b8152600481018490526024016108f5565b50600082815260036020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015613c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c3991906144f1565b15613c5a5760405163566ebf7960e01b8152600481018690526024016108f5565b60ff80851614613dd9578154613c749060ff1682866118f8565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015613cf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d1c9190614694565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015613d6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d9091906146b1565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b613de1613e07565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613e52573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f391906144ae565b6000808060001985870985870292508281108382030391505080600003613eb057838281613ea657613ea66146eb565b0492505050611ae3565b808411613ef75760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b60448201526064016108f5565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b600060208284031215613f7257600080fd5b5035919050565b60ff81168114613f8857600080fd5b50565b600060208284031215613f9d57600080fd5b8135611ae381613f79565b6001600160601b0381168114613f8857600080fd5b60008060408385031215613fd057600080fd5b8235613fdb81613fa8565b91506020830135613feb81613fa8565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b64ffffffffff81168114613f8857600080fd5b60008082840360a081121561403357600080fd5b833561403e81613fa8565b92506080601f198201121561405257600080fd5b506040516080810181811067ffffffffffffffff8211171561407657614076613ff6565b604052602084013561408781613f79565b81526040840135602082015260608401356140a18161400c565b60408201526080939093013560608401525092909150565b6000806000606084860312156140ce57600080fd5b83356140d981613fa8565b925060208401356140e981613fa8565b915060408401356140f981613fa8565b809150509250925092565b600080828403604081121561411857600080fd5b833561412381613fa8565b92506020601f198201121561413757600080fd5b506040516020810181811067ffffffffffffffff8211171561415b5761415b613ff6565b604052602084013561416c8161400c565b8152919491935090915050565b60006020828403121561418b57600080fd5b8135611ae381613fa8565b6000815180845260005b818110156141bc576020818501810151868301820152016141a0565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611ae36020830184614196565b80356001600160a01b0381168114612d5757600080fd5b6000806000806080858703121561421c57600080fd5b843561422781613fa8565b93506020850135925061423c604086016141ef565b9150606085013561424c81613fa8565b939692955090935050565b60006020828403121561426957600080fd5b611ae3826141ef565b6000806040838503121561428557600080fd5b82359150614295602084016141ef565b90509250929050565b602081526142e360208201835160ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000602083015160a0808401526142fd60c0840182614196565b949350505050565b6000806040838503121561431857600080fd5b823561432381613fa8565b9150614295602084016141ef565b60008060006060848603121561434657600080fd5b83359250614356602085016141ef565b9150604084013590509250925092565b60808101610f94828460ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000806000606084860312156143bc57600080fd5b83356143c781613f79565b925060208401356143d781613f79565b915060408401356140f981613f79565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b6000806000806080858703121561442c57600080fd5b843561443781613fa8565b9350602085013561444781613fa8565b9250604085013561423c81613fa8565b60ff1981168114613f8857600080fd5b6000806040838503121561447a57600080fd5b823561448581613f79565b91506020830135613feb81614457565b6000602082840312156144a757600080fd5b5051919050565b6000602082840312156144c057600080fd5b815163ffffffff81168114611ae357600080fd5b6000602082840312156144e657600080fd5b8151611ae381613fa8565b60006020828403121561450357600080fd5b81518015158114611ae357600080fd5b600181811c9082168061452757607f821691505b60208210810361454757634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160601b0395861681526001600160a01b039490941660208501529184166040840152909216606082015263ffffffff909116608082015260a00190565b601f8211156119e957600081815260208120601f850160051c810160208610156145b55750805b601f850160051c820191505b81811015610c58578281556001016145c1565b815167ffffffffffffffff8111156145ee576145ee613ff6565b614602816145fc8454614513565b8461458e565b602080601f831160018114614637576000841561461f5750858301515b600019600386901b1c1916600185901b178555610c58565b600085815260208120601f198616915b8281101561466657888601518255948401946001909101908401614647565b50858210156146845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156146a657600080fd5b8151611ae381613f79565b6000602082840312156146c357600080fd5b8151611ae381614457565b6000602082840312156146e057600080fd5b8151611ae38161400c565b634e487b7160e01b600052601260045260246000fdfea2646970667358221220ab51c7212f92acf6d71745fe9a69e4b9ef1896b4c95e19f2a1a6850d1811755764736f6c63430008140033608060405234801561001057600080fd5b50600480546001600160a01b03191633179055610749806100326000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80638de1d14e116100665780638de1d14e14610113578063954a317214610126578063996f8d9114610139578063ddfe867f1461014f578063f2b297811461015757600080fd5b8063042f9da3146100985780634f9c1c09146100ad578063706e9ba9146100d5578063777d185714610100575b600080fd5b6100ab6100a6366004610645565b61016a565b005b6100c06100bb36600461067e565b610229565b60405190151581526020015b60405180910390f35b6100e86100e33660046106a2565b6102b6565b6040516001600160601b0390911681526020016100cc565b6100c061010e36600461067e565b610335565b6100ab61012136600461067e565b61037f565b6100ab610134366004610645565b6104a9565b610141610533565b6040519081526020016100cc565b6101416105b0565b6100e86101653660046106a2565b6105eb565b6004546001600160a01b031633146101b25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044015b60405180910390fd5b604051631461054360e31b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a18906044015b60006040518083038186803b15801561020d57600080fd5b505af4158015610221573d6000803e3d6000fd5b505050505050565b604051632bfdd6b960e01b81526000600482018190526001600160601b03831660248301529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b9906044015b602060405180830381865af415801561028c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106bb565b92915050565b60405163e797d89960e01b8152600060048201819052602482018390529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044015b602060405180830381865af4158015610311573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106dd565b604051632bfdd6b960e01b8152600260048201526001600160601b038216602482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b99060440161026f565b6004546001600160a01b031633146103c25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b604051631461054360e31b8152600060048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a189060440160006040518083038186803b15801561041c57600080fd5b505af4158015610430573d6000803e3d6000fd5b5050604051631461054360e31b8152600260048201526001600160601b038416602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__925063a3082a18915060440160006040518083038186803b15801561048e57600080fd5b505af41580156104a2573d6000803e3d6000fd5b5050505050565b6004546001600160a01b031633146104ec5760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b60405163539eabab60e11b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a73d5756906044016101f5565b604051638b6233dd60e01b81526002600482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd906024015b602060405180830381865af4158015610587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ab91906106fa565b905090565b604051638b6233dd60e01b81526000600482018190529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd9060240161056a565b60405163e797d89960e01b8152600260048201526024810182905260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044016102f4565b6001600160601b038116811461064257600080fd5b50565b6000806040838503121561065857600080fd5b82356106638161062d565b915060208301356106738161062d565b809150509250929050565b60006020828403121561069057600080fd5b813561069b8161062d565b9392505050565b6000602082840312156106b457600080fd5b5035919050565b6000602082840312156106cd57600080fd5b8151801515811461069b57600080fd5b6000602082840312156106ef57600080fd5b815161069b8161062d565b60006020828403121561070c57600080fd5b505191905056fea2646970667358221220515f19cbe9149dcaab70b1afb72a1a387a51381239a9b27c5ee07e30c46e601e64736f6c63430008140033",
|
1668
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102535760003560e01c80637b21556111610146578063bf1db3f9116100c3578063e9e96c7011610087578063e9e96c7014610786578063eb98e8a014610799578063f48016ce146107cc578063fb145432146107df578063fb39549c1461080b578063ff86054d1461081e57600080fd5b8063bf1db3f9146106dd578063bf7e214f146106f0578063d7537c3714610701578063dfb7e33714610714578063e067350f1461075a57600080fd5b80639a7263641161010a5780639a72636414610572578063a5961b4c146105a6578063a898967514610633578063b04fa50614610646578063beba1120146106b157600080fd5b80637b21556114610468578063828227de146104ac5780638eaa6ac0146104f05780638fb360371461051057806391a2059f1461053157600080fd5b80634a2101d1116101d45780636291423a116101985780636291423a146103e057806363fe327a14610405578063717f1b981461041657806377f91851146104425780637a9e5e4b1461045557600080fd5b80634a2101d1146103745780634b51da0c146103875780634f9c1c091461039a57806354f6127f146103ad57806362841be2146103cd57600080fd5b806330f441991161021b57806330f44199146103105780633861317f1461032357806338a699a4146103365780633fbdfe3214610359578063468bce061461036c57600080fd5b806309648a9d146102585780630d35818114610297578063136cfef7146102bd5780631807a488146102e85780632df8be9b146102fd575b600080fd5b610280610266366004613f60565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b6102806102a5366004613f8b565b60ff9081166000908152600160205260409020541690565b6102d06102cb366004613fbd565b610899565b6040516001600160601b03909116815260200161028e565b6102fb6102f636600461401f565b610978565b005b6102fb61030b36600461401f565b610a6a565b6102fb61031e3660046140b9565b610c60565b6102fb6103313660046140b9565b610e03565b610349610344366004613f60565b610f09565b604051901515815260200161028e565b6102d06103673660046140b9565b610f9a565b6102fb61111c565b6102fb6103823660046140b9565b611156565b6102fb610395366004614104565b61122d565b6103496103a8366004614179565b6112de565b6103c06103bb366004613f60565b611379565b60405161028e91906141dc565b6102fb6103db366004614104565b61141e565b6006546001600160a01b03165b6040516001600160a01b03909116815260200161028e565b6005546001600160a01b03166103ed565b6102d0610424366004614179565b6001600160601b039081166000908152600960205260409020541690565b6102d0610450366004614206565b6114d8565b6102fb610463366004614257565b611737565b61049e610476366004614272565b60009182526007602090815260408084206001600160a01b0393909316845291905290205490565b60405190815260200161028e565b6104db6104ba366004614179565b6001600160601b03166000908152600c602052604090205463ffffffff1690565b60405163ffffffff909116815260200161028e565b6105036104fe366004613f60565b6117ad565b60405161028e919061429e565b6105186118d2565b6040516001600160e01b0319909116815260200161028e565b6102d061053f366004614305565b6001600160601b039182166000908152600d602090815260408083206001600160a01b0394909416835292905220541690565b6102fb610580366004614331565b60009283526007602090815260408085206001600160a01b039094168552929052912055565b6106266105b4366004613f60565b604080516080808201835260008083526020808401829052838501829052606093840182905294815260038552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b60405161028e9190614366565b6102fb6106413660046143a7565b6118f8565b6106a1610654366004614179565b6001600160601b039081166000908152600860209081526040808320546009835281842054600a845282852054600c90945291909320549284169490841693919091169163ffffffff1690565b60405161028e94939291906143e7565b6102d06106bf366004614179565b6001600160601b039081166000908152600f60205260409020541690565b6103496106eb366004613f8b565b6119ee565b6000546001600160a01b03166103ed565b6102d061070f366004613fbd565b611a3b565b610744610722366004614179565b6001600160601b03166000908152600b602052604090205464ffffffffff1690565b60405164ffffffffff909116815260200161028e565b6102d0610768366004614179565b6001600160601b039081166000908152600a60205260409020541690565b6103496107943660046143a7565b611ab6565b6107ac6107a7366004614416565b611aea565b604080516001600160601b0393841681529290911660208301520161028e565b61049e6107da366004614467565b611d91565b6102d06107ed366004614179565b6001600160601b039081166000908152600860205260409020541690565b6102d0610819366004614206565b611e14565b61086c61082c366004614179565b6001600160601b039081166000908152600860209081526040808320546009835281842054600b9093529220549183169392169164ffffffffff90911690565b604080516001600160601b03948516815293909216602084015264ffffffffff169082015260600161028e565b6001600160601b038083166000908152600a60205260408120549091166108c08382612139565b156108fe576040516301a4b29960e11b81526001600160601b0380861660048301528085166024830152821660448201526064015b60405180910390fd5b6001600160601b038085166000908152600a60205260409020546109239116846121c0565b915060006109318584612248565b90507fd3383e52279373b5cfb83f1b6d4bd83e415313626f418a63a24251420d4b96df8585858460405161096894939291906143e7565b60405180910390a1505092915050565b610a6673__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156109ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a119190614495565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b604051602081830303815290604052610a6160ff90565b6123ef565b5050565b610b5073__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b039190614495565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b604051602081830303815290604052612564565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbd91906144ae565b6001600160601b0383166000908152601060205260409020805463ffffffff191663ffffffff92909216919091179055610bf682612918565b6005546040516346f0e8a760e11b81526001600160601b03841660048201526001600160a01b0390911690638de1d14e90602401600060405180830381600087803b158015610c4457600080fd5b505af1158015610c58573d6000803e3d6000fd5b505050505050565b6000610c6b84612c97565b6001600160601b0380861660009081526008602090815260408083205460099092529091205492935081169116610d2186610caf610ca98585612d5c565b87612d5c565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610cf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1c91906144d4565b612da7565b6001600160601b03808616600090815260086020526040902054610d7a918791610d5091610ca9911685612d5c565b6001600160601b03808916600090815260096020526040902054610d759116856121c0565b612f46565b6001600160601b0386811660008181526008602090815260409182902054825193845286851691840191909152848416918301919091528683166060830152909116608082015263ffffffff841660a08201527ff3a6a30356c886f04fc20380e987b6e55a1e83a7926e1a21ee6001faced599c99060c0015b60405180910390a1505050505050565b6000610e0e84612c97565b6001600160601b03808616600090815260086020526040902054919250610e5c918691610e3c911685612d5c565b6001600160601b0380881660009081526009602052604090205416612da7565b6001600160601b03808416600090815260086020526040902054610ea7918591610e87911685612d5c565b6001600160601b0380871660009081526009602052604090205416612f46565b6001600160601b03808516600090815260086020526040908190205490517fa206257df4168139cff2e8dea9c50f2226429e81d904d5ee2b14e4f4656f30f592610efb9288928792919091169086906143e7565b60405180910390a150505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610f70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9491906144f1565b92915050565b600080610fa685612c97565b6001600160601b0386811660009081526009602052604090819020549051637931c81160e01b815286831660048201529116602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af415801561101c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104091906144d4565b6001600160601b0380871660009081526008602090815260408083205460099092529091205492945061107e92889291821691610d1c9116866121c0565b6001600160601b038085166000908152600860209081526040808320546009909252909120546110b8928792811691610d759116866121c0565b6001600160601b03808616600090815260096020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef9261110c9289928792919091169086906143e7565b60405180910390a1509392505050565b611124612fd9565b61112c613027565b61113461314a565b61113c61323e565b611144613375565b61114c6134a1565b61115461355d565b565b600061116184612c97565b6001600160601b0380861660009081526008602090815260408083205460099092529091205492935061119f92879291821691610d1c911686612d5c565b6001600160601b038084166000908152600860209081526040808320546009909252909120546111d9928692811691610d75911686612d5c565b6001600160601b03808516600090815260096020526040908190205490517f9824c1941460e3f3dca0007309b88a95f4fb73bd9628ee7ad0a528b100983c7992610efb9288928792919091169086906143e7565b610a6673__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156112a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c69190614495565b60408051845164ffffffffff16602082015201610a4a565b6000610f9473__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015611355573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103449190614495565b600081815260036020526040902060010180546060919061139990614513565b80601f01602080910402602001604051908101604052809291908181526020018280546113c590614513565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b50505050509050919050565b6114cf73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015611493573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b79190614495565b60408051845164ffffffffff16602082015201610b3c565b610a6682613661565b6000806000806114e88887613985565b9250925092506114f88286612d5c565b604051632c34efe560e11b81526001600160601b03821660048201526024810189905290945060009073__$3bac17678db7ae928afa209f2f44deec9c$__90635869dfca90604401602060405180830381865af415801561155d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158191906144d4565b6001600160601b038a81166000818152600d602090815260408083206001600160a01b038e1680855290835281842080546001600160601b03199081168e891617909155858552600e84528285209185529083528184208054909116878716179055928252600f90522054919250611604916115fe9116846121c0565b82612d5c565b600f60008b6001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ba91906144ae565b6001600160601b038a1660009081526010602052604090819020805463ffffffff191663ffffffff9390931692909217909155517f4bd4ee2e64e523eeed623045709eb9e7828b3b191c978feb362e5b600c7d4dd990611723908b908a908a908a908a9061454d565b60405180910390a150505050949350505050565b60005433906001600160a01b0316811461176e5760405162d1953b60e31b81526001600160a01b03821660048201526024016108f5565b816001600160a01b03163b6000036117a4576040516361798f2f60e11b81526001600160a01b03831660048201526024016108f5565b610a6682613a99565b6040805160c081018252600091810182815260608083018490526080830184905260a083019390935281526020810191909152600082815260036020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161184990614513565b80601f016020809104026020016040519081016040528092919081815260200182805461187590614513565b80156118c25780601f10611897576101008083540402835291602001916118c2565b820191906000526020600020905b8154815290600101906020018083116118a557829003601f168201915b5050505050815250509050919050565b60008054600160a01b900460ff166118ea5750600090565b638fb3603760e01b5b905090565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561195d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198191906144f1565b1561198b57505050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054166119e957604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016108f5565b505050565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610f53565b6001600160601b038083166000908152600a60205260408120549091611a62911683612d5c565b90506000611a708483612248565b90507f15ce01bb869f4f5440b921c09a1c73e043269a1e29f44d11a7a899ed51fa67b884848484604051611aa794939291906143e7565b60405180910390a15092915050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054165b9392505050565b6000806000611af887612c97565b6001600160601b0388811660009081526008602052604090819020549051637931c81160e01b815288831660048201529116602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af4158015611b6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9291906144d4565b6001600160601b0388811660009081526009602052604090819020549051637931c81160e01b815287831660048201529116602482015290935073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af4158015611c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2c91906144d4565b6001600160601b03808916600090815260086020526040902054919350611c7f918991611c5a9116866121c0565b6001600160601b03808b16600090815260096020526040902054610d1c9116866121c0565b6001600160601b03808716600090815260086020526040902054611ccf918891611caa9116866121c0565b6001600160601b03808a16600090815260096020526040902054610d759116866121c0565b6001600160601b03808816600090815260086020526040908190205490517f4d67c2532a3443dbc1612538256c1fb6566afcd9729bf99254b26aef3b953cdd92611d23928b928892919091169086906143e7565b60405180910390a16001600160601b03808816600090815260096020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef92611d7f928b928792919091169086906143e7565b60405180910390a15094509492505050565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce90604401602060405180830381865af4158015611df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae39190614495565b600080600080611e248887613985565b925092509250611e3482866121c0565b6040516355205f0f60e01b81526001600160601b038216600482015290945060009073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd9690611ec9908b9084906355205f0f90602401602060405180830381865af4158015611ea0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec49190614495565b613aed565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3e9190614495565b6040518263ffffffff1660e01b8152600401611f5c91815260200190565b602060405180830381865af4158015611f79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9d91906144d4565b6001600160601b038a81166000818152600d602090815260408083206001600160a01b038e1680855290835281842080546001600160601b03199081168e891617909155858552600e84528285209185529083528184208054909116878716179055928252600f9052205491925061201a916115fe9116846121c0565b600f60008b6001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156120ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d091906144ae565b6001600160601b038a1660009081526010602052604090819020805463ffffffff191663ffffffff9390931692909217909155517ff9be485b3e2a5d1dc6dadfab8a9962c32cc55ac95a026b980452f8b13872378990611723908b908a908a908a908a9061454d565b604051632601631360e21b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af415801561219c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae391906144f1565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa22906044015b602060405180830381865af4158015612224573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae391906144d4565b6001600160601b0382166000908152600c602052604080822054905163010bd26b60e61b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af41580156122b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122db91906144f1565b15612304576040516364692acf60e01b81526001600160601b03841660048201526024016108f5565b506001600160601b038281166000908152600c6020908152604080832054600a83529281902080546001600160601b03191694861694909417909355825163e8b7afe360e01b8152925163ffffffff9092169273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9263e8b7afe3926004808401939192918290030181865af4158015612395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b991906144ae565b6001600160601b03939093166000908152600c60205260409020805463ffffffff191663ffffffff909416939093179092555090565b60006123fb8483613b02565b600085815260036020526040902090915060010161241984826145d4565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801561248c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124b09190614694565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612500573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252491906146b1565b6040805160ff938416815260ff1990921660208301529185169181019190915233606082015232608082015263ffffffff831660a082015260c001610efb565b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156125b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125db9190614694565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015612630573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061265491906144f1565b15612677576040516307014a8d60e51b815260ff821660048201526024016108f5565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af41580156126e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270491906144f1565b1561272e57604051633f92eac960e21b81526004810185905260ff831660248201526044016108f5565b6000612738613e07565b90506000612745846119ee565b612750576004612766565b60ff808516600090815260016020526040902054165b835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b9190910217845560008781526003602052604090209091506001016127d986826145d4565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801561284c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128709190614694565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156128c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128e491906146b1565b6040805160ff938416815260ff1990921660208301529184169181019190915233606082015232608082015260a001610df3565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af4158015612988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ac91906144f1565b156129d5576040516366d785a360e11b81526001600160601b03821660048201526024016108f5565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4291906144d4565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af891906144d4565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612b8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bae91906144d4565b600a6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c6491906144ae565b6001600160601b03919091166000908152600c60205260409020805463ffffffff191663ffffffff909216919091179055565b6001600160601b0381166000908152600c60205260409081902054905163010bd26b60e61b815263ffffffff909116600482018190529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af4158015612d0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2e91906144f1565b15612d5757604051631f7e16df60e01b81526001600160601b03831660048201526024016108f5565b919050565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401612207565b6001600160601b03838116600090815260086020908152604080832080546001600160601b031990811688871617909155600983529281902080549093169385169390931790915581516356db0c1960e11b8152915173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb618329260048083019391928290030181865af4158015612e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5e91906146ce565b600b6000856001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f1091906144ae565b6001600160601b03939093166000908152600c60205260409020805463ffffffff191663ffffffff909416939093179092555050565b6001600160601b03838116600090815260086020908152604080832080546001600160601b0319908116888716179091556009835292819020805490931693851693909317909155815163e8b7afe360e01b8152915173__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9263e8b7afe39260048083019391928290030181865af4158015612eec573d6000803e3d6000fd5b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661115457604051631afcd79f60e31b815260040160405180910390fd5b7f81c2bf9f7c6e8ac9bd8bcd9d323e94b867d2f5054aff8759d884773c680ec1ec8054600460ff19918216179091557f3bea789071f7022d2e499e6822d37d1c257788cb0571ef6b1f16966b885724a58054821660019081179091557f8a8216ae346f5d8074fa9b37ffd09a4992f4191e502fa1d51d941f5a64f5a25e80548316821790557fe785a33bc32d0e2a5e4b716d847330e9d735b07deed8b2509893b88e2b93b6ab8054909216811790915560dc600090815260026020527f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef090606e5b60ff1660ff168152602001908152602001600020600061312660c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c128054600460ff1991821681179092557fd9c9c94fc8f62fb3e9020ec6692ef87cedf81d23b1b13c613db81032a386b9e380548216600190811790915560009283527f0c5b5dcb854d48f82af9a0c0be9f07e9b6b87611330f3e1332370633114b39986020527f4ab3dc03b20370f9434f355300c236010beb3b3b136c6e0dfa03035ced7d908a805490921681179091559060029060645b60ff1660ff1681526020019081526020016000206000613220606e90565b60ff1660ff168152602001908152602001600020600061312660d290565b7f7415b658af57d740454b01d91722f71a360db8fdd5ec2a068a92c37e2bc3b1d68054600a60ff19918216179091557fab79e80fd729060036ec87a13f874ebb2dc8097341e81335d5f018d31c2230ea8054821660019081179091557f8af8421b7334508d165e28c916d150439f145e2d4404f8d042384995e44da22c80548316821790557f704650e2c2b388c7f42b779fec98a489390951f3660e3a7b2934fe2ad93c296d80548316821790557ffb362930faacff64ed42cd22de657ab2009d6be858da2a0a71ae171c109762b380548316821790557fb19ff17ecc97d518e411a190bae6e3e57c7fe5b7729a8001643e962878c90e948054909216811790915560d3600090815260026020527feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d906004613108565b7fb96e7c6ce00677da9e7edc0b5e71a26baf67854c9401b1cb6b18f18ab47e894f805460ff199081166032179091557fe0f799b18ed14704744a6a90b2e266143509ff6f419922f415e020d311a951678054821660019081179091557ff6d470c2fb98eaf5d9d596e96de7d0a691978f6d979b269ca92a53d557258c0480548316821790557ffa53d3f6917a453ff553a8f5724fe00b960b6bd175de8e9a6477d8b5a89f761680548316821790557f77835ececcc7e965708390fdc28b7c7141b063a8a849f3954f1d294d077301848054603c93168317905560009182527f3926cb2852d780b0b027970c63edfde054d1b6dcba3e6f9d5494b62c7dc3deaf602052907fc9e3618963d7dbe07b8b3573182ffa1de8d2f958f5f00fb5340bae64f230e5ef9060dc613126565b7f345f7c6c888721344af4147de0834159e0b302300ba13c4e7b6c0b60d8f2314e8054600460ff1991821681179092557f407059394974f4a6e984471ea08a5889d3198ae87d98fbababeea2ec39cee73480548216600190811790915560009283527f6a139e57a9d1f86bc8f0b3d2eb8e45b5b4df08813d7b8752b0f4de25d5e262a66020527fd57fdcc48f6392aa013894061d4db610915b31b9da04e85b3ea48b2024e3a6ae805490921681179091559060029060c8613202565b7f2cc30221e0553428287371236269b4e2f6f11f95f33fb976fdb79b586bb6c3428054600460ff1991821681179092557f72c28f6105a4b66926686556d216309d10fc1f05bca54e13a863485b986739668054821660019081179091557f502388fa7709de7faaaeec639b71fa97b87016a63c80b15cc438c8821369582a80548316821790557f3922b489d3bf40adc1aac6c21dc8ffedb23efe59369d3be0ba20b715fd49765d8054909216811790915560009182527fc0c96d13f150a4b457c3bd96e92c2a5ab695d3246c81b0c07a0503c31ecba472602052907f28cb432d97675e510e3b7bca559b3e9dbf9d7e0ae845f60e0c426f5dd5d2688e906048613126565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af41580156136d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136f591906144f1565b1561371e576040516366d785a360e11b81526001600160601b03821660048201526024016108f5565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613767573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061378b91906144d4565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561381d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061384191906144d4565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156138d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138f791906146ce565b600b6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c40573d6000803e3d6000fd5b6001600160601b03821660009081526010602052604080822054905163010bd26b60e61b815263ffffffff909116600482018190529190819073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af41580156139fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1e91906144f1565b15613a47576040516362540e0360e11b81526001600160601b03861660048201526024016108f5565b50506001600160601b039283166000818152600d602090815260408083206001600160a01b0390961680845295825280832054938352600e825280832095835294905292909220549093918316921690565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b6000611ae38383670de0b6b3a7640000613e76565b60405163037c8cb160e51b815260ff8216600482015260009073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015613b57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b7b91906144f1565b15613b9c5760405163093b89e160e11b8152600481018490526024016108f5565b50600082815260036020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015613c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c3991906144f1565b15613c5a5760405163566ebf7960e01b8152600481018690526024016108f5565b60ff80851614613dd9578154613c749060ff1682866118f8565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015613cf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d1c9190614694565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015613d6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d9091906146b1565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b613de1613e07565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613e52573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f391906144ae565b6000808060001985870985870292508281108382030391505080600003613eb057838281613ea657613ea66146eb565b0492505050611ae3565b808411613ef75760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b60448201526064016108f5565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b600060208284031215613f7257600080fd5b5035919050565b60ff81168114613f8857600080fd5b50565b600060208284031215613f9d57600080fd5b8135611ae381613f79565b6001600160601b0381168114613f8857600080fd5b60008060408385031215613fd057600080fd5b8235613fdb81613fa8565b91506020830135613feb81613fa8565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b64ffffffffff81168114613f8857600080fd5b60008082840360a081121561403357600080fd5b833561403e81613fa8565b92506080601f198201121561405257600080fd5b506040516080810181811067ffffffffffffffff8211171561407657614076613ff6565b604052602084013561408781613f79565b81526040840135602082015260608401356140a18161400c565b60408201526080939093013560608401525092909150565b6000806000606084860312156140ce57600080fd5b83356140d981613fa8565b925060208401356140e981613fa8565b915060408401356140f981613fa8565b809150509250925092565b600080828403604081121561411857600080fd5b833561412381613fa8565b92506020601f198201121561413757600080fd5b506040516020810181811067ffffffffffffffff8211171561415b5761415b613ff6565b604052602084013561416c8161400c565b8152919491935090915050565b60006020828403121561418b57600080fd5b8135611ae381613fa8565b6000815180845260005b818110156141bc576020818501810151868301820152016141a0565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611ae36020830184614196565b80356001600160a01b0381168114612d5757600080fd5b6000806000806080858703121561421c57600080fd5b843561422781613fa8565b93506020850135925061423c604086016141ef565b9150606085013561424c81613fa8565b939692955090935050565b60006020828403121561426957600080fd5b611ae3826141ef565b6000806040838503121561428557600080fd5b82359150614295602084016141ef565b90509250929050565b602081526142e360208201835160ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000602083015160a0808401526142fd60c0840182614196565b949350505050565b6000806040838503121561431857600080fd5b823561432381613fa8565b9150614295602084016141ef565b60008060006060848603121561434657600080fd5b83359250614356602085016141ef565b9150604084013590509250925092565b60808101610f94828460ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000806000606084860312156143bc57600080fd5b83356143c781613f79565b925060208401356143d781613f79565b915060408401356140f981613f79565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b6000806000806080858703121561442c57600080fd5b843561443781613fa8565b9350602085013561444781613fa8565b9250604085013561423c81613fa8565b60ff1981168114613f8857600080fd5b6000806040838503121561447a57600080fd5b823561448581613f79565b91506020830135613feb81614457565b6000602082840312156144a757600080fd5b5051919050565b6000602082840312156144c057600080fd5b815163ffffffff81168114611ae357600080fd5b6000602082840312156144e657600080fd5b8151611ae381613fa8565b60006020828403121561450357600080fd5b81518015158114611ae357600080fd5b600181811c9082168061452757607f821691505b60208210810361454757634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160601b0395861681526001600160a01b039490941660208501529184166040840152909216606082015263ffffffff909116608082015260a00190565b601f8211156119e957600081815260208120601f850160051c810160208610156145b55750805b601f850160051c820191505b81811015610c58578281556001016145c1565b815167ffffffffffffffff8111156145ee576145ee613ff6565b614602816145fc8454614513565b8461458e565b602080601f831160018114614637576000841561461f5750858301515b600019600386901b1c1916600185901b178555610c58565b600085815260208120601f198616915b8281101561466657888601518255948401946001909101908401614647565b50858210156146845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156146a657600080fd5b8151611ae381613f79565b6000602082840312156146c357600080fd5b8151611ae381614457565b6000602082840312156146e057600080fd5b8151611ae38161400c565b634e487b7160e01b600052601260045260246000fdfea2646970667358221220ab51c7212f92acf6d71745fe9a69e4b9ef1896b4c95e19f2a1a6850d1811755764736f6c63430008140033",
|
1669
|
+
"linkReferences": {
|
1670
|
+
"contracts/type/Amount.sol": {
|
1671
|
+
"AmountLib": [
|
1672
|
+
{
|
1673
|
+
"length": 20,
|
1674
|
+
"start": 3940
|
1675
|
+
},
|
1676
|
+
{
|
1677
|
+
"length": 20,
|
1678
|
+
"start": 4757
|
1679
|
+
},
|
1680
|
+
{
|
1681
|
+
"length": 20,
|
1682
|
+
"start": 6102
|
1683
|
+
},
|
1684
|
+
{
|
1685
|
+
"length": 20,
|
1686
|
+
"start": 7655
|
1687
|
+
},
|
1688
|
+
{
|
1689
|
+
"length": 20,
|
1690
|
+
"start": 7809
|
1691
|
+
},
|
1692
|
+
{
|
1693
|
+
"length": 20,
|
1694
|
+
"start": 8459
|
1695
|
+
},
|
1696
|
+
{
|
1697
|
+
"length": 20,
|
1698
|
+
"start": 9237
|
1699
|
+
},
|
1700
|
+
{
|
1701
|
+
"length": 20,
|
1702
|
+
"start": 9372
|
1703
|
+
},
|
1704
|
+
{
|
1705
|
+
"length": 20,
|
1706
|
+
"start": 11402
|
1707
|
+
},
|
1708
|
+
{
|
1709
|
+
"length": 20,
|
1710
|
+
"start": 11584
|
1711
|
+
},
|
1712
|
+
{
|
1713
|
+
"length": 20,
|
1714
|
+
"start": 11766
|
1715
|
+
},
|
1716
|
+
{
|
1717
|
+
"length": 20,
|
1718
|
+
"start": 12344
|
1719
|
+
},
|
1720
|
+
{
|
1721
|
+
"length": 20,
|
1722
|
+
"start": 14803
|
1723
|
+
},
|
1724
|
+
{
|
1725
|
+
"length": 20,
|
1726
|
+
"start": 14985
|
1727
|
+
}
|
1728
|
+
]
|
1729
|
+
},
|
1730
|
+
"contracts/type/Blocknumber.sol": {
|
1731
|
+
"BlocknumberLib": [
|
1732
|
+
{
|
1733
|
+
"length": 20,
|
1734
|
+
"start": 3589
|
1735
|
+
},
|
1736
|
+
{
|
1737
|
+
"length": 20,
|
1738
|
+
"start": 6402
|
1739
|
+
},
|
1740
|
+
{
|
1741
|
+
"length": 20,
|
1742
|
+
"start": 8984
|
1743
|
+
},
|
1744
|
+
{
|
1745
|
+
"length": 20,
|
1746
|
+
"start": 9520
|
1747
|
+
},
|
1748
|
+
{
|
1749
|
+
"length": 20,
|
1750
|
+
"start": 9740
|
1751
|
+
},
|
1752
|
+
{
|
1753
|
+
"length": 20,
|
1754
|
+
"start": 11265
|
1755
|
+
},
|
1756
|
+
{
|
1757
|
+
"length": 20,
|
1758
|
+
"start": 11948
|
1759
|
+
},
|
1760
|
+
{
|
1761
|
+
"length": 20,
|
1762
|
+
"start": 12163
|
1763
|
+
},
|
1764
|
+
{
|
1765
|
+
"length": 20,
|
1766
|
+
"start": 12632
|
1767
|
+
},
|
1768
|
+
{
|
1769
|
+
"length": 20,
|
1770
|
+
"start": 12881
|
1771
|
+
},
|
1772
|
+
{
|
1773
|
+
"length": 20,
|
1774
|
+
"start": 14666
|
1775
|
+
},
|
1776
|
+
{
|
1777
|
+
"length": 20,
|
1778
|
+
"start": 15345
|
1779
|
+
},
|
1780
|
+
{
|
1781
|
+
"length": 20,
|
1782
|
+
"start": 15475
|
1783
|
+
},
|
1784
|
+
{
|
1785
|
+
"length": 20,
|
1786
|
+
"start": 16574
|
1787
|
+
}
|
1788
|
+
]
|
1789
|
+
},
|
1790
|
+
"contracts/type/Key32.sol": {
|
1791
|
+
"Key32Lib": [
|
1792
|
+
{
|
1793
|
+
"length": 20,
|
1794
|
+
"start": 8297
|
1795
|
+
},
|
1796
|
+
{
|
1797
|
+
"length": 20,
|
1798
|
+
"start": 9989
|
1799
|
+
},
|
1800
|
+
{
|
1801
|
+
"length": 20,
|
1802
|
+
"start": 10105
|
1803
|
+
},
|
1804
|
+
{
|
1805
|
+
"length": 20,
|
1806
|
+
"start": 10288
|
1807
|
+
},
|
1808
|
+
{
|
1809
|
+
"length": 20,
|
1810
|
+
"start": 10949
|
1811
|
+
},
|
1812
|
+
{
|
1813
|
+
"length": 20,
|
1814
|
+
"start": 11065
|
1815
|
+
},
|
1816
|
+
{
|
1817
|
+
"length": 20,
|
1818
|
+
"start": 16241
|
1819
|
+
},
|
1820
|
+
{
|
1821
|
+
"length": 20,
|
1822
|
+
"start": 16357
|
1823
|
+
}
|
1824
|
+
]
|
1825
|
+
},
|
1826
|
+
"contracts/type/NftId.sol": {
|
1827
|
+
"NftIdLib": [
|
1828
|
+
{
|
1829
|
+
"length": 20,
|
1830
|
+
"start": 3120
|
1831
|
+
},
|
1832
|
+
{
|
1833
|
+
"length": 20,
|
1834
|
+
"start": 3362
|
1835
|
+
},
|
1836
|
+
{
|
1837
|
+
"length": 20,
|
1838
|
+
"start": 5349
|
1839
|
+
},
|
1840
|
+
{
|
1841
|
+
"length": 20,
|
1842
|
+
"start": 5528
|
1843
|
+
},
|
1844
|
+
{
|
1845
|
+
"length": 20,
|
1846
|
+
"start": 5846
|
1847
|
+
}
|
1848
|
+
]
|
1849
|
+
},
|
1850
|
+
"contracts/type/NftIdSet.sol": {
|
1851
|
+
"LibNftIdSet": [
|
1852
|
+
{
|
1853
|
+
"length": 20,
|
1854
|
+
"start": 19443
|
1855
|
+
},
|
1856
|
+
{
|
1857
|
+
"length": 20,
|
1858
|
+
"start": 19565
|
1859
|
+
},
|
1860
|
+
{
|
1861
|
+
"length": 20,
|
1862
|
+
"start": 19698
|
1863
|
+
},
|
1864
|
+
{
|
1865
|
+
"length": 20,
|
1866
|
+
"start": 19833
|
1867
|
+
},
|
1868
|
+
{
|
1869
|
+
"length": 20,
|
1870
|
+
"start": 19971
|
1871
|
+
},
|
1872
|
+
{
|
1873
|
+
"length": 20,
|
1874
|
+
"start": 20083
|
1875
|
+
},
|
1876
|
+
{
|
1877
|
+
"length": 20,
|
1878
|
+
"start": 20269
|
1879
|
+
},
|
1880
|
+
{
|
1881
|
+
"length": 20,
|
1882
|
+
"start": 20328
|
1883
|
+
},
|
1884
|
+
{
|
1885
|
+
"length": 20,
|
1886
|
+
"start": 20453
|
1887
|
+
},
|
1888
|
+
{
|
1889
|
+
"length": 20,
|
1890
|
+
"start": 20519
|
1891
|
+
}
|
1892
|
+
]
|
1893
|
+
},
|
1894
|
+
"contracts/type/ObjectType.sol": {
|
1895
|
+
"ObjectTypeLib": [
|
1896
|
+
{
|
1897
|
+
"length": 20,
|
1898
|
+
"start": 10409
|
1899
|
+
}
|
1900
|
+
]
|
1901
|
+
},
|
1902
|
+
"contracts/type/StateId.sol": {
|
1903
|
+
"StateIdLib": [
|
1904
|
+
{
|
1905
|
+
"length": 20,
|
1906
|
+
"start": 4584
|
1907
|
+
},
|
1908
|
+
{
|
1909
|
+
"length": 20,
|
1910
|
+
"start": 7126
|
1911
|
+
},
|
1912
|
+
{
|
1913
|
+
"length": 20,
|
1914
|
+
"start": 7372
|
1915
|
+
},
|
1916
|
+
{
|
1917
|
+
"length": 20,
|
1918
|
+
"start": 10585
|
1919
|
+
},
|
1920
|
+
{
|
1921
|
+
"length": 20,
|
1922
|
+
"start": 15824
|
1923
|
+
},
|
1924
|
+
{
|
1925
|
+
"length": 20,
|
1926
|
+
"start": 16014
|
1927
|
+
}
|
1928
|
+
]
|
1929
|
+
},
|
1930
|
+
"contracts/type/Timestamp.sol": {
|
1931
|
+
"TimestampLib": [
|
1932
|
+
{
|
1933
|
+
"length": 20,
|
1934
|
+
"start": 12466
|
1935
|
+
},
|
1936
|
+
{
|
1937
|
+
"length": 20,
|
1938
|
+
"start": 15167
|
1939
|
+
}
|
1940
|
+
]
|
1941
|
+
},
|
1942
|
+
"contracts/type/UFixed.sol": {
|
1943
|
+
"UFixedLib": [
|
1944
|
+
{
|
1945
|
+
"length": 20,
|
1946
|
+
"start": 8595
|
1947
|
+
}
|
1948
|
+
]
|
1949
|
+
}
|
1950
|
+
},
|
1951
|
+
"deployedLinkReferences": {
|
1952
|
+
"contracts/type/Amount.sol": {
|
1953
|
+
"AmountLib": [
|
1954
|
+
{
|
1955
|
+
"length": 20,
|
1956
|
+
"start": 3249
|
1957
|
+
},
|
1958
|
+
{
|
1959
|
+
"length": 20,
|
1960
|
+
"start": 4066
|
1961
|
+
},
|
1962
|
+
{
|
1963
|
+
"length": 20,
|
1964
|
+
"start": 5411
|
1965
|
+
},
|
1966
|
+
{
|
1967
|
+
"length": 20,
|
1968
|
+
"start": 6964
|
1969
|
+
},
|
1970
|
+
{
|
1971
|
+
"length": 20,
|
1972
|
+
"start": 7118
|
1973
|
+
},
|
1974
|
+
{
|
1975
|
+
"length": 20,
|
1976
|
+
"start": 7768
|
1977
|
+
},
|
1978
|
+
{
|
1979
|
+
"length": 20,
|
1980
|
+
"start": 8546
|
1981
|
+
},
|
1982
|
+
{
|
1983
|
+
"length": 20,
|
1984
|
+
"start": 8681
|
1985
|
+
},
|
1986
|
+
{
|
1987
|
+
"length": 20,
|
1988
|
+
"start": 10711
|
1989
|
+
},
|
1990
|
+
{
|
1991
|
+
"length": 20,
|
1992
|
+
"start": 10893
|
1993
|
+
},
|
1994
|
+
{
|
1995
|
+
"length": 20,
|
1996
|
+
"start": 11075
|
1997
|
+
},
|
1998
|
+
{
|
1999
|
+
"length": 20,
|
2000
|
+
"start": 11653
|
2001
|
+
},
|
2002
|
+
{
|
2003
|
+
"length": 20,
|
2004
|
+
"start": 14112
|
2005
|
+
},
|
2006
|
+
{
|
2007
|
+
"length": 20,
|
2008
|
+
"start": 14294
|
2009
|
+
}
|
2010
|
+
]
|
2011
|
+
},
|
2012
|
+
"contracts/type/Blocknumber.sol": {
|
2013
|
+
"BlocknumberLib": [
|
2014
|
+
{
|
2015
|
+
"length": 20,
|
2016
|
+
"start": 2898
|
2017
|
+
},
|
2018
|
+
{
|
2019
|
+
"length": 20,
|
2020
|
+
"start": 5711
|
2021
|
+
},
|
2022
|
+
{
|
2023
|
+
"length": 20,
|
2024
|
+
"start": 8293
|
2025
|
+
},
|
2026
|
+
{
|
2027
|
+
"length": 20,
|
2028
|
+
"start": 8829
|
2029
|
+
},
|
2030
|
+
{
|
2031
|
+
"length": 20,
|
2032
|
+
"start": 9049
|
2033
|
+
},
|
2034
|
+
{
|
2035
|
+
"length": 20,
|
2036
|
+
"start": 10574
|
2037
|
+
},
|
2038
|
+
{
|
2039
|
+
"length": 20,
|
2040
|
+
"start": 11257
|
2041
|
+
},
|
2042
|
+
{
|
2043
|
+
"length": 20,
|
2044
|
+
"start": 11472
|
2045
|
+
},
|
2046
|
+
{
|
2047
|
+
"length": 20,
|
2048
|
+
"start": 11941
|
2049
|
+
},
|
2050
|
+
{
|
2051
|
+
"length": 20,
|
2052
|
+
"start": 12190
|
2053
|
+
},
|
2054
|
+
{
|
2055
|
+
"length": 20,
|
2056
|
+
"start": 13975
|
2057
|
+
},
|
2058
|
+
{
|
2059
|
+
"length": 20,
|
2060
|
+
"start": 14654
|
2061
|
+
},
|
2062
|
+
{
|
2063
|
+
"length": 20,
|
2064
|
+
"start": 14784
|
2065
|
+
},
|
2066
|
+
{
|
2067
|
+
"length": 20,
|
2068
|
+
"start": 15883
|
2069
|
+
}
|
2070
|
+
]
|
2071
|
+
},
|
2072
|
+
"contracts/type/Key32.sol": {
|
2073
|
+
"Key32Lib": [
|
2074
|
+
{
|
2075
|
+
"length": 20,
|
2076
|
+
"start": 7606
|
2077
|
+
},
|
2078
|
+
{
|
2079
|
+
"length": 20,
|
2080
|
+
"start": 9298
|
2081
|
+
},
|
2082
|
+
{
|
2083
|
+
"length": 20,
|
2084
|
+
"start": 9414
|
2085
|
+
},
|
2086
|
+
{
|
2087
|
+
"length": 20,
|
2088
|
+
"start": 9597
|
2089
|
+
},
|
2090
|
+
{
|
2091
|
+
"length": 20,
|
2092
|
+
"start": 10258
|
2093
|
+
},
|
2094
|
+
{
|
2095
|
+
"length": 20,
|
2096
|
+
"start": 10374
|
2097
|
+
},
|
2098
|
+
{
|
2099
|
+
"length": 20,
|
2100
|
+
"start": 15550
|
2101
|
+
},
|
2102
|
+
{
|
2103
|
+
"length": 20,
|
2104
|
+
"start": 15666
|
2105
|
+
}
|
2106
|
+
]
|
2107
|
+
},
|
2108
|
+
"contracts/type/NftId.sol": {
|
2109
|
+
"NftIdLib": [
|
2110
|
+
{
|
2111
|
+
"length": 20,
|
2112
|
+
"start": 2429
|
2113
|
+
},
|
2114
|
+
{
|
2115
|
+
"length": 20,
|
2116
|
+
"start": 2671
|
2117
|
+
},
|
2118
|
+
{
|
2119
|
+
"length": 20,
|
2120
|
+
"start": 4658
|
2121
|
+
},
|
2122
|
+
{
|
2123
|
+
"length": 20,
|
2124
|
+
"start": 4837
|
2125
|
+
},
|
2126
|
+
{
|
2127
|
+
"length": 20,
|
2128
|
+
"start": 5155
|
2129
|
+
}
|
2130
|
+
]
|
2131
|
+
},
|
2132
|
+
"contracts/type/ObjectType.sol": {
|
2133
|
+
"ObjectTypeLib": [
|
2134
|
+
{
|
2135
|
+
"length": 20,
|
2136
|
+
"start": 9718
|
2137
|
+
}
|
2138
|
+
]
|
2139
|
+
},
|
2140
|
+
"contracts/type/StateId.sol": {
|
2141
|
+
"StateIdLib": [
|
2142
|
+
{
|
2143
|
+
"length": 20,
|
2144
|
+
"start": 3893
|
2145
|
+
},
|
2146
|
+
{
|
2147
|
+
"length": 20,
|
2148
|
+
"start": 6435
|
2149
|
+
},
|
2150
|
+
{
|
2151
|
+
"length": 20,
|
2152
|
+
"start": 6681
|
2153
|
+
},
|
2154
|
+
{
|
2155
|
+
"length": 20,
|
2156
|
+
"start": 9894
|
2157
|
+
},
|
2158
|
+
{
|
2159
|
+
"length": 20,
|
2160
|
+
"start": 15133
|
2161
|
+
},
|
2162
|
+
{
|
2163
|
+
"length": 20,
|
2164
|
+
"start": 15323
|
2165
|
+
}
|
2166
|
+
]
|
2167
|
+
},
|
2168
|
+
"contracts/type/Timestamp.sol": {
|
2169
|
+
"TimestampLib": [
|
2170
|
+
{
|
2171
|
+
"length": 20,
|
2172
|
+
"start": 11775
|
2173
|
+
},
|
2174
|
+
{
|
2175
|
+
"length": 20,
|
2176
|
+
"start": 14476
|
2177
|
+
}
|
2178
|
+
]
|
2179
|
+
},
|
2180
|
+
"contracts/type/UFixed.sol": {
|
2181
|
+
"UFixedLib": [
|
2182
|
+
{
|
2183
|
+
"length": 20,
|
2184
|
+
"start": 7904
|
2185
|
+
}
|
2186
|
+
]
|
2187
|
+
}
|
2188
|
+
}
|
2189
|
+
}
|