@etherisc/gif-next 0.0.2-ec436bf-674 → 0.0.2-ed1536c-164
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +71 -14
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1410 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1343 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +799 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +969 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +808 -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 +454 -554
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +356 -176
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +458 -3052
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +612 -181
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +132 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +504 -322
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +524 -352
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +331 -108
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3468 -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/{AccessManagedSimple.sol/AccessManagedSimple.json → base/Cloneable.sol/Cloneable.json} +91 -2
- 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 +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +71 -45
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{ISetup.sol/ISetup.json → IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1091 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +723 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → pool/IBundleService.sol/IBundleService.json} +294 -361
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1148 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1044 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1559 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1411 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +719 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +820 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +699 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1264 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +787 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IApplicationService.sol/IApplicationService.json} +231 -204
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +753 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +701 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IPricingService.sol/IPricingService.json} +257 -288
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +989 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/{components/BaseComponent.sol/BaseComponent.json → product/IProductService.sol/IProductService.json} +140 -86
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1132 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +731 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +969 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +755 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1391 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +673 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +675 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +340 -195
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +434 -194
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +429 -261
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +322 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +499 -338
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +320 -140
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1151 -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 +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +352 -109
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +890 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1461 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +765 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +196 -216
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +625 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +854 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +699 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +50 -1
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +27 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +8 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +35 -0
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +84 -178
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1030 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +581 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +109 -29
- 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 +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +310 -61
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -53
- 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 +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +185 -165
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +60 -6
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1435 -0
- package/artifacts/contracts/staking/IStakingManager.sol/IStakingManager.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → staking/IStakingManager.sol/IStakingManager.json} +10 -10
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +884 -0
- package/artifacts/contracts/staking/IStakingStore.sol/IStakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingStore.sol/IStakingStore.json +357 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +402 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2002 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +748 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +368 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1207 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1690 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +494 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +281 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/DistributorType.sol/DistributorTypeLib.json +5 -5
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Key32.sol/Key32Lib.json +3 -3
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +185 -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/{types → type}/ObjectType.sol/ObjectTypeLib.json +3 -3
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/RiskId.sol/RiskIdLib.json +5 -5
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/RoleId.sol/RoleIdLib.json +5 -5
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +174 -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/{types → type}/Timestamp.sol/TimestampLib.json +39 -8
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/UFixed.sol/MathLib.json +3 -3
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/UFixed.sol/UFixedLib.json +3 -3
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Version.sol/VersionLib.json +3 -3
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Version.sol/VersionPartLib.json +3 -3
- package/contracts/distribution/Distribution.sol +263 -0
- package/contracts/distribution/DistributionService.sol +298 -0
- package/contracts/distribution/DistributionServiceManager.sol +54 -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 +62 -24
- package/contracts/instance/IInstanceService.sol +66 -13
- package/contracts/instance/Instance.sol +151 -366
- package/contracts/instance/InstanceAccessManager.sol +432 -177
- package/contracts/instance/InstanceAuthorizationsLib.sol +336 -0
- package/contracts/instance/InstanceReader.sol +143 -83
- package/contracts/instance/InstanceService.sol +309 -124
- package/contracts/instance/InstanceServiceManager.sol +12 -24
- package/contracts/instance/InstanceStore.sol +260 -0
- package/contracts/instance/base/BalanceStore.sol +118 -0
- package/contracts/instance/base/Cloneable.sol +51 -0
- package/contracts/instance/base/ObjectManager.sol +82 -0
- package/contracts/instance/module/IAccess.sol +37 -21
- package/contracts/instance/module/IBundle.sol +8 -8
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +7 -4
- package/contracts/instance/module/IPolicy.sol +56 -17
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
- 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 +147 -0
- package/contracts/pool/Pool.sol +299 -0
- package/contracts/pool/PoolService.sol +424 -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 +437 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +93 -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 +473 -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 +14 -0
- package/contracts/registry/IRegistry.sol +76 -45
- package/contracts/registry/IRegistryService.sol +51 -16
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +358 -269
- package/contracts/registry/RegistryAccessManager.sol +196 -0
- package/contracts/registry/RegistryService.sol +126 -259
- package/contracts/registry/RegistryServiceManager.sol +34 -42
- package/contracts/registry/ReleaseManager.sol +563 -0
- package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
- package/contracts/registry/TokenRegistry.sol +300 -57
- package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/shared/Component.sol +286 -0
- package/contracts/shared/ComponentService.sol +595 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +111 -0
- package/contracts/shared/ERC165.sol +14 -12
- package/contracts/shared/IComponent.sol +74 -0
- package/contracts/shared/IComponentService.sol +91 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +14 -10
- package/contracts/{instance/base → shared}/ILifecycle.sol +3 -3
- package/contracts/shared/INftOwnable.sol +12 -11
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +7 -4
- package/contracts/shared/IVersionable.sol +5 -48
- package/contracts/shared/InstanceLinkedComponent.sol +145 -0
- package/contracts/shared/KeyValueStore.sol +130 -0
- package/contracts/{instance/base → shared}/Lifecycle.sol +28 -7
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +65 -83
- package/contracts/shared/PolicyHolder.sol +101 -0
- package/contracts/shared/ProxyManager.sol +126 -25
- package/contracts/shared/Registerable.sol +26 -41
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +45 -23
- package/contracts/shared/TokenHandler.sol +37 -6
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/staking/IStaking.sol +152 -0
- package/contracts/staking/IStakingManager.sol +15 -0
- package/contracts/staking/IStakingService.sol +162 -0
- package/contracts/staking/IStakingStore.sol +130 -0
- package/contracts/staking/StakeManagerLib.sol +156 -0
- package/contracts/staking/Staking.sol +502 -0
- package/contracts/staking/StakingManager.sol +65 -0
- package/contracts/staking/StakingReader.sol +147 -0
- package/contracts/staking/StakingService.sol +375 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +329 -0
- package/contracts/staking/TargetManagerLib.sol +179 -0
- package/contracts/type/Amount.sol +114 -0
- package/contracts/{types → type}/Blocknumber.sol +20 -2
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/{types → type}/DistributorType.sol +2 -2
- package/contracts/{types → type}/Fee.sol +32 -22
- package/contracts/{types → type}/NftId.sol +17 -11
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/{types → type}/ObjectType.sol +26 -9
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +4 -0
- package/contracts/type/RoleId.sol +143 -0
- package/contracts/type/Seconds.sol +71 -0
- package/contracts/{types → type}/StateId.sol +24 -6
- package/contracts/{types → type}/Timestamp.sol +18 -13
- package/contracts/{types → type}/UFixed.sol +1 -0
- package/contracts/{types → type}/Version.sol +1 -0
- package/package.json +3 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -618
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -249
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -782
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -775
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- 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/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/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -716
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -448
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -446
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -855
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -460
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -91
- package/contracts/components/Distribution.sol +0 -160
- package/contracts/components/IBaseComponent.sol +0 -25
- package/contracts/components/IDistributionComponent.sol +0 -44
- package/contracts/components/IPoolComponent.sol +0 -62
- package/contracts/components/IProductComponent.sol +0 -35
- package/contracts/components/Pool.sol +0 -243
- package/contracts/components/Product.sol +0 -297
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- 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/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/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -118
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/base/KeyValueStore.sol +0 -172
- package/contracts/instance/module/ISetup.sol +0 -44
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/DistributionService.sol +0 -87
- package/contracts/instance/service/DistributionServiceManager.sol +0 -53
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/instance/service/IDistributionService.sol +0 -12
- package/contracts/instance/service/IPoolService.sol +0 -37
- package/contracts/instance/service/IProductService.sol +0 -107
- package/contracts/instance/service/PoolService.sol +0 -193
- package/contracts/instance/service/PoolServiceManager.sol +0 -53
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -24
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/RoleId.sol +0 -89
- /package/contracts/{types → type}/AddressSet.sol +0 -0
- /package/contracts/{types → type}/Key32.sol +0 -0
- /package/contracts/{types → type}/RiskId.sol +0 -0
@@ -0,0 +1,1690 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "StakingStore",
|
4
|
+
"sourceName": "contracts/staking/StakingStore.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "initialAuthority",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "address",
|
15
|
+
"name": "registryAddress",
|
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
|
+
"name": "InvalidInitialization",
|
171
|
+
"type": "error"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [],
|
175
|
+
"name": "NotInitializing",
|
176
|
+
"type": "error"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"anonymous": false,
|
180
|
+
"inputs": [
|
181
|
+
{
|
182
|
+
"indexed": false,
|
183
|
+
"internalType": "address",
|
184
|
+
"name": "authority",
|
185
|
+
"type": "address"
|
186
|
+
}
|
187
|
+
],
|
188
|
+
"name": "AuthorityUpdated",
|
189
|
+
"type": "event"
|
190
|
+
},
|
191
|
+
{
|
192
|
+
"anonymous": false,
|
193
|
+
"inputs": [
|
194
|
+
{
|
195
|
+
"indexed": false,
|
196
|
+
"internalType": "uint64",
|
197
|
+
"name": "version",
|
198
|
+
"type": "uint64"
|
199
|
+
}
|
200
|
+
],
|
201
|
+
"name": "Initialized",
|
202
|
+
"type": "event"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"anonymous": false,
|
206
|
+
"inputs": [
|
207
|
+
{
|
208
|
+
"indexed": false,
|
209
|
+
"internalType": "ObjectType",
|
210
|
+
"name": "objectType",
|
211
|
+
"type": "uint8"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"indexed": false,
|
215
|
+
"internalType": "KeyId",
|
216
|
+
"name": "keyId",
|
217
|
+
"type": "bytes31"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"indexed": false,
|
221
|
+
"internalType": "StateId",
|
222
|
+
"name": "state",
|
223
|
+
"type": "uint8"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"indexed": false,
|
227
|
+
"internalType": "address",
|
228
|
+
"name": "createdBy",
|
229
|
+
"type": "address"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"indexed": false,
|
233
|
+
"internalType": "address",
|
234
|
+
"name": "txOrigin",
|
235
|
+
"type": "address"
|
236
|
+
}
|
237
|
+
],
|
238
|
+
"name": "LogInfoCreated",
|
239
|
+
"type": "event"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"anonymous": false,
|
243
|
+
"inputs": [
|
244
|
+
{
|
245
|
+
"indexed": false,
|
246
|
+
"internalType": "ObjectType",
|
247
|
+
"name": "objectType",
|
248
|
+
"type": "uint8"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"indexed": false,
|
252
|
+
"internalType": "KeyId",
|
253
|
+
"name": "keyId",
|
254
|
+
"type": "bytes31"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"indexed": false,
|
258
|
+
"internalType": "StateId",
|
259
|
+
"name": "state",
|
260
|
+
"type": "uint8"
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"indexed": false,
|
264
|
+
"internalType": "address",
|
265
|
+
"name": "updatedBy",
|
266
|
+
"type": "address"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"indexed": false,
|
270
|
+
"internalType": "address",
|
271
|
+
"name": "txOrigin",
|
272
|
+
"type": "address"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"indexed": false,
|
276
|
+
"internalType": "Blocknumber",
|
277
|
+
"name": "lastUpdatedIn",
|
278
|
+
"type": "uint32"
|
279
|
+
}
|
280
|
+
],
|
281
|
+
"name": "LogInfoUpdated",
|
282
|
+
"type": "event"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"anonymous": false,
|
286
|
+
"inputs": [
|
287
|
+
{
|
288
|
+
"indexed": false,
|
289
|
+
"internalType": "NftId",
|
290
|
+
"name": "nftId",
|
291
|
+
"type": "uint96"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"indexed": false,
|
295
|
+
"internalType": "Amount",
|
296
|
+
"name": "addedAmount",
|
297
|
+
"type": "uint96"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"indexed": false,
|
301
|
+
"internalType": "Amount",
|
302
|
+
"name": "newBalance",
|
303
|
+
"type": "uint96"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"indexed": false,
|
307
|
+
"internalType": "Blocknumber",
|
308
|
+
"name": "lastUpdatedIn",
|
309
|
+
"type": "uint32"
|
310
|
+
}
|
311
|
+
],
|
312
|
+
"name": "LogStakingStoreRewardsDecreased",
|
313
|
+
"type": "event"
|
314
|
+
},
|
315
|
+
{
|
316
|
+
"anonymous": false,
|
317
|
+
"inputs": [
|
318
|
+
{
|
319
|
+
"indexed": false,
|
320
|
+
"internalType": "NftId",
|
321
|
+
"name": "nftId",
|
322
|
+
"type": "uint96"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"indexed": false,
|
326
|
+
"internalType": "Amount",
|
327
|
+
"name": "addedAmount",
|
328
|
+
"type": "uint96"
|
329
|
+
},
|
330
|
+
{
|
331
|
+
"indexed": false,
|
332
|
+
"internalType": "Amount",
|
333
|
+
"name": "newBalance",
|
334
|
+
"type": "uint96"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"indexed": false,
|
338
|
+
"internalType": "Blocknumber",
|
339
|
+
"name": "lastUpdatedIn",
|
340
|
+
"type": "uint32"
|
341
|
+
}
|
342
|
+
],
|
343
|
+
"name": "LogStakingStoreRewardsIncreased",
|
344
|
+
"type": "event"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"anonymous": false,
|
348
|
+
"inputs": [
|
349
|
+
{
|
350
|
+
"indexed": false,
|
351
|
+
"internalType": "NftId",
|
352
|
+
"name": "nftId",
|
353
|
+
"type": "uint96"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"indexed": false,
|
357
|
+
"internalType": "Amount",
|
358
|
+
"name": "amount",
|
359
|
+
"type": "uint96"
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"indexed": false,
|
363
|
+
"internalType": "Amount",
|
364
|
+
"name": "rewardAmount",
|
365
|
+
"type": "uint96"
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"indexed": false,
|
369
|
+
"internalType": "Amount",
|
370
|
+
"name": "rewardIncrementAmount",
|
371
|
+
"type": "uint96"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"indexed": false,
|
375
|
+
"internalType": "Amount",
|
376
|
+
"name": "newBalance",
|
377
|
+
"type": "uint96"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"indexed": false,
|
381
|
+
"internalType": "Blocknumber",
|
382
|
+
"name": "lastUpdatedIn",
|
383
|
+
"type": "uint32"
|
384
|
+
}
|
385
|
+
],
|
386
|
+
"name": "LogStakingStoreRewardsRestaked",
|
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": "LogStakingStoreStakesDecreased",
|
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": "LogStakingStoreStakesIncreased",
|
449
|
+
"type": "event"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"anonymous": false,
|
453
|
+
"inputs": [
|
454
|
+
{
|
455
|
+
"indexed": false,
|
456
|
+
"internalType": "ObjectType",
|
457
|
+
"name": "objectType",
|
458
|
+
"type": "uint8"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"indexed": false,
|
462
|
+
"internalType": "KeyId",
|
463
|
+
"name": "keyId",
|
464
|
+
"type": "bytes31"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"indexed": false,
|
468
|
+
"internalType": "StateId",
|
469
|
+
"name": "stateOld",
|
470
|
+
"type": "uint8"
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"indexed": false,
|
474
|
+
"internalType": "StateId",
|
475
|
+
"name": "stateNew",
|
476
|
+
"type": "uint8"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"indexed": false,
|
480
|
+
"internalType": "address",
|
481
|
+
"name": "updatedBy",
|
482
|
+
"type": "address"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"indexed": false,
|
486
|
+
"internalType": "address",
|
487
|
+
"name": "txOrigin",
|
488
|
+
"type": "address"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"indexed": false,
|
492
|
+
"internalType": "Blocknumber",
|
493
|
+
"name": "lastUpdatedIn",
|
494
|
+
"type": "uint32"
|
495
|
+
}
|
496
|
+
],
|
497
|
+
"name": "LogStateUpdated",
|
498
|
+
"type": "event"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"inputs": [],
|
502
|
+
"name": "authority",
|
503
|
+
"outputs": [
|
504
|
+
{
|
505
|
+
"internalType": "address",
|
506
|
+
"name": "",
|
507
|
+
"type": "address"
|
508
|
+
}
|
509
|
+
],
|
510
|
+
"stateMutability": "view",
|
511
|
+
"type": "function"
|
512
|
+
},
|
513
|
+
{
|
514
|
+
"inputs": [
|
515
|
+
{
|
516
|
+
"internalType": "ObjectType",
|
517
|
+
"name": "objectType",
|
518
|
+
"type": "uint8"
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"internalType": "StateId",
|
522
|
+
"name": "fromId",
|
523
|
+
"type": "uint8"
|
524
|
+
},
|
525
|
+
{
|
526
|
+
"internalType": "StateId",
|
527
|
+
"name": "toId",
|
528
|
+
"type": "uint8"
|
529
|
+
}
|
530
|
+
],
|
531
|
+
"name": "checkTransition",
|
532
|
+
"outputs": [],
|
533
|
+
"stateMutability": "view",
|
534
|
+
"type": "function"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"inputs": [
|
538
|
+
{
|
539
|
+
"internalType": "NftId",
|
540
|
+
"name": "nftId",
|
541
|
+
"type": "uint96"
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"internalType": "Amount",
|
545
|
+
"name": "maxRewardAmount",
|
546
|
+
"type": "uint96"
|
547
|
+
}
|
548
|
+
],
|
549
|
+
"name": "claimUpTo",
|
550
|
+
"outputs": [
|
551
|
+
{
|
552
|
+
"internalType": "Amount",
|
553
|
+
"name": "rewardsClaimedAmount",
|
554
|
+
"type": "uint96"
|
555
|
+
}
|
556
|
+
],
|
557
|
+
"stateMutability": "nonpayable",
|
558
|
+
"type": "function"
|
559
|
+
},
|
560
|
+
{
|
561
|
+
"inputs": [
|
562
|
+
{
|
563
|
+
"internalType": "NftId",
|
564
|
+
"name": "stakeNftId",
|
565
|
+
"type": "uint96"
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"components": [
|
569
|
+
{
|
570
|
+
"internalType": "Timestamp",
|
571
|
+
"name": "lockedUntil",
|
572
|
+
"type": "uint40"
|
573
|
+
}
|
574
|
+
],
|
575
|
+
"internalType": "struct IStaking.StakeInfo",
|
576
|
+
"name": "stakeInfo",
|
577
|
+
"type": "tuple"
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"internalType": "Amount",
|
581
|
+
"name": "stakeAmount",
|
582
|
+
"type": "uint96"
|
583
|
+
}
|
584
|
+
],
|
585
|
+
"name": "create",
|
586
|
+
"outputs": [],
|
587
|
+
"stateMutability": "nonpayable",
|
588
|
+
"type": "function"
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"inputs": [
|
592
|
+
{
|
593
|
+
"internalType": "NftId",
|
594
|
+
"name": "targetNftId",
|
595
|
+
"type": "uint96"
|
596
|
+
},
|
597
|
+
{
|
598
|
+
"components": [
|
599
|
+
{
|
600
|
+
"internalType": "ObjectType",
|
601
|
+
"name": "objectType",
|
602
|
+
"type": "uint8"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"internalType": "uint256",
|
606
|
+
"name": "chainId",
|
607
|
+
"type": "uint256"
|
608
|
+
},
|
609
|
+
{
|
610
|
+
"internalType": "Seconds",
|
611
|
+
"name": "lockingPeriod",
|
612
|
+
"type": "uint40"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"internalType": "UFixed",
|
616
|
+
"name": "rewardRate",
|
617
|
+
"type": "uint256"
|
618
|
+
}
|
619
|
+
],
|
620
|
+
"internalType": "struct IStaking.TargetInfo",
|
621
|
+
"name": "targetInfo",
|
622
|
+
"type": "tuple"
|
623
|
+
}
|
624
|
+
],
|
625
|
+
"name": "createTarget",
|
626
|
+
"outputs": [],
|
627
|
+
"stateMutability": "nonpayable",
|
628
|
+
"type": "function"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"inputs": [
|
632
|
+
{
|
633
|
+
"internalType": "Key32",
|
634
|
+
"name": "key32",
|
635
|
+
"type": "bytes32"
|
636
|
+
}
|
637
|
+
],
|
638
|
+
"name": "exists",
|
639
|
+
"outputs": [
|
640
|
+
{
|
641
|
+
"internalType": "bool",
|
642
|
+
"name": "",
|
643
|
+
"type": "bool"
|
644
|
+
}
|
645
|
+
],
|
646
|
+
"stateMutability": "view",
|
647
|
+
"type": "function"
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"inputs": [
|
651
|
+
{
|
652
|
+
"internalType": "NftId",
|
653
|
+
"name": "stakeNftId",
|
654
|
+
"type": "uint96"
|
655
|
+
}
|
656
|
+
],
|
657
|
+
"name": "exists",
|
658
|
+
"outputs": [
|
659
|
+
{
|
660
|
+
"internalType": "bool",
|
661
|
+
"name": "",
|
662
|
+
"type": "bool"
|
663
|
+
}
|
664
|
+
],
|
665
|
+
"stateMutability": "view",
|
666
|
+
"type": "function"
|
667
|
+
},
|
668
|
+
{
|
669
|
+
"inputs": [
|
670
|
+
{
|
671
|
+
"internalType": "Key32",
|
672
|
+
"name": "key32",
|
673
|
+
"type": "bytes32"
|
674
|
+
}
|
675
|
+
],
|
676
|
+
"name": "get",
|
677
|
+
"outputs": [
|
678
|
+
{
|
679
|
+
"components": [
|
680
|
+
{
|
681
|
+
"components": [
|
682
|
+
{
|
683
|
+
"internalType": "ObjectType",
|
684
|
+
"name": "objectType",
|
685
|
+
"type": "uint8"
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"internalType": "StateId",
|
689
|
+
"name": "state",
|
690
|
+
"type": "uint8"
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"internalType": "address",
|
694
|
+
"name": "updatedBy",
|
695
|
+
"type": "address"
|
696
|
+
},
|
697
|
+
{
|
698
|
+
"internalType": "Blocknumber",
|
699
|
+
"name": "updatedIn",
|
700
|
+
"type": "uint32"
|
701
|
+
},
|
702
|
+
{
|
703
|
+
"internalType": "Blocknumber",
|
704
|
+
"name": "createdIn",
|
705
|
+
"type": "uint32"
|
706
|
+
}
|
707
|
+
],
|
708
|
+
"internalType": "struct IKeyValueStore.Metadata",
|
709
|
+
"name": "metadata",
|
710
|
+
"type": "tuple"
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"internalType": "bytes",
|
714
|
+
"name": "data",
|
715
|
+
"type": "bytes"
|
716
|
+
}
|
717
|
+
],
|
718
|
+
"internalType": "struct IKeyValueStore.Value",
|
719
|
+
"name": "value",
|
720
|
+
"type": "tuple"
|
721
|
+
}
|
722
|
+
],
|
723
|
+
"stateMutability": "view",
|
724
|
+
"type": "function"
|
725
|
+
},
|
726
|
+
{
|
727
|
+
"inputs": [
|
728
|
+
{
|
729
|
+
"internalType": "NftId",
|
730
|
+
"name": "nftId",
|
731
|
+
"type": "uint96"
|
732
|
+
}
|
733
|
+
],
|
734
|
+
"name": "getBalanceAndLastUpdatedAt",
|
735
|
+
"outputs": [
|
736
|
+
{
|
737
|
+
"internalType": "Amount",
|
738
|
+
"name": "stakeBalance",
|
739
|
+
"type": "uint96"
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"internalType": "Timestamp",
|
743
|
+
"name": "lastUpdatedAt",
|
744
|
+
"type": "uint40"
|
745
|
+
}
|
746
|
+
],
|
747
|
+
"stateMutability": "view",
|
748
|
+
"type": "function"
|
749
|
+
},
|
750
|
+
{
|
751
|
+
"inputs": [
|
752
|
+
{
|
753
|
+
"internalType": "NftId",
|
754
|
+
"name": "nftId",
|
755
|
+
"type": "uint96"
|
756
|
+
}
|
757
|
+
],
|
758
|
+
"name": "getBalanceUpdatedAt",
|
759
|
+
"outputs": [
|
760
|
+
{
|
761
|
+
"internalType": "Timestamp",
|
762
|
+
"name": "updatedAt",
|
763
|
+
"type": "uint40"
|
764
|
+
}
|
765
|
+
],
|
766
|
+
"stateMutability": "view",
|
767
|
+
"type": "function"
|
768
|
+
},
|
769
|
+
{
|
770
|
+
"inputs": [
|
771
|
+
{
|
772
|
+
"internalType": "Key32",
|
773
|
+
"name": "key32",
|
774
|
+
"type": "bytes32"
|
775
|
+
}
|
776
|
+
],
|
777
|
+
"name": "getData",
|
778
|
+
"outputs": [
|
779
|
+
{
|
780
|
+
"internalType": "bytes",
|
781
|
+
"name": "data",
|
782
|
+
"type": "bytes"
|
783
|
+
}
|
784
|
+
],
|
785
|
+
"stateMutability": "view",
|
786
|
+
"type": "function"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"inputs": [
|
790
|
+
{
|
791
|
+
"internalType": "ObjectType",
|
792
|
+
"name": "objectType",
|
793
|
+
"type": "uint8"
|
794
|
+
}
|
795
|
+
],
|
796
|
+
"name": "getInitialState",
|
797
|
+
"outputs": [
|
798
|
+
{
|
799
|
+
"internalType": "StateId",
|
800
|
+
"name": "",
|
801
|
+
"type": "uint8"
|
802
|
+
}
|
803
|
+
],
|
804
|
+
"stateMutability": "view",
|
805
|
+
"type": "function"
|
806
|
+
},
|
807
|
+
{
|
808
|
+
"inputs": [
|
809
|
+
{
|
810
|
+
"internalType": "Key32",
|
811
|
+
"name": "key32",
|
812
|
+
"type": "bytes32"
|
813
|
+
}
|
814
|
+
],
|
815
|
+
"name": "getMetadata",
|
816
|
+
"outputs": [
|
817
|
+
{
|
818
|
+
"components": [
|
819
|
+
{
|
820
|
+
"internalType": "ObjectType",
|
821
|
+
"name": "objectType",
|
822
|
+
"type": "uint8"
|
823
|
+
},
|
824
|
+
{
|
825
|
+
"internalType": "StateId",
|
826
|
+
"name": "state",
|
827
|
+
"type": "uint8"
|
828
|
+
},
|
829
|
+
{
|
830
|
+
"internalType": "address",
|
831
|
+
"name": "updatedBy",
|
832
|
+
"type": "address"
|
833
|
+
},
|
834
|
+
{
|
835
|
+
"internalType": "Blocknumber",
|
836
|
+
"name": "updatedIn",
|
837
|
+
"type": "uint32"
|
838
|
+
},
|
839
|
+
{
|
840
|
+
"internalType": "Blocknumber",
|
841
|
+
"name": "createdIn",
|
842
|
+
"type": "uint32"
|
843
|
+
}
|
844
|
+
],
|
845
|
+
"internalType": "struct IKeyValueStore.Metadata",
|
846
|
+
"name": "metadata",
|
847
|
+
"type": "tuple"
|
848
|
+
}
|
849
|
+
],
|
850
|
+
"stateMutability": "view",
|
851
|
+
"type": "function"
|
852
|
+
},
|
853
|
+
{
|
854
|
+
"inputs": [
|
855
|
+
{
|
856
|
+
"internalType": "NftId",
|
857
|
+
"name": "nftId",
|
858
|
+
"type": "uint96"
|
859
|
+
}
|
860
|
+
],
|
861
|
+
"name": "getRewardBalance",
|
862
|
+
"outputs": [
|
863
|
+
{
|
864
|
+
"internalType": "Amount",
|
865
|
+
"name": "rewardAmount",
|
866
|
+
"type": "uint96"
|
867
|
+
}
|
868
|
+
],
|
869
|
+
"stateMutability": "view",
|
870
|
+
"type": "function"
|
871
|
+
},
|
872
|
+
{
|
873
|
+
"inputs": [
|
874
|
+
{
|
875
|
+
"internalType": "NftId",
|
876
|
+
"name": "nftId",
|
877
|
+
"type": "uint96"
|
878
|
+
}
|
879
|
+
],
|
880
|
+
"name": "getStakeBalance",
|
881
|
+
"outputs": [
|
882
|
+
{
|
883
|
+
"internalType": "Amount",
|
884
|
+
"name": "balanceAmount",
|
885
|
+
"type": "uint96"
|
886
|
+
}
|
887
|
+
],
|
888
|
+
"stateMutability": "view",
|
889
|
+
"type": "function"
|
890
|
+
},
|
891
|
+
{
|
892
|
+
"inputs": [],
|
893
|
+
"name": "getStakingReader",
|
894
|
+
"outputs": [
|
895
|
+
{
|
896
|
+
"internalType": "contract StakingReader",
|
897
|
+
"name": "stakingReader",
|
898
|
+
"type": "address"
|
899
|
+
}
|
900
|
+
],
|
901
|
+
"stateMutability": "view",
|
902
|
+
"type": "function"
|
903
|
+
},
|
904
|
+
{
|
905
|
+
"inputs": [
|
906
|
+
{
|
907
|
+
"internalType": "Key32",
|
908
|
+
"name": "key32",
|
909
|
+
"type": "bytes32"
|
910
|
+
}
|
911
|
+
],
|
912
|
+
"name": "getState",
|
913
|
+
"outputs": [
|
914
|
+
{
|
915
|
+
"internalType": "StateId",
|
916
|
+
"name": "state",
|
917
|
+
"type": "uint8"
|
918
|
+
}
|
919
|
+
],
|
920
|
+
"stateMutability": "view",
|
921
|
+
"type": "function"
|
922
|
+
},
|
923
|
+
{
|
924
|
+
"inputs": [],
|
925
|
+
"name": "getTargetManager",
|
926
|
+
"outputs": [
|
927
|
+
{
|
928
|
+
"internalType": "contract NftIdSetManager",
|
929
|
+
"name": "targetManager",
|
930
|
+
"type": "address"
|
931
|
+
}
|
932
|
+
],
|
933
|
+
"stateMutability": "view",
|
934
|
+
"type": "function"
|
935
|
+
},
|
936
|
+
{
|
937
|
+
"inputs": [
|
938
|
+
{
|
939
|
+
"internalType": "ObjectType",
|
940
|
+
"name": "objectType",
|
941
|
+
"type": "uint8"
|
942
|
+
}
|
943
|
+
],
|
944
|
+
"name": "hasLifecycle",
|
945
|
+
"outputs": [
|
946
|
+
{
|
947
|
+
"internalType": "bool",
|
948
|
+
"name": "",
|
949
|
+
"type": "bool"
|
950
|
+
}
|
951
|
+
],
|
952
|
+
"stateMutability": "view",
|
953
|
+
"type": "function"
|
954
|
+
},
|
955
|
+
{
|
956
|
+
"inputs": [
|
957
|
+
{
|
958
|
+
"internalType": "NftId",
|
959
|
+
"name": "nftId",
|
960
|
+
"type": "uint96"
|
961
|
+
},
|
962
|
+
{
|
963
|
+
"internalType": "Amount",
|
964
|
+
"name": "amount",
|
965
|
+
"type": "uint96"
|
966
|
+
},
|
967
|
+
{
|
968
|
+
"internalType": "Amount",
|
969
|
+
"name": "rewardIncrementAmount",
|
970
|
+
"type": "uint96"
|
971
|
+
}
|
972
|
+
],
|
973
|
+
"name": "increaseBalance",
|
974
|
+
"outputs": [],
|
975
|
+
"stateMutability": "nonpayable",
|
976
|
+
"type": "function"
|
977
|
+
},
|
978
|
+
{
|
979
|
+
"inputs": [],
|
980
|
+
"name": "initializeLifecycle",
|
981
|
+
"outputs": [],
|
982
|
+
"stateMutability": "nonpayable",
|
983
|
+
"type": "function"
|
984
|
+
},
|
985
|
+
{
|
986
|
+
"inputs": [],
|
987
|
+
"name": "isConsumingScheduledOp",
|
988
|
+
"outputs": [
|
989
|
+
{
|
990
|
+
"internalType": "bytes4",
|
991
|
+
"name": "",
|
992
|
+
"type": "bytes4"
|
993
|
+
}
|
994
|
+
],
|
995
|
+
"stateMutability": "view",
|
996
|
+
"type": "function"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"inputs": [
|
1000
|
+
{
|
1001
|
+
"internalType": "ObjectType",
|
1002
|
+
"name": "objectType",
|
1003
|
+
"type": "uint8"
|
1004
|
+
},
|
1005
|
+
{
|
1006
|
+
"internalType": "StateId",
|
1007
|
+
"name": "fromId",
|
1008
|
+
"type": "uint8"
|
1009
|
+
},
|
1010
|
+
{
|
1011
|
+
"internalType": "StateId",
|
1012
|
+
"name": "toId",
|
1013
|
+
"type": "uint8"
|
1014
|
+
}
|
1015
|
+
],
|
1016
|
+
"name": "isValidTransition",
|
1017
|
+
"outputs": [
|
1018
|
+
{
|
1019
|
+
"internalType": "bool",
|
1020
|
+
"name": "",
|
1021
|
+
"type": "bool"
|
1022
|
+
}
|
1023
|
+
],
|
1024
|
+
"stateMutability": "view",
|
1025
|
+
"type": "function"
|
1026
|
+
},
|
1027
|
+
{
|
1028
|
+
"inputs": [
|
1029
|
+
{
|
1030
|
+
"internalType": "NftId",
|
1031
|
+
"name": "nftId",
|
1032
|
+
"type": "uint96"
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
"internalType": "Amount",
|
1036
|
+
"name": "rewardIncrementAmount",
|
1037
|
+
"type": "uint96"
|
1038
|
+
}
|
1039
|
+
],
|
1040
|
+
"name": "restakeRewards",
|
1041
|
+
"outputs": [],
|
1042
|
+
"stateMutability": "nonpayable",
|
1043
|
+
"type": "function"
|
1044
|
+
},
|
1045
|
+
{
|
1046
|
+
"inputs": [
|
1047
|
+
{
|
1048
|
+
"internalType": "address",
|
1049
|
+
"name": "newAuthority",
|
1050
|
+
"type": "address"
|
1051
|
+
}
|
1052
|
+
],
|
1053
|
+
"name": "setAuthority",
|
1054
|
+
"outputs": [],
|
1055
|
+
"stateMutability": "nonpayable",
|
1056
|
+
"type": "function"
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
"inputs": [
|
1060
|
+
{
|
1061
|
+
"internalType": "ObjectType",
|
1062
|
+
"name": "objectType",
|
1063
|
+
"type": "uint8"
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
"internalType": "KeyId",
|
1067
|
+
"name": "id",
|
1068
|
+
"type": "bytes31"
|
1069
|
+
}
|
1070
|
+
],
|
1071
|
+
"name": "toKey32",
|
1072
|
+
"outputs": [
|
1073
|
+
{
|
1074
|
+
"internalType": "Key32",
|
1075
|
+
"name": "",
|
1076
|
+
"type": "bytes32"
|
1077
|
+
}
|
1078
|
+
],
|
1079
|
+
"stateMutability": "pure",
|
1080
|
+
"type": "function"
|
1081
|
+
},
|
1082
|
+
{
|
1083
|
+
"inputs": [
|
1084
|
+
{
|
1085
|
+
"internalType": "NftId",
|
1086
|
+
"name": "nftId",
|
1087
|
+
"type": "uint96"
|
1088
|
+
},
|
1089
|
+
{
|
1090
|
+
"internalType": "Amount",
|
1091
|
+
"name": "maxUnstakeAmount",
|
1092
|
+
"type": "uint96"
|
1093
|
+
},
|
1094
|
+
{
|
1095
|
+
"internalType": "Amount",
|
1096
|
+
"name": "maxClaimAmount",
|
1097
|
+
"type": "uint96"
|
1098
|
+
}
|
1099
|
+
],
|
1100
|
+
"name": "unstakeUpTo",
|
1101
|
+
"outputs": [
|
1102
|
+
{
|
1103
|
+
"internalType": "Amount",
|
1104
|
+
"name": "unstakedAmount",
|
1105
|
+
"type": "uint96"
|
1106
|
+
},
|
1107
|
+
{
|
1108
|
+
"internalType": "Amount",
|
1109
|
+
"name": "claimedAmount",
|
1110
|
+
"type": "uint96"
|
1111
|
+
}
|
1112
|
+
],
|
1113
|
+
"stateMutability": "nonpayable",
|
1114
|
+
"type": "function"
|
1115
|
+
},
|
1116
|
+
{
|
1117
|
+
"inputs": [
|
1118
|
+
{
|
1119
|
+
"internalType": "NftId",
|
1120
|
+
"name": "stakeNftId",
|
1121
|
+
"type": "uint96"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"components": [
|
1125
|
+
{
|
1126
|
+
"internalType": "Timestamp",
|
1127
|
+
"name": "lockedUntil",
|
1128
|
+
"type": "uint40"
|
1129
|
+
}
|
1130
|
+
],
|
1131
|
+
"internalType": "struct IStaking.StakeInfo",
|
1132
|
+
"name": "stakeInfo",
|
1133
|
+
"type": "tuple"
|
1134
|
+
}
|
1135
|
+
],
|
1136
|
+
"name": "update",
|
1137
|
+
"outputs": [],
|
1138
|
+
"stateMutability": "nonpayable",
|
1139
|
+
"type": "function"
|
1140
|
+
},
|
1141
|
+
{
|
1142
|
+
"inputs": [
|
1143
|
+
{
|
1144
|
+
"internalType": "NftId",
|
1145
|
+
"name": "nftId",
|
1146
|
+
"type": "uint96"
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
"internalType": "Amount",
|
1150
|
+
"name": "rewardIncrementAmount",
|
1151
|
+
"type": "uint96"
|
1152
|
+
}
|
1153
|
+
],
|
1154
|
+
"name": "updateRewards",
|
1155
|
+
"outputs": [],
|
1156
|
+
"stateMutability": "nonpayable",
|
1157
|
+
"type": "function"
|
1158
|
+
},
|
1159
|
+
{
|
1160
|
+
"inputs": [
|
1161
|
+
{
|
1162
|
+
"internalType": "NftId",
|
1163
|
+
"name": "targetNftId",
|
1164
|
+
"type": "uint96"
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
"components": [
|
1168
|
+
{
|
1169
|
+
"internalType": "ObjectType",
|
1170
|
+
"name": "objectType",
|
1171
|
+
"type": "uint8"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"internalType": "uint256",
|
1175
|
+
"name": "chainId",
|
1176
|
+
"type": "uint256"
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"internalType": "Seconds",
|
1180
|
+
"name": "lockingPeriod",
|
1181
|
+
"type": "uint40"
|
1182
|
+
},
|
1183
|
+
{
|
1184
|
+
"internalType": "UFixed",
|
1185
|
+
"name": "rewardRate",
|
1186
|
+
"type": "uint256"
|
1187
|
+
}
|
1188
|
+
],
|
1189
|
+
"internalType": "struct IStaking.TargetInfo",
|
1190
|
+
"name": "targetInfo",
|
1191
|
+
"type": "tuple"
|
1192
|
+
}
|
1193
|
+
],
|
1194
|
+
"name": "updateTarget",
|
1195
|
+
"outputs": [],
|
1196
|
+
"stateMutability": "nonpayable",
|
1197
|
+
"type": "function"
|
1198
|
+
}
|
1199
|
+
],
|
1200
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506040516200562d3803806200562d83398101604081905262000034916200018a565b816200004081620000fd565b50600480546001600160a01b0319166001600160a01b0383161790556040516200006a9062000151565b604051809103906000f08015801562000087573d6000803e3d6000fd5b50600680546001600160a01b0319166001600160a01b0392909216919091179055604051620000b6906200015f565b604051809103906000f080158015620000d3573d6000803e3d6000fd5b50600580546001600160a01b0319166001600160a01b039290921691909117905550620001c29050565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b6111338062003d7f83390190565b61077b8062004eb283390190565b80516001600160a01b03811681146200018557600080fd5b919050565b600080604083850312156200019e57600080fd5b620001a9836200016d565b9150620001b9602084016200016d565b90509250929050565b613bad80620001d26000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637eb71df411610104578063bf1db3f9116100a2578063e9e96c7011610071578063e9e96c70146105c0578063f48016ce146105fe578063faaf71551461061f578063fb1454321461063257600080fd5b8063bf1db3f914610523578063bf7e214f14610536578063dfb7e33714610547578063e4b23d6b1461058d57600080fd5b80638fb36037116100de5780638fb36037146103d6578063a5961b4c146103f7578063a8989675146104a8578063b918ae88146104bb57600080fd5b80637eb71df41461039057806387fe5abb146103a35780638eaa6ac0146103b657600080fd5b80634b51da0c1161017c57806363fe327a1161014b57806363fe327a1461031557806365d467a914610326578063717f1b98146103395780637a9e5e4b1461037d57600080fd5b80634b51da0c146102aa5780634f9c1c09146102bd57806354f6127f146102d05780636291423a146102f057600080fd5b80632df8be9b116101b85780632df8be9b1461025957806338a699a41461026c5780633cacf20b1461028f578063468bce06146102a257600080fd5b806309648a9d146101df5780630d3581811461021e5780631807a48814610244575b600080fd5b6102076101ed366004613533565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b61020761022c36600461355e565b60ff9081166000908152600160205260409020541690565b6102576102523660046135b9565b61065e565b005b6102576102673660046135b9565b610750565b61027f61027a366004613533565b610916565b6040519015158152602001610215565b61025761029d3660046136a1565b6109a7565b610257610a67565b6102576102b83660046136eb565b610a99565b61027f6102cb366004613721565b610b4a565b6102e36102de366004613533565b610be5565b6040516102159190613784565b6006546001600160a01b03165b6040516001600160a01b039091168152602001610215565b6005546001600160a01b03166102fd565b610257610334366004613797565b610c8a565b610365610347366004613721565b6001600160601b039081166000908152600860205260409020541690565b6040516001600160601b039091168152602001610215565b61025761038b3660046137d0565b610f54565b61036561039e366004613797565b610fca565b6102576103b1366004613797565b6112ed565b6103c96103c4366004613533565b611693565b6040516102159190613843565b6103de6117d4565b6040516001600160e01b03199091168152602001610215565b61049b610405366004613533565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260036020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516102159190613877565b6102576104b6366004613885565b6117fa565b6104fe6104c9366004613721565b6001600160601b0390811660009081526007602090815260408083205460099092529091205491169164ffffffffff90911690565b604080516001600160601b03909316835264ffffffffff909116602083015201610215565b61027f61053136600461355e565b6118eb565b6000546001600160a01b03166102fd565b610577610555366004613721565b6001600160601b031660009081526009602052604090205464ffffffffff1690565b60405164ffffffffff9091168152602001610215565b6105a061059b3660046138c5565b611938565b604080516001600160601b03938416815292909116602083015201610215565b61027f6105ce366004613885565b60ff9283166000908152600260209081526040808320948616835293815283822092851682529190915220541690565b61061161060c366004613905565b611d51565b604051908152602001610215565b61025761062d3660046138c5565b611ddb565b610365610640366004613721565b6001600160601b039081166000908152600760205260409020541690565b61074c73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190613933565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b60405160208183030381529060405261074760ff90565b612224565b5050565b61083673__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156107c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e99190613933565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b604051602081830303815290604052612399565b6108ac8273__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a7919061394c565b612778565b6005546040516346f0e8a760e11b81526001600160601b03841660048201526001600160a01b0390911690638de1d14e90602401600060405180830381600087803b1580156108fa57600080fd5b505af115801561090e573d6000803e3d6000fd5b505050505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af415801561097d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a19190613969565b92915050565b610a5873__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03861660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a409190613933565b60408051855164ffffffffff16602082015201610822565b610a628382612778565b505050565b610a6f612a73565b610a77612ac1565b610a7f612be4565b610a87612cd8565b610a8f612e0f565b610a97612f3b565b565b61074c73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610b0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b329190613933565b60408051845164ffffffffff16602082015201610730565b60006109a173__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610bc1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061027a9190613933565b6000818152600360205260409020600101805460609190610c059061398b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c319061398b565b8015610c7e5780601f10610c5357610100808354040283529160200191610c7e565b820191906000526020600020905b815481529060010190602001808311610c6157829003601f168201915b50505050509050919050565b6001600160601b038281166000908152600a602090815260408083205460089092529182902054915163010bd26b60e61b815263ffffffff9091166004820181905292919091169073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af4158015610d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d329190613969565b15610d6057604051631f7e16df60e01b81526001600160601b03851660048201526024015b60405180910390fd5b610d6a8184612ff7565b60086000866001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610dfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2091906139c5565b60096000866001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed291906139e2565b6001600160601b038581166000908152600a60209081526040808320805463ffffffff191663ffffffff9690961695909517909455600890528290205491517f9824c1941460e3f3dca0007309b88a95f4fb73bd9628ee7ad0a528b100983c7992610f469288928892909116908790613a08565b60405180910390a150505050565b60005433906001600160a01b03168114610f8b5760405162d1953b60e31b81526001600160a01b0382166004820152602401610d57565b816001600160a01b03163b600003610fc1576040516361798f2f60e11b81526001600160a01b0383166004820152602401610d57565b61074c8261307f565b6001600160601b0382166000908152600a602052604080822054905163010bd26b60e61b815263ffffffff9091166004820181905290829073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af415801561103e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110629190613969565b1561108b57604051631f7e16df60e01b81526001600160601b0386166004820152602401610d57565b6001600160601b038086166000908152600860205260409020546110b1918691166130d3565b156110d8576001600160601b038086166000908152600860205260409020541692506110dc565b8392505b6001600160601b0380861660009081526008602052604090205461110191168461315a565b60086000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611193573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b791906139c5565b60096000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611245573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126991906139e2565b6001600160601b038681166000908152600a60209081526040808320805463ffffffff191663ffffffff9690961695909517909455600890528290205491517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef926112dd9289928892909116908790613a08565b60405180910390a1505092915050565b6001600160601b038281166000908152600a6020908152604080832054600783528184205460089093529281902054905163010bd26b60e61b815263ffffffff90931660048401819052939182169291169073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af415801561137b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139f9190613969565b156113c857604051631f7e16df60e01b81526001600160601b0386166004820152602401610d57565b6113db6113d58383612ff7565b85612ff7565b60076000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561146d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611491919061394c565b60086000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611523573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154791906139c5565b60096000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156115d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f991906139e2565b6001600160601b038681166000818152600a60209081526040808320805463ffffffff191663ffffffff978816179055600782529182902054825193845287851691840191909152858416838301528884166060840152909216608082015291851660a0830152517ff3a6a30356c886f04fc20380e987b6e55a1e83a7926e1a21ee6001faced599c99160c0908290030190a15050505050565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260036020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c0820152928352600181018054919284019161174b9061398b565b80601f01602080910402602001604051908101604052809291908181526020018280546117779061398b565b80156117c45780601f10611799576101008083540402835291602001916117c4565b820191906000526020600020905b8154815290600101906020018083116117a757829003601f168201915b5050505050815250509050919050565b60008054600160a01b900460ff166117ec5750600090565b638fb3603760e01b5b905090565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561185f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118839190613969565b1561188d57505050565b60ff808416600090815260026020908152604080832086851684528252808320858516845290915290205416610a6257604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610d57565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610960565b6001600160601b0383166000908152600a602052604080822054905163010bd26b60e61b815263ffffffff909116600482018190528291829073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af41580156119ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d19190613969565b156119fa57604051631f7e16df60e01b81526001600160601b0388166004820152602401610d57565b6001600160601b03808816600090815260086020526040902054611a20918891166130d3565b15611a47576001600160601b03808816600090815260086020526040902054169350611a4b565b8593505b6001600160601b03808816600090815260086020526040902054611a71918791166130d3565b15611a98576001600160601b03808816600090815260086020526040902054169250611a9c565b8492505b6001600160601b03808816600090815260076020526040902054611ac191168561315a565b6001600160601b03888116600090815260076020908152604080832080546001600160601b03191695851695909517909455600890529190912054611b0791168461315a565b60086000896001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbd91906139c5565b60096000896001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c6f91906139e2565b6001600160601b038881166000908152600a60209081526040808320805463ffffffff191663ffffffff9690961695909517909455600790528290205491517f4d67c2532a3443dbc1612538256c1fb6566afcd9729bf99254b26aef3b953cdd92611ce3928b928992909116908790613a08565b60405180910390a16001600160601b03808816600090815260086020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef92611d3f928b92889291909116908790613a08565b60405180910390a15050935093915050565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce90604401602060405180830381865af4158015611db0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd49190613933565b9392505050565b6001600160601b0383166000908152600a602052604080822054905163010bd26b60e61b815263ffffffff90911660048201819052919073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af4158015611e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e729190613969565b15611e9b57604051631f7e16df60e01b81526001600160601b0386166004820152602401610d57565b6040516330b8415f60e01b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015611ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f179190613969565b15611fb157506001600160601b03808516600090815260076020526040902054600191611f45911685612ff7565b6001600160601b038681166000908152600760205260409081902080546001600160601b03191693909216928317909155517fa206257df4168139cff2e8dea9c50f2226429e81d904d5ee2b14e4f4656f30f591611fa891889188918790613a08565b60405180910390a15b6040516330b8415f60e01b81526001600160601b038416600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061202d9190613969565b156120c757506001600160601b0380851660009081526008602052604090205460019161205b911684612ff7565b6001600160601b038681166000908152600860205260409081902080546001600160601b03191693909216928317909155517f9824c1941460e3f3dca0007309b88a95f4fb73bd9628ee7ad0a528b100983c79916120be91889187918790613a08565b60405180910390a15b801561221d5773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612116573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061213a91906139c5565b60096000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156121c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ec91906139e2565b6001600160601b0386166000908152600a60205260409020805463ffffffff191663ffffffff929092169190911790555b5050505050565b600061223084836131a5565b600085815260036020526040902090915060010161224e8482613a7d565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156122c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e59190613b3d565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123599190613b5a565b6040805160ff938416815260ff1990921660208301529185169181019190915233606082015232608082015263ffffffff831660a082015260c001610f46565b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156123ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124109190613b3d565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015612465573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124899190613969565b156124ac576040516307014a8d60e51b815260ff82166004820152602401610d57565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015612515573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125399190613969565b1561256357604051633f92eac960e21b81526004810185905260ff83166024820152604401610d57565b33600061256e6134c4565b9050600061257b856118eb565b61258657600461259c565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526003602052604090209091506001016126268782613a7d565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126bd9190613b3d565b604051630713cfad60e31b8152600481018a905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af415801561270d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127319190613b5a565b6040805160ff938416815260ff19929092166020830152918416818301526001600160a01b038616606082015232608082015290519081900360a00190a150505050505050565b6001600160601b0382166000908152600a60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af41580156127e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061280c9190613969565b15612835576040516366d785a360e11b81526001600160601b0383166004820152602401610d57565b6001600160601b0382811660009081526007602090815260409182902080546001600160601b03191693851693909317909255805163bc1b392d60e01b8152905173__$3bac17678db7ae928afa209f2f44deec9c$__9263bc1b392d92600480820193918290030181865af41580156128b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d6919061394c565b60086000846001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298c91906139c5565b60096000846001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3e91906139e2565b6001600160601b03929092166000908152600a60205260409020805463ffffffff191663ffffffff9093169290921790915550565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610a9757604051631afcd79f60e31b815260040160405180910390fd5b7f81c2bf9f7c6e8ac9bd8bcd9d323e94b867d2f5054aff8759d884773c680ec1ec8054600460ff19918216179091557f3bea789071f7022d2e499e6822d37d1c257788cb0571ef6b1f16966b885724a58054821660019081179091557f8a8216ae346f5d8074fa9b37ffd09a4992f4191e502fa1d51d941f5a64f5a25e80548316821790557fe785a33bc32d0e2a5e4b716d847330e9d735b07deed8b2509893b88e2b93b6ab8054909216811790915560dc600090815260026020527f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef090606e5b60ff1660ff1681526020019081526020016000206000612bc060c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c128054600460ff1991821681179092557fd9c9c94fc8f62fb3e9020ec6692ef87cedf81d23b1b13c613db81032a386b9e380548216600190811790915560009283527f0c5b5dcb854d48f82af9a0c0be9f07e9b6b87611330f3e1332370633114b39986020527f4ab3dc03b20370f9434f355300c236010beb3b3b136c6e0dfa03035ced7d908a805490921681179091559060029060645b60ff1660ff1681526020019081526020016000206000612cba606e90565b60ff1660ff1681526020019081526020016000206000612bc060d290565b7f7415b658af57d740454b01d91722f71a360db8fdd5ec2a068a92c37e2bc3b1d68054600a60ff19918216179091557fab79e80fd729060036ec87a13f874ebb2dc8097341e81335d5f018d31c2230ea8054821660019081179091557f8af8421b7334508d165e28c916d150439f145e2d4404f8d042384995e44da22c80548316821790557f704650e2c2b388c7f42b779fec98a489390951f3660e3a7b2934fe2ad93c296d80548316821790557ffb362930faacff64ed42cd22de657ab2009d6be858da2a0a71ae171c109762b380548316821790557fb19ff17ecc97d518e411a190bae6e3e57c7fe5b7729a8001643e962878c90e948054909216811790915560d3600090815260026020527feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d906004612ba2565b7fb96e7c6ce00677da9e7edc0b5e71a26baf67854c9401b1cb6b18f18ab47e894f805460ff199081166032179091557fe0f799b18ed14704744a6a90b2e266143509ff6f419922f415e020d311a951678054821660019081179091557ff6d470c2fb98eaf5d9d596e96de7d0a691978f6d979b269ca92a53d557258c0480548316821790557ffa53d3f6917a453ff553a8f5724fe00b960b6bd175de8e9a6477d8b5a89f761680548316821790557f77835ececcc7e965708390fdc28b7c7141b063a8a849f3954f1d294d077301848054603c93168317905560009182527f3926cb2852d780b0b027970c63edfde054d1b6dcba3e6f9d5494b62c7dc3deaf602052907fc9e3618963d7dbe07b8b3573182ffa1de8d2f958f5f00fb5340bae64f230e5ef9060dc612bc0565b7f345f7c6c888721344af4147de0834159e0b302300ba13c4e7b6c0b60d8f2314e8054600460ff1991821681179092557f407059394974f4a6e984471ea08a5889d3198ae87d98fbababeea2ec39cee73480548216600190811790915560009283527f6a139e57a9d1f86bc8f0b3d2eb8e45b5b4df08813d7b8752b0f4de25d5e262a66020527fd57fdcc48f6392aa013894061d4db610915b31b9da04e85b3ea48b2024e3a6ae805490921681179091559060029060c8612c9c565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561305b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd4919061394c565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b604051632601631360e21b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015613136573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd49190613969565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa229060440161303e565b60405163037c8cb160e51b815260ff8216600482015260009073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156131fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321e9190613969565b1561323f5760405163093b89e160e11b815260048101849052602401610d57565b50600082815260036020526040908190208054915163037c8cb160e51b8152610100830460ff1660048201819052600160b01b90930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156132b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132dd9190613969565b156132fe5760405163566ebf7960e01b815260048101869052602401610d57565b60ff8085161461347d5781546133189060ff1682866117fa565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801561339c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133c09190613b3d565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015613410573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134349190613b5a565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b815462010000600160b01b03191633620100000217825561349c6134c4565b825463ffffffff91909116600160b01b0263ffffffff60b01b19909116179091555092915050565b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af415801561350f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f591906139e2565b60006020828403121561354557600080fd5b5035919050565b60ff8116811461355b57600080fd5b50565b60006020828403121561357057600080fd5b8135611dd48161354c565b6001600160601b038116811461355b57600080fd5b634e487b7160e01b600052604160045260246000fd5b64ffffffffff8116811461355b57600080fd5b60008082840360a08112156135cd57600080fd5b83356135d88161357b565b92506080601f19820112156135ec57600080fd5b506040516080810181811067ffffffffffffffff8211171561361057613610613590565b60405260208401356136218161354c565b815260408401356020820152606084013561363b816135a6565b60408201526080939093013560608401525092909150565b60006020828403121561366557600080fd5b6040516020810181811067ffffffffffffffff8211171561368857613688613590565b6040529050808235613699816135a6565b905292915050565b6000806000606084860312156136b657600080fd5b83356136c18161357b565b92506136d08560208601613653565b915060408401356136e08161357b565b809150509250925092565b600080604083850312156136fe57600080fd5b82356137098161357b565b91506137188460208501613653565b90509250929050565b60006020828403121561373357600080fd5b8135611dd48161357b565b6000815180845260005b8181101561376457602081850181015186830182015201613748565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611dd4602083018461373e565b600080604083850312156137aa57600080fd5b82356137b58161357b565b915060208301356137c58161357b565b809150509250929050565b6000602082840312156137e257600080fd5b81356001600160a01b0381168114611dd457600080fd5b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b602081526138556020820183516137f9565b6000602083015160c08084015261386f60e084018261373e565b949350505050565b60a081016109a182846137f9565b60008060006060848603121561389a57600080fd5b83356138a58161354c565b925060208401356138b58161354c565b915060408401356136e08161354c565b6000806000606084860312156138da57600080fd5b83356138e58161357b565b925060208401356136d08161357b565b60ff198116811461355b57600080fd5b6000806040838503121561391857600080fd5b82356139238161354c565b915060208301356137c5816138f5565b60006020828403121561394557600080fd5b5051919050565b60006020828403121561395e57600080fd5b8151611dd48161357b565b60006020828403121561397b57600080fd5b81518015158114611dd457600080fd5b600181811c9082168061399f57607f821691505b6020821081036139bf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156139d757600080fd5b8151611dd4816135a6565b6000602082840312156139f457600080fd5b815163ffffffff81168114611dd457600080fd5b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b601f821115610a6257600081815260208120601f850160051c81016020861015613a5e5750805b601f850160051c820191505b8181101561090e57828155600101613a6a565b815167ffffffffffffffff811115613a9757613a97613590565b613aab81613aa5845461398b565b84613a37565b602080601f831160018114613ae05760008415613ac85750858301515b600019600386901b1c1916600185901b17855561090e565b600085815260208120601f198616915b82811015613b0f57888601518255948401946001909101908401613af0565b5085821015613b2d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613b4f57600080fd5b8151611dd48161354c565b600060208284031215613b6c57600080fd5b8151611dd4816138f556fea26469706673582212205e31ead6ddd477f2ec6a8c515773a7a1269ffececeb7d7db382ec05a9a96cb8064736f6c63430008140033608060405234801561001057600080fd5b50611113806100206000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80637b1391a611610097578063bd741a3911610066578063bd741a391461027d578063dfb7e33714610290578063f11b1342146102b9578063fb145432146102ce57600080fd5b80637b1391a614610201578063823e7c6414610212578063a9ea09281461021a578063ba53aee31461026a57600080fd5b806326d60fb4116100d357806326d60fb4146101885780635ab1bd531461019e578063717f1b98146101c3578063777d1857146101ee57600080fd5b806307ccf38c146100fa578063141b5e2a14610128578063269f8ab614610165575b600080fd5b61010d610108366004610c6f565b6102e1565b604051905164ffffffffff1681526020015b60405180910390f35b61013b610136366004610c6f565b610426565b604080519384526001600160601b03909216602084015264ffffffffff169082015260600161011f565b610178610173366004610c6f565b610537565b604051901515815260200161011f565b61019061061f565b60405190815260200161011f565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161011f565b6101d66101d1366004610c6f565b6106f3565b6040516001600160601b03909116815260200161011f565b6101786101fc366004610c6f565b61076a565b6001546001600160a01b03166101ab565b61019061080f565b61022d610228366004610c6f565b6108ba565b60405161011f9190815160ff1681526020808301519082015260408083015164ffffffffff16908201526060918201519181019190915260800190565b6101d6610278366004610c8c565b610a08565b6101d661028b366004610c8c565b610aa3565b6102a361029e366004610c6f565b610b3e565b60405164ffffffffff909116815260200161011f565b6102cc6102c7366004610cba565b610bb4565b005b6101d66102dc366004610c6f565b610c1d565b604080516020810190915260008082526002546001600160a01b03166354f6127f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03871660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610374573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103989190610d05565b6040518263ffffffff1660e01b81526004016103b691815260200190565b600060405180830381865afa1580156103d3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103fb9190810190610e13565b80519091501561042057808060200190518101906104199190610e63565b9392505050565b50919050565b600080546040516305247a1760e51b81526001600160601b03841660048201528291829182916001600160a01b03169063a48f42e090602401600060405180830381865afa15801561047c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104a49190810190610eeb565b6020015190506104b3816108ba565b6060015160025460405163172315d160e31b81526001600160601b03881660048201529195506001600160a01b03169063b918ae88906024016040805180830381865afa158015610508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052c9190610fbe565b949690955092505050565b600254604080516331ff193d60e11b815290516000926001600160a01b0316916363fe327a9160048083019260209291908290030181865afa158015610581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a59190610ff8565b604051634f9c1c0960e01b81526001600160601b03841660048201526001600160a01b039190911690634f9c1c09906024015b602060405180830381865afa1580156105f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106199190611015565b92915050565b600254604080516331ff193d60e11b815290516000926001600160a01b0316916363fe327a9160048083019260209291908290030181865afa158015610669573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068d9190610ff8565b6001600160a01b031663ddfe867f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ee9190610d05565b905090565b600254604051630e2fe37360e31b81526001600160601b03831660048201526000916001600160a01b03169063717f1b98906024015b602060405180830381865afa158015610746573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106199190611030565b600254604080516331ff193d60e11b815290516000926001600160a01b0316916363fe327a9160048083019260209291908290030181865afa1580156107b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d89190610ff8565b60405163777d185760e01b81526001600160601b03841660048201526001600160a01b03919091169063777d1857906024016105d8565b600254604080516331ff193d60e11b815290516000926001600160a01b0316916363fe327a9160048083019260209291908290030181865afa158015610859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087d9190610ff8565b6001600160a01b031663996f8d916040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ca573d6000803e3d6000fd5b60408051608081018252600080825260208201819052918101829052606081018290526002549091906001600160a01b03166354f6127f73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038716601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610963573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109879190610d05565b6040518263ffffffff1660e01b81526004016109a591815260200190565b600060405180830381865afa1580156109c2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109ea9190810190610e13565b8051909150156104205780806020019051810190610419919061104d565b600254604080516331ff193d60e11b815290516000926001600160a01b0316916363fe327a9160048083019260209291908290030181865afa158015610a52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a769190610ff8565b6001600160a01b031663706e9ba9836040518263ffffffff1660e01b815260040161072991815260200190565b600254604080516331ff193d60e11b815290516000926001600160a01b0316916363fe327a9160048083019260209291908290030181865afa158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b119190610ff8565b6001600160a01b031663f2b29781836040518263ffffffff1660e01b815260040161072991815260200190565b60025460405163dfb7e33760e01b81526001600160601b03831660048201526000916001600160a01b03169063dfb7e33790602401602060405180830381865afa158015610b90573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061991906110c0565b6001546001600160a01b031615610bde5760405163051b526b60e21b815260040160405180910390fd5b600080546001600160a01b039485166001600160a01b031991821617909155600180549385169382169390931790925560028054919093169116179055565b600254604051637d8a2a1960e11b81526001600160601b03831660048201526000916001600160a01b03169063fb14543290602401610729565b6001600160601b0381168114610c6c57600080fd5b50565b600060208284031215610c8157600080fd5b813561041981610c57565b600060208284031215610c9e57600080fd5b5035919050565b6001600160a01b0381168114610c6c57600080fd5b600080600060608486031215610ccf57600080fd5b8335610cda81610ca5565b92506020840135610cea81610ca5565b91506040840135610cfa81610ca5565b809150509250925092565b600060208284031215610d1757600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b60405160e0810167ffffffffffffffff81118282101715610d5757610d57610d1e565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715610d8657610d86610d1e565b604052919050565b600082601f830112610d9f57600080fd5b815167ffffffffffffffff811115610db957610db9610d1e565b6020610dcd601f8301601f19168201610d5d565b8281528582848701011115610de157600080fd5b60005b83811015610dff578581018301518282018401528201610de4565b506000928101909101919091529392505050565b600060208284031215610e2557600080fd5b815167ffffffffffffffff811115610e3c57600080fd5b610e4884828501610d8e565b949350505050565b64ffffffffff81168114610c6c57600080fd5b600060208284031215610e7557600080fd5b6040516020810181811067ffffffffffffffff82111715610e9857610e98610d1e565b6040528251610ea681610e50565b81529392505050565b8051610eba81610c57565b919050565b805160ff81168114610eba57600080fd5b80518015158114610eba57600080fd5b8051610eba81610ca5565b600060208284031215610efd57600080fd5b815167ffffffffffffffff80821115610f1557600080fd5b9083019060e08286031215610f2957600080fd5b610f31610d34565b610f3a83610eaf565b8152610f4860208401610eaf565b6020820152610f5960408401610ebf565b6040820152610f6a60608401610ed0565b6060820152610f7b60808401610ee0565b6080820152610f8c60a08401610ee0565b60a082015260c083015182811115610fa357600080fd5b610faf87828601610d8e565b60c08301525095945050505050565b60008060408385031215610fd157600080fd5b8251610fdc81610c57565b6020840151909250610fed81610e50565b809150509250929050565b60006020828403121561100a57600080fd5b815161041981610ca5565b60006020828403121561102757600080fd5b61041982610ed0565b60006020828403121561104257600080fd5b815161041981610c57565b60006080828403121561105f57600080fd5b6040516080810181811067ffffffffffffffff8211171561108257611082610d1e565b60405261108e83610ebf565b81526020830151602082015260408301516110a881610e50565b60408201526060928301519281019290925250919050565b6000602082840312156110d257600080fd5b815161041981610e5056fea264697066735822122062b0809851d673c9ae169d5f544c5f9646d4222aff3cd711025bb66f066884d964736f6c63430008140033608060405234801561001057600080fd5b50600480546001600160a01b03191633179055610749806100326000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80638de1d14e116100665780638de1d14e14610113578063954a317214610126578063996f8d9114610139578063ddfe867f1461014f578063f2b297811461015757600080fd5b8063042f9da3146100985780634f9c1c09146100ad578063706e9ba9146100d5578063777d185714610100575b600080fd5b6100ab6100a6366004610645565b61016a565b005b6100c06100bb36600461067e565b610229565b60405190151581526020015b60405180910390f35b6100e86100e33660046106a2565b6102b6565b6040516001600160601b0390911681526020016100cc565b6100c061010e36600461067e565b610335565b6100ab61012136600461067e565b61037f565b6100ab610134366004610645565b6104a9565b610141610533565b6040519081526020016100cc565b6101416105b0565b6100e86101653660046106a2565b6105eb565b6004546001600160a01b031633146101b25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044015b60405180910390fd5b604051631461054360e31b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a18906044015b60006040518083038186803b15801561020d57600080fd5b505af4158015610221573d6000803e3d6000fd5b505050505050565b604051632bfdd6b960e01b81526000600482018190526001600160601b03831660248301529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b9906044015b602060405180830381865af415801561028c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106bb565b92915050565b60405163e797d89960e01b8152600060048201819052602482018390529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044015b602060405180830381865af4158015610311573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106dd565b604051632bfdd6b960e01b8152600260048201526001600160601b038216602482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b99060440161026f565b6004546001600160a01b031633146103c25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b604051631461054360e31b8152600060048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a189060440160006040518083038186803b15801561041c57600080fd5b505af4158015610430573d6000803e3d6000fd5b5050604051631461054360e31b8152600260048201526001600160601b038416602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__925063a3082a18915060440160006040518083038186803b15801561048e57600080fd5b505af41580156104a2573d6000803e3d6000fd5b5050505050565b6004546001600160a01b031633146104ec5760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b60405163539eabab60e11b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a73d5756906044016101f5565b604051638b6233dd60e01b81526002600482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd906024015b602060405180830381865af4158015610587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ab91906106fa565b905090565b604051638b6233dd60e01b81526000600482018190529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd9060240161056a565b60405163e797d89960e01b8152600260048201526024810182905260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044016102f4565b6001600160601b038116811461064257600080fd5b50565b6000806040838503121561065857600080fd5b82356106638161062d565b915060208301356106738161062d565b809150509250929050565b60006020828403121561069057600080fd5b813561069b8161062d565b9392505050565b6000602082840312156106b457600080fd5b5035919050565b6000602082840312156106cd57600080fd5b8151801515811461069b57600080fd5b6000602082840312156106ef57600080fd5b815161069b8161062d565b60006020828403121561070c57600080fd5b505191905056fea2646970667358221220b9f270b410c5fa6562b853e87870856ca74ad4967edf50da4f1d9a8849587f4064736f6c63430008140033",
|
1201
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637eb71df411610104578063bf1db3f9116100a2578063e9e96c7011610071578063e9e96c70146105c0578063f48016ce146105fe578063faaf71551461061f578063fb1454321461063257600080fd5b8063bf1db3f914610523578063bf7e214f14610536578063dfb7e33714610547578063e4b23d6b1461058d57600080fd5b80638fb36037116100de5780638fb36037146103d6578063a5961b4c146103f7578063a8989675146104a8578063b918ae88146104bb57600080fd5b80637eb71df41461039057806387fe5abb146103a35780638eaa6ac0146103b657600080fd5b80634b51da0c1161017c57806363fe327a1161014b57806363fe327a1461031557806365d467a914610326578063717f1b98146103395780637a9e5e4b1461037d57600080fd5b80634b51da0c146102aa5780634f9c1c09146102bd57806354f6127f146102d05780636291423a146102f057600080fd5b80632df8be9b116101b85780632df8be9b1461025957806338a699a41461026c5780633cacf20b1461028f578063468bce06146102a257600080fd5b806309648a9d146101df5780630d3581811461021e5780631807a48814610244575b600080fd5b6102076101ed366004613533565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b61020761022c36600461355e565b60ff9081166000908152600160205260409020541690565b6102576102523660046135b9565b61065e565b005b6102576102673660046135b9565b610750565b61027f61027a366004613533565b610916565b6040519015158152602001610215565b61025761029d3660046136a1565b6109a7565b610257610a67565b6102576102b83660046136eb565b610a99565b61027f6102cb366004613721565b610b4a565b6102e36102de366004613533565b610be5565b6040516102159190613784565b6006546001600160a01b03165b6040516001600160a01b039091168152602001610215565b6005546001600160a01b03166102fd565b610257610334366004613797565b610c8a565b610365610347366004613721565b6001600160601b039081166000908152600860205260409020541690565b6040516001600160601b039091168152602001610215565b61025761038b3660046137d0565b610f54565b61036561039e366004613797565b610fca565b6102576103b1366004613797565b6112ed565b6103c96103c4366004613533565b611693565b6040516102159190613843565b6103de6117d4565b6040516001600160e01b03199091168152602001610215565b61049b610405366004613533565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260036020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516102159190613877565b6102576104b6366004613885565b6117fa565b6104fe6104c9366004613721565b6001600160601b0390811660009081526007602090815260408083205460099092529091205491169164ffffffffff90911690565b604080516001600160601b03909316835264ffffffffff909116602083015201610215565b61027f61053136600461355e565b6118eb565b6000546001600160a01b03166102fd565b610577610555366004613721565b6001600160601b031660009081526009602052604090205464ffffffffff1690565b60405164ffffffffff9091168152602001610215565b6105a061059b3660046138c5565b611938565b604080516001600160601b03938416815292909116602083015201610215565b61027f6105ce366004613885565b60ff9283166000908152600260209081526040808320948616835293815283822092851682529190915220541690565b61061161060c366004613905565b611d51565b604051908152602001610215565b61025761062d3660046138c5565b611ddb565b610365610640366004613721565b6001600160601b039081166000908152600760205260409020541690565b61074c73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190613933565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b60405160208183030381529060405261074760ff90565b612224565b5050565b61083673__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156107c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e99190613933565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b604051602081830303815290604052612399565b6108ac8273__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a7919061394c565b612778565b6005546040516346f0e8a760e11b81526001600160601b03841660048201526001600160a01b0390911690638de1d14e90602401600060405180830381600087803b1580156108fa57600080fd5b505af115801561090e573d6000803e3d6000fd5b505050505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af415801561097d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a19190613969565b92915050565b610a5873__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03861660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a409190613933565b60408051855164ffffffffff16602082015201610822565b610a628382612778565b505050565b610a6f612a73565b610a77612ac1565b610a7f612be4565b610a87612cd8565b610a8f612e0f565b610a97612f3b565b565b61074c73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610b0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b329190613933565b60408051845164ffffffffff16602082015201610730565b60006109a173__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660506040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610bc1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061027a9190613933565b6000818152600360205260409020600101805460609190610c059061398b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c319061398b565b8015610c7e5780601f10610c5357610100808354040283529160200191610c7e565b820191906000526020600020905b815481529060010190602001808311610c6157829003601f168201915b50505050509050919050565b6001600160601b038281166000908152600a602090815260408083205460089092529182902054915163010bd26b60e61b815263ffffffff9091166004820181905292919091169073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af4158015610d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d329190613969565b15610d6057604051631f7e16df60e01b81526001600160601b03851660048201526024015b60405180910390fd5b610d6a8184612ff7565b60086000866001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610dfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2091906139c5565b60096000866001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed291906139e2565b6001600160601b038581166000908152600a60209081526040808320805463ffffffff191663ffffffff9690961695909517909455600890528290205491517f9824c1941460e3f3dca0007309b88a95f4fb73bd9628ee7ad0a528b100983c7992610f469288928892909116908790613a08565b60405180910390a150505050565b60005433906001600160a01b03168114610f8b5760405162d1953b60e31b81526001600160a01b0382166004820152602401610d57565b816001600160a01b03163b600003610fc1576040516361798f2f60e11b81526001600160a01b0383166004820152602401610d57565b61074c8261307f565b6001600160601b0382166000908152600a602052604080822054905163010bd26b60e61b815263ffffffff9091166004820181905290829073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af415801561103e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110629190613969565b1561108b57604051631f7e16df60e01b81526001600160601b0386166004820152602401610d57565b6001600160601b038086166000908152600860205260409020546110b1918691166130d3565b156110d8576001600160601b038086166000908152600860205260409020541692506110dc565b8392505b6001600160601b0380861660009081526008602052604090205461110191168461315a565b60086000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611193573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b791906139c5565b60096000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611245573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126991906139e2565b6001600160601b038681166000908152600a60209081526040808320805463ffffffff191663ffffffff9690961695909517909455600890528290205491517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef926112dd9289928892909116908790613a08565b60405180910390a1505092915050565b6001600160601b038281166000908152600a6020908152604080832054600783528184205460089093529281902054905163010bd26b60e61b815263ffffffff90931660048401819052939182169291169073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af415801561137b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139f9190613969565b156113c857604051631f7e16df60e01b81526001600160601b0386166004820152602401610d57565b6113db6113d58383612ff7565b85612ff7565b60076000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561146d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611491919061394c565b60086000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611523573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154791906139c5565b60096000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156115d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f991906139e2565b6001600160601b038681166000818152600a60209081526040808320805463ffffffff191663ffffffff978816179055600782529182902054825193845287851691840191909152858416838301528884166060840152909216608082015291851660a0830152517ff3a6a30356c886f04fc20380e987b6e55a1e83a7926e1a21ee6001faced599c99160c0908290030190a15050505050565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260036020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c0820152928352600181018054919284019161174b9061398b565b80601f01602080910402602001604051908101604052809291908181526020018280546117779061398b565b80156117c45780601f10611799576101008083540402835291602001916117c4565b820191906000526020600020905b8154815290600101906020018083116117a757829003601f168201915b5050505050815250509050919050565b60008054600160a01b900460ff166117ec5750600090565b638fb3603760e01b5b905090565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561185f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118839190613969565b1561188d57505050565b60ff808416600090815260026020908152604080832086851684528252808320858516845290915290205416610a6257604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610d57565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610960565b6001600160601b0383166000908152600a602052604080822054905163010bd26b60e61b815263ffffffff909116600482018190528291829073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af41580156119ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d19190613969565b156119fa57604051631f7e16df60e01b81526001600160601b0388166004820152602401610d57565b6001600160601b03808816600090815260086020526040902054611a20918891166130d3565b15611a47576001600160601b03808816600090815260086020526040902054169350611a4b565b8593505b6001600160601b03808816600090815260086020526040902054611a71918791166130d3565b15611a98576001600160601b03808816600090815260086020526040902054169250611a9c565b8492505b6001600160601b03808816600090815260076020526040902054611ac191168561315a565b6001600160601b03888116600090815260076020908152604080832080546001600160601b03191695851695909517909455600890529190912054611b0791168461315a565b60086000896001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbd91906139c5565b60096000896001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c6f91906139e2565b6001600160601b038881166000908152600a60209081526040808320805463ffffffff191663ffffffff9690961695909517909455600790528290205491517f4d67c2532a3443dbc1612538256c1fb6566afcd9729bf99254b26aef3b953cdd92611ce3928b928992909116908790613a08565b60405180910390a16001600160601b03808816600090815260086020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef92611d3f928b92889291909116908790613a08565b60405180910390a15050935093915050565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce90604401602060405180830381865af4158015611db0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd49190613933565b9392505050565b6001600160601b0383166000908152600a602052604080822054905163010bd26b60e61b815263ffffffff90911660048201819052919073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af4158015611e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e729190613969565b15611e9b57604051631f7e16df60e01b81526001600160601b0386166004820152602401610d57565b6040516330b8415f60e01b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015611ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f179190613969565b15611fb157506001600160601b03808516600090815260076020526040902054600191611f45911685612ff7565b6001600160601b038681166000908152600760205260409081902080546001600160601b03191693909216928317909155517fa206257df4168139cff2e8dea9c50f2226429e81d904d5ee2b14e4f4656f30f591611fa891889188918790613a08565b60405180910390a15b6040516330b8415f60e01b81526001600160601b038416600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061202d9190613969565b156120c757506001600160601b0380851660009081526008602052604090205460019161205b911684612ff7565b6001600160601b038681166000908152600860205260409081902080546001600160601b03191693909216928317909155517f9824c1941460e3f3dca0007309b88a95f4fb73bd9628ee7ad0a528b100983c79916120be91889187918790613a08565b60405180910390a15b801561221d5773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612116573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061213a91906139c5565b60096000876001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156121c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ec91906139e2565b6001600160601b0386166000908152600a60205260409020805463ffffffff191663ffffffff929092169190911790555b5050505050565b600061223084836131a5565b600085815260036020526040902090915060010161224e8482613a7d565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156122c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e59190613b3d565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123599190613b5a565b6040805160ff938416815260ff1990921660208301529185169181019190915233606082015232608082015263ffffffff831660a082015260c001610f46565b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156123ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124109190613b3d565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015612465573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124899190613969565b156124ac576040516307014a8d60e51b815260ff82166004820152602401610d57565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015612515573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125399190613969565b1561256357604051633f92eac960e21b81526004810185905260ff83166024820152604401610d57565b33600061256e6134c4565b9050600061257b856118eb565b61258657600461259c565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526003602052604090209091506001016126268782613a7d565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126bd9190613b3d565b604051630713cfad60e31b8152600481018a905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af415801561270d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127319190613b5a565b6040805160ff938416815260ff19929092166020830152918416818301526001600160a01b038616606082015232608082015290519081900360a00190a150505050505050565b6001600160601b0382166000908152600a60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af41580156127e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061280c9190613969565b15612835576040516366d785a360e11b81526001600160601b0383166004820152602401610d57565b6001600160601b0382811660009081526007602090815260409182902080546001600160601b03191693851693909317909255805163bc1b392d60e01b8152905173__$3bac17678db7ae928afa209f2f44deec9c$__9263bc1b392d92600480820193918290030181865af41580156128b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d6919061394c565b60086000846001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298c91906139c5565b60096000846001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3e91906139e2565b6001600160601b03929092166000908152600a60205260409020805463ffffffff191663ffffffff9093169290921790915550565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610a9757604051631afcd79f60e31b815260040160405180910390fd5b7f81c2bf9f7c6e8ac9bd8bcd9d323e94b867d2f5054aff8759d884773c680ec1ec8054600460ff19918216179091557f3bea789071f7022d2e499e6822d37d1c257788cb0571ef6b1f16966b885724a58054821660019081179091557f8a8216ae346f5d8074fa9b37ffd09a4992f4191e502fa1d51d941f5a64f5a25e80548316821790557fe785a33bc32d0e2a5e4b716d847330e9d735b07deed8b2509893b88e2b93b6ab8054909216811790915560dc600090815260026020527f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef090606e5b60ff1660ff1681526020019081526020016000206000612bc060c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c128054600460ff1991821681179092557fd9c9c94fc8f62fb3e9020ec6692ef87cedf81d23b1b13c613db81032a386b9e380548216600190811790915560009283527f0c5b5dcb854d48f82af9a0c0be9f07e9b6b87611330f3e1332370633114b39986020527f4ab3dc03b20370f9434f355300c236010beb3b3b136c6e0dfa03035ced7d908a805490921681179091559060029060645b60ff1660ff1681526020019081526020016000206000612cba606e90565b60ff1660ff1681526020019081526020016000206000612bc060d290565b7f7415b658af57d740454b01d91722f71a360db8fdd5ec2a068a92c37e2bc3b1d68054600a60ff19918216179091557fab79e80fd729060036ec87a13f874ebb2dc8097341e81335d5f018d31c2230ea8054821660019081179091557f8af8421b7334508d165e28c916d150439f145e2d4404f8d042384995e44da22c80548316821790557f704650e2c2b388c7f42b779fec98a489390951f3660e3a7b2934fe2ad93c296d80548316821790557ffb362930faacff64ed42cd22de657ab2009d6be858da2a0a71ae171c109762b380548316821790557fb19ff17ecc97d518e411a190bae6e3e57c7fe5b7729a8001643e962878c90e948054909216811790915560d3600090815260026020527feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d906004612ba2565b7fb96e7c6ce00677da9e7edc0b5e71a26baf67854c9401b1cb6b18f18ab47e894f805460ff199081166032179091557fe0f799b18ed14704744a6a90b2e266143509ff6f419922f415e020d311a951678054821660019081179091557ff6d470c2fb98eaf5d9d596e96de7d0a691978f6d979b269ca92a53d557258c0480548316821790557ffa53d3f6917a453ff553a8f5724fe00b960b6bd175de8e9a6477d8b5a89f761680548316821790557f77835ececcc7e965708390fdc28b7c7141b063a8a849f3954f1d294d077301848054603c93168317905560009182527f3926cb2852d780b0b027970c63edfde054d1b6dcba3e6f9d5494b62c7dc3deaf602052907fc9e3618963d7dbe07b8b3573182ffa1de8d2f958f5f00fb5340bae64f230e5ef9060dc612bc0565b7f345f7c6c888721344af4147de0834159e0b302300ba13c4e7b6c0b60d8f2314e8054600460ff1991821681179092557f407059394974f4a6e984471ea08a5889d3198ae87d98fbababeea2ec39cee73480548216600190811790915560009283527f6a139e57a9d1f86bc8f0b3d2eb8e45b5b4df08813d7b8752b0f4de25d5e262a66020527fd57fdcc48f6392aa013894061d4db610915b31b9da04e85b3ea48b2024e3a6ae805490921681179091559060029060c8612c9c565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561305b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd4919061394c565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b604051632601631360e21b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015613136573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd49190613969565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa229060440161303e565b60405163037c8cb160e51b815260ff8216600482015260009073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156131fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321e9190613969565b1561323f5760405163093b89e160e11b815260048101849052602401610d57565b50600082815260036020526040908190208054915163037c8cb160e51b8152610100830460ff1660048201819052600160b01b90930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156132b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132dd9190613969565b156132fe5760405163566ebf7960e01b815260048101869052602401610d57565b60ff8085161461347d5781546133189060ff1682866117fa565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801561339c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133c09190613b3d565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015613410573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134349190613b5a565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b815462010000600160b01b03191633620100000217825561349c6134c4565b825463ffffffff91909116600160b01b0263ffffffff60b01b19909116179091555092915050565b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af415801561350f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f591906139e2565b60006020828403121561354557600080fd5b5035919050565b60ff8116811461355b57600080fd5b50565b60006020828403121561357057600080fd5b8135611dd48161354c565b6001600160601b038116811461355b57600080fd5b634e487b7160e01b600052604160045260246000fd5b64ffffffffff8116811461355b57600080fd5b60008082840360a08112156135cd57600080fd5b83356135d88161357b565b92506080601f19820112156135ec57600080fd5b506040516080810181811067ffffffffffffffff8211171561361057613610613590565b60405260208401356136218161354c565b815260408401356020820152606084013561363b816135a6565b60408201526080939093013560608401525092909150565b60006020828403121561366557600080fd5b6040516020810181811067ffffffffffffffff8211171561368857613688613590565b6040529050808235613699816135a6565b905292915050565b6000806000606084860312156136b657600080fd5b83356136c18161357b565b92506136d08560208601613653565b915060408401356136e08161357b565b809150509250925092565b600080604083850312156136fe57600080fd5b82356137098161357b565b91506137188460208501613653565b90509250929050565b60006020828403121561373357600080fd5b8135611dd48161357b565b6000815180845260005b8181101561376457602081850181015186830182015201613748565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611dd4602083018461373e565b600080604083850312156137aa57600080fd5b82356137b58161357b565b915060208301356137c58161357b565b809150509250929050565b6000602082840312156137e257600080fd5b81356001600160a01b0381168114611dd457600080fd5b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b602081526138556020820183516137f9565b6000602083015160c08084015261386f60e084018261373e565b949350505050565b60a081016109a182846137f9565b60008060006060848603121561389a57600080fd5b83356138a58161354c565b925060208401356138b58161354c565b915060408401356136e08161354c565b6000806000606084860312156138da57600080fd5b83356138e58161357b565b925060208401356136d08161357b565b60ff198116811461355b57600080fd5b6000806040838503121561391857600080fd5b82356139238161354c565b915060208301356137c5816138f5565b60006020828403121561394557600080fd5b5051919050565b60006020828403121561395e57600080fd5b8151611dd48161357b565b60006020828403121561397b57600080fd5b81518015158114611dd457600080fd5b600181811c9082168061399f57607f821691505b6020821081036139bf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156139d757600080fd5b8151611dd4816135a6565b6000602082840312156139f457600080fd5b815163ffffffff81168114611dd457600080fd5b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b601f821115610a6257600081815260208120601f850160051c81016020861015613a5e5750805b601f850160051c820191505b8181101561090e57828155600101613a6a565b815167ffffffffffffffff811115613a9757613a97613590565b613aab81613aa5845461398b565b84613a37565b602080601f831160018114613ae05760008415613ac85750858301515b600019600386901b1c1916600185901b17855561090e565b600085815260208120601f198616915b82811015613b0f57888601518255948401946001909101908401613af0565b5085821015613b2d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613b4f57600080fd5b8151611dd48161354c565b600060208284031215613b6c57600080fd5b8151611dd4816138f556fea26469706673582212205e31ead6ddd477f2ec6a8c515773a7a1269ffececeb7d7db382ec05a9a96cb8064736f6c63430008140033",
|
1202
|
+
"linkReferences": {
|
1203
|
+
"contracts/type/Amount.sol": {
|
1204
|
+
"AmountLib": [
|
1205
|
+
{
|
1206
|
+
"length": 20,
|
1207
|
+
"start": 2574
|
1208
|
+
},
|
1209
|
+
{
|
1210
|
+
"length": 20,
|
1211
|
+
"start": 5624
|
1212
|
+
},
|
1213
|
+
{
|
1214
|
+
"length": 20,
|
1215
|
+
"start": 8331
|
1216
|
+
},
|
1217
|
+
{
|
1218
|
+
"length": 20,
|
1219
|
+
"start": 8609
|
1220
|
+
},
|
1221
|
+
{
|
1222
|
+
"length": 20,
|
1223
|
+
"start": 10826
|
1224
|
+
},
|
1225
|
+
{
|
1226
|
+
"length": 20,
|
1227
|
+
"start": 12786
|
1228
|
+
},
|
1229
|
+
{
|
1230
|
+
"length": 20,
|
1231
|
+
"start": 13006
|
1232
|
+
},
|
1233
|
+
{
|
1234
|
+
"length": 20,
|
1235
|
+
"start": 13141
|
1236
|
+
}
|
1237
|
+
]
|
1238
|
+
},
|
1239
|
+
"contracts/type/Blocknumber.sol": {
|
1240
|
+
"BlocknumberLib": [
|
1241
|
+
{
|
1242
|
+
"length": 20,
|
1243
|
+
"start": 3750
|
1244
|
+
},
|
1245
|
+
{
|
1246
|
+
"length": 20,
|
1247
|
+
"start": 4153
|
1248
|
+
},
|
1249
|
+
{
|
1250
|
+
"length": 20,
|
1251
|
+
"start": 4566
|
1252
|
+
},
|
1253
|
+
{
|
1254
|
+
"length": 20,
|
1255
|
+
"start": 5072
|
1256
|
+
},
|
1257
|
+
{
|
1258
|
+
"length": 20,
|
1259
|
+
"start": 5395
|
1260
|
+
},
|
1261
|
+
{
|
1262
|
+
"length": 20,
|
1263
|
+
"start": 5984
|
1264
|
+
},
|
1265
|
+
{
|
1266
|
+
"length": 20,
|
1267
|
+
"start": 6981
|
1268
|
+
},
|
1269
|
+
{
|
1270
|
+
"length": 20,
|
1271
|
+
"start": 7638
|
1272
|
+
},
|
1273
|
+
{
|
1274
|
+
"length": 20,
|
1275
|
+
"start": 8166
|
1276
|
+
},
|
1277
|
+
{
|
1278
|
+
"length": 20,
|
1279
|
+
"start": 9043
|
1280
|
+
},
|
1281
|
+
{
|
1282
|
+
"length": 20,
|
1283
|
+
"start": 10624
|
1284
|
+
},
|
1285
|
+
{
|
1286
|
+
"length": 20,
|
1287
|
+
"start": 11173
|
1288
|
+
},
|
1289
|
+
{
|
1290
|
+
"length": 20,
|
1291
|
+
"start": 13978
|
1292
|
+
}
|
1293
|
+
]
|
1294
|
+
},
|
1295
|
+
"contracts/type/Key32.sol": {
|
1296
|
+
"Key32Lib": [
|
1297
|
+
{
|
1298
|
+
"length": 20,
|
1299
|
+
"start": 8008
|
1300
|
+
},
|
1301
|
+
{
|
1302
|
+
"length": 20,
|
1303
|
+
"start": 9305
|
1304
|
+
},
|
1305
|
+
{
|
1306
|
+
"length": 20,
|
1307
|
+
"start": 9421
|
1308
|
+
},
|
1309
|
+
{
|
1310
|
+
"length": 20,
|
1311
|
+
"start": 9604
|
1312
|
+
},
|
1313
|
+
{
|
1314
|
+
"length": 20,
|
1315
|
+
"start": 10289
|
1316
|
+
},
|
1317
|
+
{
|
1318
|
+
"length": 20,
|
1319
|
+
"start": 10405
|
1320
|
+
},
|
1321
|
+
{
|
1322
|
+
"length": 20,
|
1323
|
+
"start": 13620
|
1324
|
+
},
|
1325
|
+
{
|
1326
|
+
"length": 20,
|
1327
|
+
"start": 13736
|
1328
|
+
}
|
1329
|
+
]
|
1330
|
+
},
|
1331
|
+
"contracts/type/NftId.sol": {
|
1332
|
+
"NftIdLib": [
|
1333
|
+
{
|
1334
|
+
"length": 20,
|
1335
|
+
"start": 2101
|
1336
|
+
},
|
1337
|
+
{
|
1338
|
+
"length": 20,
|
1339
|
+
"start": 2343
|
1340
|
+
},
|
1341
|
+
{
|
1342
|
+
"length": 20,
|
1343
|
+
"start": 2942
|
1344
|
+
},
|
1345
|
+
{
|
1346
|
+
"length": 20,
|
1347
|
+
"start": 3184
|
1348
|
+
},
|
1349
|
+
{
|
1350
|
+
"length": 20,
|
1351
|
+
"start": 3363
|
1352
|
+
},
|
1353
|
+
{
|
1354
|
+
"length": 20,
|
1355
|
+
"start": 16547
|
1356
|
+
},
|
1357
|
+
{
|
1358
|
+
"length": 20,
|
1359
|
+
"start": 18066
|
1360
|
+
}
|
1361
|
+
]
|
1362
|
+
},
|
1363
|
+
"contracts/type/NftIdSet.sol": {
|
1364
|
+
"LibNftIdSet": [
|
1365
|
+
{
|
1366
|
+
"length": 20,
|
1367
|
+
"start": 20667
|
1368
|
+
},
|
1369
|
+
{
|
1370
|
+
"length": 20,
|
1371
|
+
"start": 20789
|
1372
|
+
},
|
1373
|
+
{
|
1374
|
+
"length": 20,
|
1375
|
+
"start": 20922
|
1376
|
+
},
|
1377
|
+
{
|
1378
|
+
"length": 20,
|
1379
|
+
"start": 21057
|
1380
|
+
},
|
1381
|
+
{
|
1382
|
+
"length": 20,
|
1383
|
+
"start": 21195
|
1384
|
+
},
|
1385
|
+
{
|
1386
|
+
"length": 20,
|
1387
|
+
"start": 21307
|
1388
|
+
},
|
1389
|
+
{
|
1390
|
+
"length": 20,
|
1391
|
+
"start": 21493
|
1392
|
+
},
|
1393
|
+
{
|
1394
|
+
"length": 20,
|
1395
|
+
"start": 21552
|
1396
|
+
},
|
1397
|
+
{
|
1398
|
+
"length": 20,
|
1399
|
+
"start": 21677
|
1400
|
+
},
|
1401
|
+
{
|
1402
|
+
"length": 20,
|
1403
|
+
"start": 21743
|
1404
|
+
}
|
1405
|
+
]
|
1406
|
+
},
|
1407
|
+
"contracts/type/ObjectType.sol": {
|
1408
|
+
"ObjectTypeLib": [
|
1409
|
+
{
|
1410
|
+
"length": 20,
|
1411
|
+
"start": 9725
|
1412
|
+
}
|
1413
|
+
]
|
1414
|
+
},
|
1415
|
+
"contracts/type/StateId.sol": {
|
1416
|
+
"StateIdLib": [
|
1417
|
+
{
|
1418
|
+
"length": 20,
|
1419
|
+
"start": 2836
|
1420
|
+
},
|
1421
|
+
{
|
1422
|
+
"length": 20,
|
1423
|
+
"start": 6647
|
1424
|
+
},
|
1425
|
+
{
|
1426
|
+
"length": 20,
|
1427
|
+
"start": 6888
|
1428
|
+
},
|
1429
|
+
{
|
1430
|
+
"length": 20,
|
1431
|
+
"start": 9901
|
1432
|
+
},
|
1433
|
+
{
|
1434
|
+
"length": 20,
|
1435
|
+
"start": 13202
|
1436
|
+
},
|
1437
|
+
{
|
1438
|
+
"length": 20,
|
1439
|
+
"start": 13393
|
1440
|
+
}
|
1441
|
+
]
|
1442
|
+
},
|
1443
|
+
"contracts/type/Timestamp.sol": {
|
1444
|
+
"TimestampLib": [
|
1445
|
+
{
|
1446
|
+
"length": 20,
|
1447
|
+
"start": 3975
|
1448
|
+
},
|
1449
|
+
{
|
1450
|
+
"length": 20,
|
1451
|
+
"start": 4894
|
1452
|
+
},
|
1453
|
+
{
|
1454
|
+
"length": 20,
|
1455
|
+
"start": 5806
|
1456
|
+
},
|
1457
|
+
{
|
1458
|
+
"length": 20,
|
1459
|
+
"start": 7460
|
1460
|
+
},
|
1461
|
+
{
|
1462
|
+
"length": 20,
|
1463
|
+
"start": 8865
|
1464
|
+
},
|
1465
|
+
{
|
1466
|
+
"length": 20,
|
1467
|
+
"start": 10995
|
1468
|
+
}
|
1469
|
+
]
|
1470
|
+
}
|
1471
|
+
},
|
1472
|
+
"deployedLinkReferences": {
|
1473
|
+
"contracts/type/Amount.sol": {
|
1474
|
+
"AmountLib": [
|
1475
|
+
{
|
1476
|
+
"length": 20,
|
1477
|
+
"start": 2108
|
1478
|
+
},
|
1479
|
+
{
|
1480
|
+
"length": 20,
|
1481
|
+
"start": 5158
|
1482
|
+
},
|
1483
|
+
{
|
1484
|
+
"length": 20,
|
1485
|
+
"start": 7865
|
1486
|
+
},
|
1487
|
+
{
|
1488
|
+
"length": 20,
|
1489
|
+
"start": 8143
|
1490
|
+
},
|
1491
|
+
{
|
1492
|
+
"length": 20,
|
1493
|
+
"start": 10360
|
1494
|
+
},
|
1495
|
+
{
|
1496
|
+
"length": 20,
|
1497
|
+
"start": 12320
|
1498
|
+
},
|
1499
|
+
{
|
1500
|
+
"length": 20,
|
1501
|
+
"start": 12540
|
1502
|
+
},
|
1503
|
+
{
|
1504
|
+
"length": 20,
|
1505
|
+
"start": 12675
|
1506
|
+
}
|
1507
|
+
]
|
1508
|
+
},
|
1509
|
+
"contracts/type/Blocknumber.sol": {
|
1510
|
+
"BlocknumberLib": [
|
1511
|
+
{
|
1512
|
+
"length": 20,
|
1513
|
+
"start": 3284
|
1514
|
+
},
|
1515
|
+
{
|
1516
|
+
"length": 20,
|
1517
|
+
"start": 3687
|
1518
|
+
},
|
1519
|
+
{
|
1520
|
+
"length": 20,
|
1521
|
+
"start": 4100
|
1522
|
+
},
|
1523
|
+
{
|
1524
|
+
"length": 20,
|
1525
|
+
"start": 4606
|
1526
|
+
},
|
1527
|
+
{
|
1528
|
+
"length": 20,
|
1529
|
+
"start": 4929
|
1530
|
+
},
|
1531
|
+
{
|
1532
|
+
"length": 20,
|
1533
|
+
"start": 5518
|
1534
|
+
},
|
1535
|
+
{
|
1536
|
+
"length": 20,
|
1537
|
+
"start": 6515
|
1538
|
+
},
|
1539
|
+
{
|
1540
|
+
"length": 20,
|
1541
|
+
"start": 7172
|
1542
|
+
},
|
1543
|
+
{
|
1544
|
+
"length": 20,
|
1545
|
+
"start": 7700
|
1546
|
+
},
|
1547
|
+
{
|
1548
|
+
"length": 20,
|
1549
|
+
"start": 8577
|
1550
|
+
},
|
1551
|
+
{
|
1552
|
+
"length": 20,
|
1553
|
+
"start": 10158
|
1554
|
+
},
|
1555
|
+
{
|
1556
|
+
"length": 20,
|
1557
|
+
"start": 10707
|
1558
|
+
},
|
1559
|
+
{
|
1560
|
+
"length": 20,
|
1561
|
+
"start": 13512
|
1562
|
+
}
|
1563
|
+
]
|
1564
|
+
},
|
1565
|
+
"contracts/type/Key32.sol": {
|
1566
|
+
"Key32Lib": [
|
1567
|
+
{
|
1568
|
+
"length": 20,
|
1569
|
+
"start": 7542
|
1570
|
+
},
|
1571
|
+
{
|
1572
|
+
"length": 20,
|
1573
|
+
"start": 8839
|
1574
|
+
},
|
1575
|
+
{
|
1576
|
+
"length": 20,
|
1577
|
+
"start": 8955
|
1578
|
+
},
|
1579
|
+
{
|
1580
|
+
"length": 20,
|
1581
|
+
"start": 9138
|
1582
|
+
},
|
1583
|
+
{
|
1584
|
+
"length": 20,
|
1585
|
+
"start": 9823
|
1586
|
+
},
|
1587
|
+
{
|
1588
|
+
"length": 20,
|
1589
|
+
"start": 9939
|
1590
|
+
},
|
1591
|
+
{
|
1592
|
+
"length": 20,
|
1593
|
+
"start": 13154
|
1594
|
+
},
|
1595
|
+
{
|
1596
|
+
"length": 20,
|
1597
|
+
"start": 13270
|
1598
|
+
}
|
1599
|
+
]
|
1600
|
+
},
|
1601
|
+
"contracts/type/NftId.sol": {
|
1602
|
+
"NftIdLib": [
|
1603
|
+
{
|
1604
|
+
"length": 20,
|
1605
|
+
"start": 1635
|
1606
|
+
},
|
1607
|
+
{
|
1608
|
+
"length": 20,
|
1609
|
+
"start": 1877
|
1610
|
+
},
|
1611
|
+
{
|
1612
|
+
"length": 20,
|
1613
|
+
"start": 2476
|
1614
|
+
},
|
1615
|
+
{
|
1616
|
+
"length": 20,
|
1617
|
+
"start": 2718
|
1618
|
+
},
|
1619
|
+
{
|
1620
|
+
"length": 20,
|
1621
|
+
"start": 2897
|
1622
|
+
}
|
1623
|
+
]
|
1624
|
+
},
|
1625
|
+
"contracts/type/ObjectType.sol": {
|
1626
|
+
"ObjectTypeLib": [
|
1627
|
+
{
|
1628
|
+
"length": 20,
|
1629
|
+
"start": 9259
|
1630
|
+
}
|
1631
|
+
]
|
1632
|
+
},
|
1633
|
+
"contracts/type/StateId.sol": {
|
1634
|
+
"StateIdLib": [
|
1635
|
+
{
|
1636
|
+
"length": 20,
|
1637
|
+
"start": 2370
|
1638
|
+
},
|
1639
|
+
{
|
1640
|
+
"length": 20,
|
1641
|
+
"start": 6181
|
1642
|
+
},
|
1643
|
+
{
|
1644
|
+
"length": 20,
|
1645
|
+
"start": 6422
|
1646
|
+
},
|
1647
|
+
{
|
1648
|
+
"length": 20,
|
1649
|
+
"start": 9435
|
1650
|
+
},
|
1651
|
+
{
|
1652
|
+
"length": 20,
|
1653
|
+
"start": 12736
|
1654
|
+
},
|
1655
|
+
{
|
1656
|
+
"length": 20,
|
1657
|
+
"start": 12927
|
1658
|
+
}
|
1659
|
+
]
|
1660
|
+
},
|
1661
|
+
"contracts/type/Timestamp.sol": {
|
1662
|
+
"TimestampLib": [
|
1663
|
+
{
|
1664
|
+
"length": 20,
|
1665
|
+
"start": 3509
|
1666
|
+
},
|
1667
|
+
{
|
1668
|
+
"length": 20,
|
1669
|
+
"start": 4428
|
1670
|
+
},
|
1671
|
+
{
|
1672
|
+
"length": 20,
|
1673
|
+
"start": 5340
|
1674
|
+
},
|
1675
|
+
{
|
1676
|
+
"length": 20,
|
1677
|
+
"start": 6994
|
1678
|
+
},
|
1679
|
+
{
|
1680
|
+
"length": 20,
|
1681
|
+
"start": 8399
|
1682
|
+
},
|
1683
|
+
{
|
1684
|
+
"length": 20,
|
1685
|
+
"start": 10529
|
1686
|
+
}
|
1687
|
+
]
|
1688
|
+
}
|
1689
|
+
}
|
1690
|
+
}
|