@etherisc/gif-next 0.0.2-e6ad61d-739 → 0.0.2-e802d97-713
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +338 -19
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1349 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +331 -1138
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +463 -1216
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +228 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1701 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1053 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3642 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/{instance/treasury/ITreasury.sol/ITreasury.json → oracle/IOracle.sol/IOracle.json} +2 -2
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +718 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1105 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +746 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1432 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +738 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +834 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1278 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +810 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +499 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.json +387 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1146 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +754 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +983 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +778 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +679 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +694 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +744 -26
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1026 -52
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +407 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1415 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +709 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1292 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +137 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1715 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1728 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1806 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1824 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1490 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +792 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +468 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/lifecycle/ILifecycle.sol/ILifecycleModule.json → shared/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +42 -77
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -134
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +571 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +353 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +260 -218
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2045 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +777 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1324 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +726 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2189 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +105 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/distribution/Distribution.sol +261 -0
- package/contracts/distribution/DistributionService.sol +298 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/distribution/IDistributionComponent.sol +66 -0
- package/contracts/distribution/IDistributionService.sol +81 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +79 -22
- package/contracts/instance/IInstanceService.sol +81 -0
- package/contracts/instance/Instance.sol +217 -53
- package/contracts/instance/InstanceAdmin.sol +331 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
- package/contracts/instance/InstanceReader.sol +390 -0
- package/contracts/instance/InstanceService.sol +362 -0
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +281 -0
- package/contracts/instance/base/BalanceStore.sol +118 -0
- package/contracts/instance/base/Cloneable.sol +51 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectManager.sol +82 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/mock/Dip.sol +26 -0
- package/contracts/oracle/IOracle.sol +20 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +145 -0
- package/contracts/oracle/OracleService.sol +277 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +112 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +299 -0
- package/contracts/pool/PoolService.sol +453 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +42 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +475 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +301 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/product/Product.sol +377 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +144 -62
- package/contracts/registry/IRegistry.sol +99 -42
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +521 -127
- package/contracts/registry/RegistryAdmin.sol +237 -0
- package/contracts/registry/RegistryService.sol +266 -0
- package/contracts/registry/RegistryServiceManager.sol +58 -0
- package/contracts/registry/ReleaseManager.sol +600 -0
- package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/AccessManagerCustom.sol +736 -0
- package/contracts/shared/AccessManagerExtended.sol +470 -0
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +618 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/IAccessManagerExtended.sol +74 -0
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/shared/IKeyValueStore.sol +53 -0
- package/contracts/shared/ILifecycle.sol +30 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +144 -0
- package/contracts/shared/KeyValueStore.sol +127 -0
- package/contracts/shared/Lifecycle.sol +130 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +102 -0
- package/contracts/shared/ProxyManager.sol +199 -0
- package/contracts/shared/Registerable.sol +75 -0
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +77 -0
- package/contracts/shared/TokenHandler.sol +58 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +149 -0
- package/contracts/staking/StakeManagerLib.sol +179 -0
- package/contracts/staking/Staking.sol +551 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +406 -0
- package/contracts/staking/StakingServiceManager.sol +45 -0
- package/contracts/staking/StakingStore.sol +572 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +128 -0
- package/contracts/{types → type}/Blocknumber.sol +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/type/NftId.sol +78 -0
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/{types → type}/ObjectType.sol +81 -20
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +89 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +146 -0
- package/contracts/type/Seconds.sol +81 -0
- package/contracts/{types → type}/StateId.sol +50 -6
- package/contracts/{types → type}/Timestamp.sol +41 -7
- package/contracts/type/UFixed.sol +326 -0
- package/contracts/type/Version.sol +108 -0
- package/package.json +14 -7
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -205
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -328
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -346
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/components/Pool.sol +0 -52
- package/contracts/components/Product.sol +0 -89
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -32
- package/contracts/types/NftId.sol +0 -51
- package/contracts/types/UFixed.sol +0 -210
@@ -0,0 +1,1053 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "InstanceService",
|
4
|
+
"sourceName": "contracts/instance/InstanceService.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [],
|
46
|
+
"name": "ERC1167FailedCreateClone",
|
47
|
+
"type": "error"
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"inputs": [],
|
51
|
+
"name": "ErrorInstanceServiceBundleManagerAuthorityMismatch",
|
52
|
+
"type": "error"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"inputs": [],
|
56
|
+
"name": "ErrorInstanceServiceBundleManagerZero",
|
57
|
+
"type": "error"
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"inputs": [],
|
61
|
+
"name": "ErrorInstanceServiceBundleMangerInstanceMismatch",
|
62
|
+
"type": "error"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"inputs": [
|
66
|
+
{
|
67
|
+
"internalType": "address",
|
68
|
+
"name": "component",
|
69
|
+
"type": "address"
|
70
|
+
}
|
71
|
+
],
|
72
|
+
"name": "ErrorInstanceServiceComponentNotInstanceLinked",
|
73
|
+
"type": "error"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"inputs": [
|
77
|
+
{
|
78
|
+
"internalType": "address",
|
79
|
+
"name": "componentAddress",
|
80
|
+
"type": "address"
|
81
|
+
}
|
82
|
+
],
|
83
|
+
"name": "ErrorInstanceServiceComponentNotRegistered",
|
84
|
+
"type": "error"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"inputs": [],
|
88
|
+
"name": "ErrorInstanceServiceInstanceAddressZero",
|
89
|
+
"type": "error"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"inputs": [],
|
93
|
+
"name": "ErrorInstanceServiceInstanceAdminZero",
|
94
|
+
"type": "error"
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"inputs": [],
|
98
|
+
"name": "ErrorInstanceServiceInstanceAuthorityMismatch",
|
99
|
+
"type": "error"
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"inputs": [
|
103
|
+
{
|
104
|
+
"internalType": "NftId",
|
105
|
+
"name": "instanceNftId",
|
106
|
+
"type": "uint96"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"internalType": "NftId",
|
110
|
+
"name": "componentNftId",
|
111
|
+
"type": "uint96"
|
112
|
+
}
|
113
|
+
],
|
114
|
+
"name": "ErrorInstanceServiceInstanceComponentMismatch",
|
115
|
+
"type": "error"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"inputs": [],
|
119
|
+
"name": "ErrorInstanceServiceInstanceReaderAddressZero",
|
120
|
+
"type": "error"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"inputs": [],
|
124
|
+
"name": "ErrorInstanceServiceInstanceReaderInstanceMismatch",
|
125
|
+
"type": "error"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"inputs": [],
|
129
|
+
"name": "ErrorInstanceServiceInstanceReaderInstanceMismatch2",
|
130
|
+
"type": "error"
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"inputs": [],
|
134
|
+
"name": "ErrorInstanceServiceInstanceReaderSameAsMasterInstanceReader",
|
135
|
+
"type": "error"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"inputs": [],
|
139
|
+
"name": "ErrorInstanceServiceInstanceReaderZero",
|
140
|
+
"type": "error"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"inputs": [],
|
144
|
+
"name": "ErrorInstanceServiceInstanceStoreAuthorityMismatch",
|
145
|
+
"type": "error"
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"inputs": [],
|
149
|
+
"name": "ErrorInstanceServiceInstanceStoreZero",
|
150
|
+
"type": "error"
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"inputs": [
|
154
|
+
{
|
155
|
+
"internalType": "address",
|
156
|
+
"name": "componentAddress",
|
157
|
+
"type": "address"
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"internalType": "ObjectType",
|
161
|
+
"name": "expectedType",
|
162
|
+
"type": "uint8"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"internalType": "ObjectType",
|
166
|
+
"name": "componentType",
|
167
|
+
"type": "uint8"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"name": "ErrorInstanceServiceInvalidComponentType",
|
171
|
+
"type": "error"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [],
|
175
|
+
"name": "ErrorInstanceServiceMasterBundleManagerAlreadySet",
|
176
|
+
"type": "error"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"inputs": [],
|
180
|
+
"name": "ErrorInstanceServiceMasterInstanceAccessManagerAlreadySet",
|
181
|
+
"type": "error"
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"inputs": [],
|
185
|
+
"name": "ErrorInstanceServiceMasterInstanceAdminAlreadySet",
|
186
|
+
"type": "error"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"inputs": [],
|
190
|
+
"name": "ErrorInstanceServiceMasterInstanceAlreadySet",
|
191
|
+
"type": "error"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"inputs": [],
|
195
|
+
"name": "ErrorInstanceServiceMasterInstanceReaderNotSet",
|
196
|
+
"type": "error"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"inputs": [
|
200
|
+
{
|
201
|
+
"internalType": "NftId",
|
202
|
+
"name": "nftId",
|
203
|
+
"type": "uint96"
|
204
|
+
}
|
205
|
+
],
|
206
|
+
"name": "ErrorInstanceServiceNotInstance",
|
207
|
+
"type": "error"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"inputs": [
|
211
|
+
{
|
212
|
+
"internalType": "address",
|
213
|
+
"name": "caller",
|
214
|
+
"type": "address"
|
215
|
+
}
|
216
|
+
],
|
217
|
+
"name": "ErrorInstanceServiceRequestUnauhorized",
|
218
|
+
"type": "error"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"inputs": [
|
222
|
+
{
|
223
|
+
"internalType": "NftId",
|
224
|
+
"name": "nftId",
|
225
|
+
"type": "uint96"
|
226
|
+
}
|
227
|
+
],
|
228
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
229
|
+
"type": "error"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"inputs": [
|
233
|
+
{
|
234
|
+
"internalType": "address",
|
235
|
+
"name": "contractAddress",
|
236
|
+
"type": "address"
|
237
|
+
}
|
238
|
+
],
|
239
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
240
|
+
"type": "error"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"inputs": [],
|
244
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
245
|
+
"type": "error"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"inputs": [
|
249
|
+
{
|
250
|
+
"internalType": "address",
|
251
|
+
"name": "account",
|
252
|
+
"type": "address"
|
253
|
+
}
|
254
|
+
],
|
255
|
+
"name": "ErrorNftOwnableNotOwner",
|
256
|
+
"type": "error"
|
257
|
+
},
|
258
|
+
{
|
259
|
+
"inputs": [
|
260
|
+
{
|
261
|
+
"internalType": "address",
|
262
|
+
"name": "registryAddress",
|
263
|
+
"type": "address"
|
264
|
+
}
|
265
|
+
],
|
266
|
+
"name": "ErrorNotRegistry",
|
267
|
+
"type": "error"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"inputs": [],
|
271
|
+
"name": "ErrorServiceNotImplemented",
|
272
|
+
"type": "error"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"inputs": [],
|
276
|
+
"name": "InvalidInitialization",
|
277
|
+
"type": "error"
|
278
|
+
},
|
279
|
+
{
|
280
|
+
"inputs": [],
|
281
|
+
"name": "NotInitializing",
|
282
|
+
"type": "error"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"anonymous": false,
|
286
|
+
"inputs": [
|
287
|
+
{
|
288
|
+
"indexed": false,
|
289
|
+
"internalType": "address",
|
290
|
+
"name": "authority",
|
291
|
+
"type": "address"
|
292
|
+
}
|
293
|
+
],
|
294
|
+
"name": "AuthorityUpdated",
|
295
|
+
"type": "event"
|
296
|
+
},
|
297
|
+
{
|
298
|
+
"anonymous": false,
|
299
|
+
"inputs": [
|
300
|
+
{
|
301
|
+
"indexed": false,
|
302
|
+
"internalType": "uint64",
|
303
|
+
"name": "version",
|
304
|
+
"type": "uint64"
|
305
|
+
}
|
306
|
+
],
|
307
|
+
"name": "Initialized",
|
308
|
+
"type": "event"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"anonymous": false,
|
312
|
+
"inputs": [
|
313
|
+
{
|
314
|
+
"indexed": false,
|
315
|
+
"internalType": "address",
|
316
|
+
"name": "clonedOzAccessManager",
|
317
|
+
"type": "address"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"indexed": false,
|
321
|
+
"internalType": "address",
|
322
|
+
"name": "clonedInstanceAccessManager",
|
323
|
+
"type": "address"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"indexed": false,
|
327
|
+
"internalType": "address",
|
328
|
+
"name": "clonedInstance",
|
329
|
+
"type": "address"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"indexed": false,
|
333
|
+
"internalType": "address",
|
334
|
+
"name": "clonedInstanceStore",
|
335
|
+
"type": "address"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"indexed": false,
|
339
|
+
"internalType": "address",
|
340
|
+
"name": "clonedBundleManager",
|
341
|
+
"type": "address"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"indexed": false,
|
345
|
+
"internalType": "address",
|
346
|
+
"name": "clonedInstanceReader",
|
347
|
+
"type": "address"
|
348
|
+
},
|
349
|
+
{
|
350
|
+
"indexed": false,
|
351
|
+
"internalType": "NftId",
|
352
|
+
"name": "clonedInstanceNftId",
|
353
|
+
"type": "uint96"
|
354
|
+
}
|
355
|
+
],
|
356
|
+
"name": "LogInstanceCloned",
|
357
|
+
"type": "event"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"inputs": [],
|
361
|
+
"name": "INSTANCE_CREATION_CODE_HASH",
|
362
|
+
"outputs": [
|
363
|
+
{
|
364
|
+
"internalType": "bytes32",
|
365
|
+
"name": "",
|
366
|
+
"type": "bytes32"
|
367
|
+
}
|
368
|
+
],
|
369
|
+
"stateMutability": "view",
|
370
|
+
"type": "function"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"inputs": [],
|
374
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
375
|
+
"outputs": [
|
376
|
+
{
|
377
|
+
"internalType": "bytes32",
|
378
|
+
"name": "",
|
379
|
+
"type": "bytes32"
|
380
|
+
}
|
381
|
+
],
|
382
|
+
"stateMutability": "view",
|
383
|
+
"type": "function"
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"inputs": [],
|
387
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
388
|
+
"outputs": [
|
389
|
+
{
|
390
|
+
"internalType": "bytes32",
|
391
|
+
"name": "",
|
392
|
+
"type": "bytes32"
|
393
|
+
}
|
394
|
+
],
|
395
|
+
"stateMutability": "view",
|
396
|
+
"type": "function"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"inputs": [],
|
400
|
+
"name": "authority",
|
401
|
+
"outputs": [
|
402
|
+
{
|
403
|
+
"internalType": "address",
|
404
|
+
"name": "",
|
405
|
+
"type": "address"
|
406
|
+
}
|
407
|
+
],
|
408
|
+
"stateMutability": "view",
|
409
|
+
"type": "function"
|
410
|
+
},
|
411
|
+
{
|
412
|
+
"inputs": [
|
413
|
+
{
|
414
|
+
"internalType": "NftId",
|
415
|
+
"name": "instanceNftId",
|
416
|
+
"type": "uint96"
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"internalType": "address",
|
420
|
+
"name": "targetAddress",
|
421
|
+
"type": "address"
|
422
|
+
},
|
423
|
+
{
|
424
|
+
"internalType": "string",
|
425
|
+
"name": "targetName",
|
426
|
+
"type": "string"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"internalType": "bytes4[][]",
|
430
|
+
"name": "selectors",
|
431
|
+
"type": "bytes4[][]"
|
432
|
+
},
|
433
|
+
{
|
434
|
+
"internalType": "RoleId[]",
|
435
|
+
"name": "roles",
|
436
|
+
"type": "uint64[]"
|
437
|
+
}
|
438
|
+
],
|
439
|
+
"name": "createComponentTarget",
|
440
|
+
"outputs": [],
|
441
|
+
"stateMutability": "nonpayable",
|
442
|
+
"type": "function"
|
443
|
+
},
|
444
|
+
{
|
445
|
+
"inputs": [
|
446
|
+
{
|
447
|
+
"internalType": "NftId",
|
448
|
+
"name": "instanceNftId",
|
449
|
+
"type": "uint96"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"internalType": "address",
|
453
|
+
"name": "targetAddress",
|
454
|
+
"type": "address"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"internalType": "string",
|
458
|
+
"name": "targetName",
|
459
|
+
"type": "string"
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"internalType": "bytes4[][]",
|
463
|
+
"name": "selectors",
|
464
|
+
"type": "bytes4[][]"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"internalType": "RoleId[]",
|
468
|
+
"name": "roles",
|
469
|
+
"type": "uint64[]"
|
470
|
+
}
|
471
|
+
],
|
472
|
+
"name": "createGifTarget",
|
473
|
+
"outputs": [],
|
474
|
+
"stateMutability": "nonpayable",
|
475
|
+
"type": "function"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"inputs": [],
|
479
|
+
"name": "createInstanceClone",
|
480
|
+
"outputs": [
|
481
|
+
{
|
482
|
+
"internalType": "contract Instance",
|
483
|
+
"name": "clonedInstance",
|
484
|
+
"type": "address"
|
485
|
+
},
|
486
|
+
{
|
487
|
+
"internalType": "NftId",
|
488
|
+
"name": "clonedInstanceNftId",
|
489
|
+
"type": "uint96"
|
490
|
+
}
|
491
|
+
],
|
492
|
+
"stateMutability": "nonpayable",
|
493
|
+
"type": "function"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"inputs": [],
|
497
|
+
"name": "getDomain",
|
498
|
+
"outputs": [
|
499
|
+
{
|
500
|
+
"internalType": "ObjectType",
|
501
|
+
"name": "",
|
502
|
+
"type": "uint8"
|
503
|
+
}
|
504
|
+
],
|
505
|
+
"stateMutability": "pure",
|
506
|
+
"type": "function"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"inputs": [],
|
510
|
+
"name": "getInitialInfo",
|
511
|
+
"outputs": [
|
512
|
+
{
|
513
|
+
"components": [
|
514
|
+
{
|
515
|
+
"internalType": "NftId",
|
516
|
+
"name": "nftId",
|
517
|
+
"type": "uint96"
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"internalType": "NftId",
|
521
|
+
"name": "parentNftId",
|
522
|
+
"type": "uint96"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"internalType": "ObjectType",
|
526
|
+
"name": "objectType",
|
527
|
+
"type": "uint8"
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"internalType": "bool",
|
531
|
+
"name": "isInterceptor",
|
532
|
+
"type": "bool"
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"internalType": "address",
|
536
|
+
"name": "objectAddress",
|
537
|
+
"type": "address"
|
538
|
+
},
|
539
|
+
{
|
540
|
+
"internalType": "address",
|
541
|
+
"name": "initialOwner",
|
542
|
+
"type": "address"
|
543
|
+
},
|
544
|
+
{
|
545
|
+
"internalType": "bytes",
|
546
|
+
"name": "data",
|
547
|
+
"type": "bytes"
|
548
|
+
}
|
549
|
+
],
|
550
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
551
|
+
"name": "info",
|
552
|
+
"type": "tuple"
|
553
|
+
}
|
554
|
+
],
|
555
|
+
"stateMutability": "view",
|
556
|
+
"type": "function"
|
557
|
+
},
|
558
|
+
{
|
559
|
+
"inputs": [],
|
560
|
+
"name": "getMasterInstanceReader",
|
561
|
+
"outputs": [
|
562
|
+
{
|
563
|
+
"internalType": "address",
|
564
|
+
"name": "",
|
565
|
+
"type": "address"
|
566
|
+
}
|
567
|
+
],
|
568
|
+
"stateMutability": "view",
|
569
|
+
"type": "function"
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"inputs": [],
|
573
|
+
"name": "getNftId",
|
574
|
+
"outputs": [
|
575
|
+
{
|
576
|
+
"internalType": "NftId",
|
577
|
+
"name": "",
|
578
|
+
"type": "uint96"
|
579
|
+
}
|
580
|
+
],
|
581
|
+
"stateMutability": "view",
|
582
|
+
"type": "function"
|
583
|
+
},
|
584
|
+
{
|
585
|
+
"inputs": [],
|
586
|
+
"name": "getOwner",
|
587
|
+
"outputs": [
|
588
|
+
{
|
589
|
+
"internalType": "address",
|
590
|
+
"name": "",
|
591
|
+
"type": "address"
|
592
|
+
}
|
593
|
+
],
|
594
|
+
"stateMutability": "view",
|
595
|
+
"type": "function"
|
596
|
+
},
|
597
|
+
{
|
598
|
+
"inputs": [],
|
599
|
+
"name": "getRegistry",
|
600
|
+
"outputs": [
|
601
|
+
{
|
602
|
+
"internalType": "contract IRegistry",
|
603
|
+
"name": "",
|
604
|
+
"type": "address"
|
605
|
+
}
|
606
|
+
],
|
607
|
+
"stateMutability": "view",
|
608
|
+
"type": "function"
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"inputs": [],
|
612
|
+
"name": "getVersion",
|
613
|
+
"outputs": [
|
614
|
+
{
|
615
|
+
"internalType": "Version",
|
616
|
+
"name": "",
|
617
|
+
"type": "uint24"
|
618
|
+
}
|
619
|
+
],
|
620
|
+
"stateMutability": "pure",
|
621
|
+
"type": "function"
|
622
|
+
},
|
623
|
+
{
|
624
|
+
"inputs": [],
|
625
|
+
"name": "initializeERC165",
|
626
|
+
"outputs": [],
|
627
|
+
"stateMutability": "nonpayable",
|
628
|
+
"type": "function"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"inputs": [
|
632
|
+
{
|
633
|
+
"internalType": "address",
|
634
|
+
"name": "initialOwner",
|
635
|
+
"type": "address"
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"internalType": "address",
|
639
|
+
"name": "registryAddress",
|
640
|
+
"type": "address"
|
641
|
+
}
|
642
|
+
],
|
643
|
+
"name": "initializeNftOwnable",
|
644
|
+
"outputs": [],
|
645
|
+
"stateMutability": "nonpayable",
|
646
|
+
"type": "function"
|
647
|
+
},
|
648
|
+
{
|
649
|
+
"inputs": [
|
650
|
+
{
|
651
|
+
"internalType": "address",
|
652
|
+
"name": "registryAddress",
|
653
|
+
"type": "address"
|
654
|
+
},
|
655
|
+
{
|
656
|
+
"internalType": "NftId",
|
657
|
+
"name": "parentNftId",
|
658
|
+
"type": "uint96"
|
659
|
+
},
|
660
|
+
{
|
661
|
+
"internalType": "ObjectType",
|
662
|
+
"name": "objectType",
|
663
|
+
"type": "uint8"
|
664
|
+
},
|
665
|
+
{
|
666
|
+
"internalType": "bool",
|
667
|
+
"name": "isInterceptor",
|
668
|
+
"type": "bool"
|
669
|
+
},
|
670
|
+
{
|
671
|
+
"internalType": "address",
|
672
|
+
"name": "initialOwner",
|
673
|
+
"type": "address"
|
674
|
+
},
|
675
|
+
{
|
676
|
+
"internalType": "bytes",
|
677
|
+
"name": "registryData",
|
678
|
+
"type": "bytes"
|
679
|
+
}
|
680
|
+
],
|
681
|
+
"name": "initializeRegisterable",
|
682
|
+
"outputs": [],
|
683
|
+
"stateMutability": "nonpayable",
|
684
|
+
"type": "function"
|
685
|
+
},
|
686
|
+
{
|
687
|
+
"inputs": [
|
688
|
+
{
|
689
|
+
"internalType": "address",
|
690
|
+
"name": "registryAddress",
|
691
|
+
"type": "address"
|
692
|
+
}
|
693
|
+
],
|
694
|
+
"name": "initializeRegistryLinked",
|
695
|
+
"outputs": [],
|
696
|
+
"stateMutability": "nonpayable",
|
697
|
+
"type": "function"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"inputs": [
|
701
|
+
{
|
702
|
+
"internalType": "address",
|
703
|
+
"name": "registry",
|
704
|
+
"type": "address"
|
705
|
+
},
|
706
|
+
{
|
707
|
+
"internalType": "address",
|
708
|
+
"name": "authority",
|
709
|
+
"type": "address"
|
710
|
+
},
|
711
|
+
{
|
712
|
+
"internalType": "address",
|
713
|
+
"name": "initialOwner",
|
714
|
+
"type": "address"
|
715
|
+
}
|
716
|
+
],
|
717
|
+
"name": "initializeService",
|
718
|
+
"outputs": [],
|
719
|
+
"stateMutability": "nonpayable",
|
720
|
+
"type": "function"
|
721
|
+
},
|
722
|
+
{
|
723
|
+
"inputs": [
|
724
|
+
{
|
725
|
+
"internalType": "address",
|
726
|
+
"name": "activatedBy",
|
727
|
+
"type": "address"
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"internalType": "bytes",
|
731
|
+
"name": "data",
|
732
|
+
"type": "bytes"
|
733
|
+
}
|
734
|
+
],
|
735
|
+
"name": "initializeVersionable",
|
736
|
+
"outputs": [],
|
737
|
+
"stateMutability": "nonpayable",
|
738
|
+
"type": "function"
|
739
|
+
},
|
740
|
+
{
|
741
|
+
"inputs": [],
|
742
|
+
"name": "isConsumingScheduledOp",
|
743
|
+
"outputs": [
|
744
|
+
{
|
745
|
+
"internalType": "bytes4",
|
746
|
+
"name": "",
|
747
|
+
"type": "bytes4"
|
748
|
+
}
|
749
|
+
],
|
750
|
+
"stateMutability": "view",
|
751
|
+
"type": "function"
|
752
|
+
},
|
753
|
+
{
|
754
|
+
"inputs": [],
|
755
|
+
"name": "linkToRegisteredNftId",
|
756
|
+
"outputs": [
|
757
|
+
{
|
758
|
+
"internalType": "NftId",
|
759
|
+
"name": "nftId",
|
760
|
+
"type": "uint96"
|
761
|
+
}
|
762
|
+
],
|
763
|
+
"stateMutability": "nonpayable",
|
764
|
+
"type": "function"
|
765
|
+
},
|
766
|
+
{
|
767
|
+
"inputs": [
|
768
|
+
{
|
769
|
+
"internalType": "bytes4",
|
770
|
+
"name": "interfaceId",
|
771
|
+
"type": "bytes4"
|
772
|
+
}
|
773
|
+
],
|
774
|
+
"name": "registerInterface",
|
775
|
+
"outputs": [],
|
776
|
+
"stateMutability": "nonpayable",
|
777
|
+
"type": "function"
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"inputs": [
|
781
|
+
{
|
782
|
+
"internalType": "address",
|
783
|
+
"name": "instanceAddress",
|
784
|
+
"type": "address"
|
785
|
+
}
|
786
|
+
],
|
787
|
+
"name": "setAndRegisterMasterInstance",
|
788
|
+
"outputs": [
|
789
|
+
{
|
790
|
+
"internalType": "NftId",
|
791
|
+
"name": "masterInstanceNftId",
|
792
|
+
"type": "uint96"
|
793
|
+
}
|
794
|
+
],
|
795
|
+
"stateMutability": "nonpayable",
|
796
|
+
"type": "function"
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"inputs": [
|
800
|
+
{
|
801
|
+
"internalType": "address",
|
802
|
+
"name": "newAuthority",
|
803
|
+
"type": "address"
|
804
|
+
}
|
805
|
+
],
|
806
|
+
"name": "setAuthority",
|
807
|
+
"outputs": [],
|
808
|
+
"stateMutability": "nonpayable",
|
809
|
+
"type": "function"
|
810
|
+
},
|
811
|
+
{
|
812
|
+
"inputs": [
|
813
|
+
{
|
814
|
+
"internalType": "bool",
|
815
|
+
"name": "locked",
|
816
|
+
"type": "bool"
|
817
|
+
}
|
818
|
+
],
|
819
|
+
"name": "setComponentLocked",
|
820
|
+
"outputs": [],
|
821
|
+
"stateMutability": "nonpayable",
|
822
|
+
"type": "function"
|
823
|
+
},
|
824
|
+
{
|
825
|
+
"inputs": [
|
826
|
+
{
|
827
|
+
"internalType": "bytes4",
|
828
|
+
"name": "interfaceId",
|
829
|
+
"type": "bytes4"
|
830
|
+
}
|
831
|
+
],
|
832
|
+
"name": "supportsInterface",
|
833
|
+
"outputs": [
|
834
|
+
{
|
835
|
+
"internalType": "bool",
|
836
|
+
"name": "",
|
837
|
+
"type": "bool"
|
838
|
+
}
|
839
|
+
],
|
840
|
+
"stateMutability": "view",
|
841
|
+
"type": "function"
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"inputs": [
|
845
|
+
{
|
846
|
+
"internalType": "NftId",
|
847
|
+
"name": "instanceNftId",
|
848
|
+
"type": "uint96"
|
849
|
+
}
|
850
|
+
],
|
851
|
+
"name": "upgradeInstanceReader",
|
852
|
+
"outputs": [],
|
853
|
+
"stateMutability": "nonpayable",
|
854
|
+
"type": "function"
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"inputs": [
|
858
|
+
{
|
859
|
+
"internalType": "address",
|
860
|
+
"name": "instanceReaderAddress",
|
861
|
+
"type": "address"
|
862
|
+
}
|
863
|
+
],
|
864
|
+
"name": "upgradeMasterInstanceReader",
|
865
|
+
"outputs": [],
|
866
|
+
"stateMutability": "nonpayable",
|
867
|
+
"type": "function"
|
868
|
+
},
|
869
|
+
{
|
870
|
+
"inputs": [
|
871
|
+
{
|
872
|
+
"internalType": "bytes",
|
873
|
+
"name": "data",
|
874
|
+
"type": "bytes"
|
875
|
+
}
|
876
|
+
],
|
877
|
+
"name": "upgradeVersionable",
|
878
|
+
"outputs": [],
|
879
|
+
"stateMutability": "nonpayable",
|
880
|
+
"type": "function"
|
881
|
+
}
|
882
|
+
],
|
883
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61424380620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c6fbb2811610104578063b03d2a8e116100a2578063dd38b49e11610071578063dd38b49e14610379578063edabac0314610435578063eeff428e14610446578063f7c34ee01461047557600080fd5b8063b03d2a8e146103f8578063b68d18091461040b578063bf7e214f1461041a578063c22f980d1461042257600080fd5b8063893d20e8116100de578063893d20e8146103a75780638e32e979146103af5780638fb36037146103c2578063ada9652e146103e357600080fd5b80636c6fbb28146103795780637a9e5e4b1461038c578063872309c71461039f57600080fd5b806327bb7a331161017c5780635ab1bd531161014b5780635ab1bd5314610310578063644c45e014610335578063675393bf146103535780636a778e731461036657600080fd5b806327bb7a33146102cf578063329d6e74146102e257806336fc697e146102f557806349bb9e4b146102fd57600080fd5b8063138461e0116101b8578063138461e0146102525780631eff4b2214610272578063214cdb80146102a7578063254f6866146102bc57600080fd5b806301ffc9a7146101df5780630d8e6e2c146102215780630fec111c1461023d575b600080fd5b61020c6101ed3660046135b9565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610229610488565b60405162ffffff9091168152602001610218565b610245610512565b6040516102189190613624565b61025a6106d6565b6040516001600160601b039091168152602001610218565b6102997f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b6102ba6102b53660046135b9565b6106e1565b005b6102ba6102ca3660046136c4565b61070e565b6102ba6102dd366004613806565b61088b565b6102ba6102f036600461389e565b610930565b6102ba610a7d565b6102ba61030b3660046138d2565b610ac3565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b6000805160206141ae833981519152546001600160601b031661025a565b6102ba6103613660046136c4565b610bc2565b61025a6103743660046136c4565b610cd0565b6102ba610387366004613aaf565b611586565b6102ba61039a3660046136c4565b6115a6565b610299600081565b61031d611629565b6102ba6103bd366004613b73565b611760565b6103ca611999565b6040516001600160e01b03199091168152602001610218565b6102996000805160206141ae83398151915281565b6102ba610406366004613bbe565b6119d1565b60405160468152602001610218565b61031d611cd0565b6102ba610430366004613bdb565b611cec565b6007546001600160a01b031661031d565b61044e611f17565b604080516001600160a01b0390931683526001600160601b03909116602083015201610218565b6102ba610483366004613bf8565b612923565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156104e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050d9190613c31565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ea9190613c61565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610632611629565b6001600160a01b0316815260200182600101805461064f90613c7e565b80601f016020809104026020016040519081016040528092919081815260200182805461067b90613c7e565b80156106c85780601f1061069d576101008083540402835291602001916106c8565b820191906000526020600020905b8154815290600101906020018083116106ab57829003601f168201915b505050505081525091505090565b600061050d3061299a565b6106e9612b9b565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610716611629565b6001600160a01b0316336001600160a01b03161461074e5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6007546001600160a01b0316610777576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b03811661079e57604051631aa1808560e31b815260040160405180910390fd5b6007546001600160a01b03908116908216036107cd57604051630666e2a560e01b815260040160405180910390fd5b6006546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa15801561081d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108419190613cb8565b6001600160a01b0316146108685760405163f026367160e01b815260040160405180910390fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b610893612b9b565b61089d8287612923565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016109268382613d1b565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610952610488565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610992573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b69190613dda565b6000805160206141ee8339815191528054600160401b900460ff16806109e9575080546001600160401b03808416911610155b15610a075760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a3183612bd4565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610a85612b9b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000805160206141ee8339815191528054600160401b810460ff1615906001600160401b0316600081158015610af65750825b90506000826001600160401b03166001148015610b125750303b155b905081158015610b20575080155b15610b3e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610b6857845460ff60401b1916600160401b1785555b610b728787612bdc565b8315610bb957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610bca612b9b565b806001600160a01b03163b600003610c005760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610745565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610c7a575060408051601f3d908101601f19168201909252610c7791810190613e02565b60015b610ca25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610745565b80610ccb5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610745565b505b50565b6000610cda611629565b6001600160a01b0316336001600160a01b031614610d0d5760405163086391f760e31b8152336004820152602401610745565b6006546001600160a01b031615610d3757604051632c237de760e11b815260040160405180910390fd5b6004546001600160a01b031615610d6157604051630157f74960e01b815260040160405180910390fd5b6005546001600160a01b031615610d8b5760405163ab0cc43960e01b815260040160405180910390fd5b6008546001600160a01b031615610db557604051637f405a2960e01b815260040160405180910390fd5b6001600160a01b038216610ddc576040516309353e4560e11b815260040160405180910390fd5b60008290506000816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e459190613cb8565b905060008190506000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb09190613cb8565b905060008190506000856001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b9190613cb8565b905060008190506000876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f869190613cb8565b9050806001600160a01b038716610faf576040516295661560e31b815260040160405180910390fd5b6001600160a01b038516610fd65760405163e267254160e01b815260040160405180910390fd5b6001600160a01b038316610ffd57604051630ddeaef560e11b815260040160405180910390fd5b6001600160a01b038116611024576040516301fa2a2b60e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611062573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110869190613cb8565b6001600160a01b0316896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f19190613cb8565b6001600160a01b031614611118576040516334ddf1a760e21b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611156573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117a9190613cb8565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e59190613cb8565b6001600160a01b03161461120c576040516326c89a4160e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126e9190613cb8565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d99190613cb8565b6001600160a01b03161461130057604051631129422760e31b815260040160405180910390fd5b886001600160a01b0316846001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611348573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136c9190613cb8565b6001600160a01b03161461139357604051631b25e96d60e31b815260040160405180910390fd5b886001600160a01b0316866001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ff9190613cb8565b6001600160a01b031614611426576040516331783c7160e11b815260040160405180910390fd5b886001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611464573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114889190613cb8565b600480546001600160a01b03199081166001600160a01b03938416179091556005805482168a84161790556006805482168e8416908117909155600780548316898516179055600880548316878516179055600980549092168484161790915560025490916000911663026bc43b836114ff611629565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016000604051808303816000875af115801561154c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115749190810190613e7a565b519d9c50505050505050505050505050565b61159233600036612d56565b61159f8585858486612e5c565b5050505050565b336115af611cd0565b6001600160a01b0316816001600160a01b0316146115ea5760405162d1953b60e31b81526001600160a01b0382166004820152602401610745565b816001600160a01b03163b600003611620576040516361798f2f60e11b81526001600160a01b0383166004820152602401610745565b610ccb82612fe5565b6000806000805160206141ae83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bd9190613e02565b1561174a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611720573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117449190613cb8565b91505090565b54600160601b90046001600160a01b0316919050565b611768612b9b565b6117e883846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ce9190613c61565b603c6000856040518060200160405280600081525061088b565b6001600160a01b038216156118055761180082613046565b611974565b60006118196001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611879573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189d9190613f4c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156118e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119069190613cb8565b9050611972816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196d9190613cb8565b613046565b505b611984634a531f3360e01b6106e1565b61199463b68d180960e01b6106e1565b505050565b6000805160206141ce833981519152805460009190600160a01b900460ff166119c3576000611744565b638fb3603760e01b91505090565b6001546001600160a01b0316604051630bee2f1560e11b81523360048201526001600160a01b0391909116906317dc5e2a90602401602060405180830381865afa158015611a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a479190613e02565b611a66576040516302613e9f60e51b8152336004820152602401610745565b6040516301ffc9a760e01b8152639a29895960e01b6004820152339081906301ffc9a790602401602060405180830381865afa158015611aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ace9190613e02565b611af5576040516236c14d60e71b81526001600160a01b0382166004820152602401610745565b6000611b096001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b038481166004830152919250600091831690638b09a5f090602401600060405180830381865afa158015611b55573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b7d9190810190613e7a565b602001516040516305247a1760e51b81526001600160601b03821660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611bd4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bfc9190810190613e7a565b608001519050806001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c649190613cb8565b6040516313bfaf6360e31b81526001600160a01b03868116600483015287151560248301529190911690639dfd7b1890604401600060405180830381600087803b158015611cb157600080fd5b505af1158015611cc5573d6000803e3d6000fd5b505050505050505050565b6000805160206141ce833981519152546001600160a01b031690565b80611cff6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d729190613cb8565b6001600160a01b0316336001600160a01b031614611da5576040516302613e9f60e51b8152336004820152602401610745565b6000611db96001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611e0c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e349190810190613e7a565b608081015160075491925090600090611e55906001600160a01b0316613057565b60405163189acdbd60e31b81526001600160a01b0384811660048301529192509082169063c4d66de890602401600060405180830381600087803b158015611e9c57600080fd5b505af1158015611eb0573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401600060405180830381600087803b158015611ef757600080fd5b505af1158015611f0b573d6000803e3d6000fd5b50505050505050505050565b600454600090819033908290611f35906001600160a01b0316613057565b60405163189acdbd60e31b81523060048201529091506001600160a01b0382169063c4d66de890602401600060405180830381600087803b158015611f7957600080fd5b505af1158015611f8d573d6000803e3d6000fd5b5050600654611fa792506001600160a01b03169050613057565b9350836001600160a01b031663c0c53b8b82611fcb6001546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015290821660248201529085166044820152606401600060405180830381600087803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b50506009546000925061204c91506001600160a01b0316613057565b60405163189acdbd60e31b81526001600160a01b0387811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561209357600080fd5b505af11580156120a7573d6000803e3d6000fd5b505060405163048935d560e31b81526001600160a01b03848116600483015288169250632449aea89150602401600060405180830381600087803b1580156120ee57600080fd5b505af1158015612102573d6000803e3d6000fd5b50506007546000925061211e91506001600160a01b0316613057565b60405163189acdbd60e31b81526001600160a01b0388811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561216557600080fd5b505af1158015612179573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528916925063f7bc431c9150602401600060405180830381600087803b1580156121c057600080fd5b505af11580156121d4573d6000803e3d6000fd5b5050600854600092506121f091506001600160a01b0316613057565b60405163189acdbd60e31b81526001600160a01b0389811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561223757600080fd5b505af115801561224b573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b0384811660048301528a16925063422c9d009150602401600060405180830381600087803b15801561229157600080fd5b505af11580156122a5573d6000803e3d6000fd5b5050600554600092506122c191506001600160a01b0316613057565b9050846001600160a01b03166325c471a06122da6130c9565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015612333573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123579190613dda565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038416602482015260006044820152606401600060405180830381600087803b1580156123ae57600080fd5b505af11580156123c2573d6000803e3d6000fd5b505060405163189acdbd60e31b81526001600160a01b038b811660048301528416925063c4d66de89150602401600060405180830381600087803b15801561240957600080fd5b505af115801561241d573d6000803e3d6000fd5b5050604051633b85588160e11b81526001600160a01b0384811660048301528b16925063770ab1029150602401600060405180830381600087803b15801561246457600080fd5b505af1158015612478573d6000803e3d6000fd5b5050505073__$2a34b1f180a6bf22a62a9bc53ba8adfaf5$__639659280286838b86898c6124ae6001546001600160a01b031690565b6124b6610488565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af415801561250b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252f9190613f4c565b60405160e08a901b6001600160e01b03191681526001600160a01b0398891660048201529688166024880152948716604487015292861660648601529085166084850152841660a484015290921660c482015260ff90911660e48201526101040160006040518083038186803b1580156125a857600080fd5b505af41580156125bc573d6000803e3d6000fd5b50505050846001600160a01b031663fe0776f56125d76130c9565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015612630573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126549190613dda565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152306024820152604401600060405180830381600087803b15801561269b57600080fd5b505af11580156126af573d6000803e3d6000fd5b505060025460405163026bc43b60e01b81526001600160a01b038c811660048301528a8116602483015260009450909116915063026bc43b906044016000604051808303816000875af115801561270a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526127329190810190613e7a565b905080600001519750600360009054906101000a90046001600160a01b03166001600160a01b03166381d9b45f8973__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63c6edc3dd6040518163ffffffff1660e01b8152600401602060405180830381865af41580156127a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127cd9190613f69565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63f87bf3736040518163ffffffff1660e01b8152600401602060405180830381865af4158015612816573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283a9190613f90565b6040516001600160e01b031960e086901b1681526001600160601b03909316600484015264ffffffffff90911660248301526044820152606401600060405180830381600087803b15801561288e57600080fd5b505af11580156128a2573d6000803e3d6000fd5b5050604080516001600160a01b038a8116825286811660208301528d81168284015289811660608301528781166080830152881660a08201526001600160601b038c1660c082015290517eccc9e339dab7298ad32b43864beb3b1c0cf136971be26f1e67d90bf43ebd3d93509081900360e0019150a1505050505050509091565b61292b612b9b565b61293481610bc2565b61293c610a7d565b6001600160a01b0382166129635760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206141ae83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000806000805160206141ae83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612a0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2e9190613e02565b15612a5a5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610745565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad29190613e02565b612afa5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610745565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b729190613c61565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6000805160206141ee83398151915254600160401b900460ff16612bd257604051631afcd79f60e31b815260040160405180910390fd5b565b6101da612b9b565b6000805160206141ee8339815191528054600160401b810460ff1615906001600160401b0316600081158015612c0f5750825b90506000826001600160401b03166001148015612c2b5750303b155b905081158015612c39575080155b15612c575760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612c8157845460ff60401b1916600160401b1785555b60008087806020019051810190612c989190613fa9565b9250509150612ca882828b611760565b612cb76028613140565b613140565b600280546001600160a01b0319166001600160a01b0392909216919091179055612ce2612cb2602d90565b600380546001600160a01b0319166001600160a01b0392909216919091179055612d126377cab3db60e11b6106e1565b50508315610bb957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bb0565b6000805160206141ce833981519152600080612d91612d73611cd0565b8730612d83600460008a8c613feb565b612d8c91614015565b613253565b9150915081612e545763ffffffff811615612e3157825460ff60a01b1916600160a01b178355612dbf611cd0565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612dee93929190614045565b600060405180830381600087803b158015612e0857600080fd5b505af1158015612e1c573d6000803e3d6000fd5b5050845460ff60a01b1916855550612e549050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610745565b505050505050565b6000612e68868661335f565b5090506000816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612eab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ecf9190613cb8565b60405163044ec4c360e41b81529091506001600160a01b038216906344ec4c3090612f009089908990600401614085565b600060405180830381600087803b158015612f1a57600080fd5b505af1158015612f2e573d6000803e3d6000fd5b5050505060005b845181101561092657816001600160a01b0316638462319887868481518110612f6057612f606140a9565b6020026020010151888581518110612f7a57612f7a6140a9565b60200260200101516040518463ffffffff1660e01b8152600401612fa0939291906140bf565b600060405180830381600087803b158015612fba57600080fd5b505af1158015612fce573d6000803e3d6000fd5b505050508080612fdd90614132565b915050612f35565b6000805160206141ce83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61304e612b9b565b610ccd81613502565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b0381166130c4576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516368aebf7b60e01b81526000600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af415801561311c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050d9190613dda565b60006131546001546001600160a01b031690565b6001600160a01b031663d39e60438361316b610488565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af41580156131c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e49190613f4c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061324d9190613cb8565b92915050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516132c29190614159565b600060405180830381855afa9150503d80600081146132fd576040519150601f19603f3d011682016040523d82523d6000602084013e613302565b606091505b50915091508115613354576040815110613334578080602001905181019061332a9190614175565b9094509250613354565b602081511061335457808060200190518101906133519190613e02565b93505b505094509492505050565b60008060006133766001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa1580156133c9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526133f19190810190613e7a565b905061340f8160400151613403604690565b60ff9081169116141590565b156134385760405163e3c2794960e01b81526001600160601b0387166004820152602401610745565b6040516308b09a5f60e41b81526001600160a01b03868116600483015260009190841690638b09a5f090602401600060405180830381865afa158015613482573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526134aa9190810190613e7a565b90506134ba816020015188613513565b156134ee57805160405163a811346560e01b81526001600160601b03808a1660048301529091166024820152604401610745565b608090910151905190969095509350505050565b61350a612b9b565b610ccd81612fe5565b6040516399009c5160e01b81526001600160601b0380841660048301528216602482015260009073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af4158015613576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061359a9190613e02565b9392505050565b80356001600160e01b0319811681146130c457600080fd5b6000602082840312156135cb57600080fd5b61359a826135a1565b60005b838110156135ef5781810151838201526020016135d7565b50506000910152565b600081518084526136108160208601602086016135d4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161368d60c08401826001600160a01b03169052565b5060c083015160e0808401526136a76101008401826135f8565b949350505050565b6001600160a01b0381168114610ccd57600080fd5b6000602082840312156136d657600080fd5b813561359a816136af565b6001600160601b0381168114610ccd57600080fd5b60ff81168114610ccd57600080fd5b8015158114610ccd57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561374b5761374b613713565b60405290565b604051601f8201601f191681016001600160401b038111828210171561377957613779613713565b604052919050565b60006001600160401b0382111561379a5761379a613713565b50601f01601f191660200190565b60006137bb6137b684613781565b613751565b90508281528383830111156137cf57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126137f757600080fd5b61359a838335602085016137a8565b60008060008060008060c0878903121561381f57600080fd5b863561382a816136af565b9550602087013561383a816136e1565b9450604087013561384a816136f6565b9350606087013561385a81613705565b9250608087013561386a816136af565b915060a08701356001600160401b0381111561388557600080fd5b61389189828a016137e6565b9150509295509295509295565b6000602082840312156138b057600080fd5b81356001600160401b038111156138c657600080fd5b6136a7848285016137e6565b600080604083850312156138e557600080fd5b82356138f0816136af565b915060208301356001600160401b0381111561390b57600080fd5b613917858286016137e6565b9150509250929050565b60006001600160401b0382111561393a5761393a613713565b5060051b60200190565b600082601f83011261395557600080fd5b813560206139656137b683613921565b828152600592831b850182019282820191908785111561398457600080fd5b8387015b85811015613a1e5780356001600160401b038111156139a75760008081fd5b8801603f81018a136139b95760008081fd5b8581013560406139cb6137b683613921565b82815291851b8301810191888101908d8411156139e85760008081fd5b938201935b83851015613a0d576139fe856135a1565b825293890193908901906139ed565b885250505093850193508401613988565b5090979650505050505050565b6001600160401b0381168114610ccd57600080fd5b600082601f830112613a5157600080fd5b81356020613a616137b683613921565b82815260059290921b84018101918181019086841115613a8057600080fd5b8286015b84811015613aa4578035613a9781613a2b565b8352918301918301613a84565b509695505050505050565b600080600080600060a08688031215613ac757600080fd5b8535613ad2816136e1565b94506020860135613ae2816136af565b935060408601356001600160401b0380821115613afe57600080fd5b818801915088601f830112613b1257600080fd5b613b21898335602085016137a8565b94506060880135915080821115613b3757600080fd5b613b4389838a01613944565b93506080880135915080821115613b5957600080fd5b50613b6688828901613a40565b9150509295509295909350565b600080600060608486031215613b8857600080fd5b8335613b93816136af565b92506020840135613ba3816136af565b91506040840135613bb3816136af565b809150509250925092565b600060208284031215613bd057600080fd5b813561359a81613705565b600060208284031215613bed57600080fd5b813561359a816136e1565b60008060408385031215613c0b57600080fd5b8235613c16816136af565b91506020830135613c26816136af565b809150509250929050565b600060208284031215613c4357600080fd5b815162ffffff8116811461359a57600080fd5b80516130c4816136e1565b600060208284031215613c7357600080fd5b815161359a816136e1565b600181811c90821680613c9257607f821691505b602082108103613cb257634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215613cca57600080fd5b815161359a816136af565b601f82111561199457600081815260208120601f850160051c81016020861015613cfc5750805b601f850160051c820191505b81811015612e5457828155600101613d08565b81516001600160401b03811115613d3457613d34613713565b613d4881613d428454613c7e565b84613cd5565b602080601f831160018114613d7d5760008415613d655750858301515b600019600386901b1c1916600185901b178555612e54565b600085815260208120601f198616915b82811015613dac57888601518255948401946001909101908401613d8d565b5085821015613dca5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613dec57600080fd5b815161359a81613a2b565b80516130c481613705565b600060208284031215613e1457600080fd5b815161359a81613705565b80516130c4816136af565b80516130c4816136f6565b600082601f830112613e4657600080fd5b8151613e546137b682613781565b818152846020838601011115613e6957600080fd5b6136a78260208301602087016135d4565b600060208284031215613e8c57600080fd5b81516001600160401b0380821115613ea357600080fd5b9083019060e08286031215613eb757600080fd5b613ebf613729565b613ec883613c56565b8152613ed660208401613c56565b6020820152613ee760408401613e2a565b6040820152613ef860608401613df7565b6060820152613f0960808401613e1f565b6080820152613f1a60a08401613e1f565b60a082015260c083015182811115613f3157600080fd5b613f3d87828601613e35565b60c08301525095945050505050565b600060208284031215613f5e57600080fd5b815161359a816136f6565b600060208284031215613f7b57600080fd5b815164ffffffffff8116811461359a57600080fd5b600060208284031215613fa257600080fd5b5051919050565b600080600060608486031215613fbe57600080fd5b8351613fc9816136af565b6020850151909350613fda816136af565b6040850151909250613bb3816136af565b60008085851115613ffb57600080fd5b8386111561400857600080fd5b5050820193919092039150565b6001600160e01b0319813581811691600485101561403d5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6001600160a01b03831681526040602082018190526000906136a7908301846135f8565b634e487b7160e01b600052603260045260246000fd5b6060815260006140d260608301866135f8565b82810360208481019190915285518083528682019282019060005b818110156141135784516001600160e01b031916835293830193918301916001016140ed565b50508093505050506001600160401b0383166040830152949350505050565b60006001820161415257634e487b7160e01b600052601160045260246000fd5b5060010190565b6000825161416b8184602087016135d4565b9190910192915050565b6000806040838503121561418857600080fd5b825161419381613705565b602084015190925063ffffffff81168114613c2657600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220a03b75222fa3161ec503c9fb0697b02b91476ac66f73a3b1afd2ea454b380dec64736f6c63430008140033",
|
884
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c6fbb2811610104578063b03d2a8e116100a2578063dd38b49e11610071578063dd38b49e14610379578063edabac0314610435578063eeff428e14610446578063f7c34ee01461047557600080fd5b8063b03d2a8e146103f8578063b68d18091461040b578063bf7e214f1461041a578063c22f980d1461042257600080fd5b8063893d20e8116100de578063893d20e8146103a75780638e32e979146103af5780638fb36037146103c2578063ada9652e146103e357600080fd5b80636c6fbb28146103795780637a9e5e4b1461038c578063872309c71461039f57600080fd5b806327bb7a331161017c5780635ab1bd531161014b5780635ab1bd5314610310578063644c45e014610335578063675393bf146103535780636a778e731461036657600080fd5b806327bb7a33146102cf578063329d6e74146102e257806336fc697e146102f557806349bb9e4b146102fd57600080fd5b8063138461e0116101b8578063138461e0146102525780631eff4b2214610272578063214cdb80146102a7578063254f6866146102bc57600080fd5b806301ffc9a7146101df5780630d8e6e2c146102215780630fec111c1461023d575b600080fd5b61020c6101ed3660046135b9565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610229610488565b60405162ffffff9091168152602001610218565b610245610512565b6040516102189190613624565b61025a6106d6565b6040516001600160601b039091168152602001610218565b6102997f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b6102ba6102b53660046135b9565b6106e1565b005b6102ba6102ca3660046136c4565b61070e565b6102ba6102dd366004613806565b61088b565b6102ba6102f036600461389e565b610930565b6102ba610a7d565b6102ba61030b3660046138d2565b610ac3565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b6000805160206141ae833981519152546001600160601b031661025a565b6102ba6103613660046136c4565b610bc2565b61025a6103743660046136c4565b610cd0565b6102ba610387366004613aaf565b611586565b6102ba61039a3660046136c4565b6115a6565b610299600081565b61031d611629565b6102ba6103bd366004613b73565b611760565b6103ca611999565b6040516001600160e01b03199091168152602001610218565b6102996000805160206141ae83398151915281565b6102ba610406366004613bbe565b6119d1565b60405160468152602001610218565b61031d611cd0565b6102ba610430366004613bdb565b611cec565b6007546001600160a01b031661031d565b61044e611f17565b604080516001600160a01b0390931683526001600160601b03909116602083015201610218565b6102ba610483366004613bf8565b612923565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156104e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050d9190613c31565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ea9190613c61565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610632611629565b6001600160a01b0316815260200182600101805461064f90613c7e565b80601f016020809104026020016040519081016040528092919081815260200182805461067b90613c7e565b80156106c85780601f1061069d576101008083540402835291602001916106c8565b820191906000526020600020905b8154815290600101906020018083116106ab57829003601f168201915b505050505081525091505090565b600061050d3061299a565b6106e9612b9b565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610716611629565b6001600160a01b0316336001600160a01b03161461074e5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6007546001600160a01b0316610777576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b03811661079e57604051631aa1808560e31b815260040160405180910390fd5b6007546001600160a01b03908116908216036107cd57604051630666e2a560e01b815260040160405180910390fd5b6006546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa15801561081d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108419190613cb8565b6001600160a01b0316146108685760405163f026367160e01b815260040160405180910390fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b610893612b9b565b61089d8287612923565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016109268382613d1b565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610952610488565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610992573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b69190613dda565b6000805160206141ee8339815191528054600160401b900460ff16806109e9575080546001600160401b03808416911610155b15610a075760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a3183612bd4565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610a85612b9b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000805160206141ee8339815191528054600160401b810460ff1615906001600160401b0316600081158015610af65750825b90506000826001600160401b03166001148015610b125750303b155b905081158015610b20575080155b15610b3e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610b6857845460ff60401b1916600160401b1785555b610b728787612bdc565b8315610bb957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610bca612b9b565b806001600160a01b03163b600003610c005760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610745565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610c7a575060408051601f3d908101601f19168201909252610c7791810190613e02565b60015b610ca25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610745565b80610ccb5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610745565b505b50565b6000610cda611629565b6001600160a01b0316336001600160a01b031614610d0d5760405163086391f760e31b8152336004820152602401610745565b6006546001600160a01b031615610d3757604051632c237de760e11b815260040160405180910390fd5b6004546001600160a01b031615610d6157604051630157f74960e01b815260040160405180910390fd5b6005546001600160a01b031615610d8b5760405163ab0cc43960e01b815260040160405180910390fd5b6008546001600160a01b031615610db557604051637f405a2960e01b815260040160405180910390fd5b6001600160a01b038216610ddc576040516309353e4560e11b815260040160405180910390fd5b60008290506000816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e459190613cb8565b905060008190506000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb09190613cb8565b905060008190506000856001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b9190613cb8565b905060008190506000876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f869190613cb8565b9050806001600160a01b038716610faf576040516295661560e31b815260040160405180910390fd5b6001600160a01b038516610fd65760405163e267254160e01b815260040160405180910390fd5b6001600160a01b038316610ffd57604051630ddeaef560e11b815260040160405180910390fd5b6001600160a01b038116611024576040516301fa2a2b60e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611062573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110869190613cb8565b6001600160a01b0316896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f19190613cb8565b6001600160a01b031614611118576040516334ddf1a760e21b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611156573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117a9190613cb8565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e59190613cb8565b6001600160a01b03161461120c576040516326c89a4160e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126e9190613cb8565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d99190613cb8565b6001600160a01b03161461130057604051631129422760e31b815260040160405180910390fd5b886001600160a01b0316846001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611348573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136c9190613cb8565b6001600160a01b03161461139357604051631b25e96d60e31b815260040160405180910390fd5b886001600160a01b0316866001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ff9190613cb8565b6001600160a01b031614611426576040516331783c7160e11b815260040160405180910390fd5b886001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611464573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114889190613cb8565b600480546001600160a01b03199081166001600160a01b03938416179091556005805482168a84161790556006805482168e8416908117909155600780548316898516179055600880548316878516179055600980549092168484161790915560025490916000911663026bc43b836114ff611629565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016000604051808303816000875af115801561154c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115749190810190613e7a565b519d9c50505050505050505050505050565b61159233600036612d56565b61159f8585858486612e5c565b5050505050565b336115af611cd0565b6001600160a01b0316816001600160a01b0316146115ea5760405162d1953b60e31b81526001600160a01b0382166004820152602401610745565b816001600160a01b03163b600003611620576040516361798f2f60e11b81526001600160a01b0383166004820152602401610745565b610ccb82612fe5565b6000806000805160206141ae83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bd9190613e02565b1561174a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611720573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117449190613cb8565b91505090565b54600160601b90046001600160a01b0316919050565b611768612b9b565b6117e883846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ce9190613c61565b603c6000856040518060200160405280600081525061088b565b6001600160a01b038216156118055761180082613046565b611974565b60006118196001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611879573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189d9190613f4c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156118e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119069190613cb8565b9050611972816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196d9190613cb8565b613046565b505b611984634a531f3360e01b6106e1565b61199463b68d180960e01b6106e1565b505050565b6000805160206141ce833981519152805460009190600160a01b900460ff166119c3576000611744565b638fb3603760e01b91505090565b6001546001600160a01b0316604051630bee2f1560e11b81523360048201526001600160a01b0391909116906317dc5e2a90602401602060405180830381865afa158015611a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a479190613e02565b611a66576040516302613e9f60e51b8152336004820152602401610745565b6040516301ffc9a760e01b8152639a29895960e01b6004820152339081906301ffc9a790602401602060405180830381865afa158015611aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ace9190613e02565b611af5576040516236c14d60e71b81526001600160a01b0382166004820152602401610745565b6000611b096001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b038481166004830152919250600091831690638b09a5f090602401600060405180830381865afa158015611b55573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b7d9190810190613e7a565b602001516040516305247a1760e51b81526001600160601b03821660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611bd4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bfc9190810190613e7a565b608001519050806001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c649190613cb8565b6040516313bfaf6360e31b81526001600160a01b03868116600483015287151560248301529190911690639dfd7b1890604401600060405180830381600087803b158015611cb157600080fd5b505af1158015611cc5573d6000803e3d6000fd5b505050505050505050565b6000805160206141ce833981519152546001600160a01b031690565b80611cff6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d729190613cb8565b6001600160a01b0316336001600160a01b031614611da5576040516302613e9f60e51b8152336004820152602401610745565b6000611db96001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611e0c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e349190810190613e7a565b608081015160075491925090600090611e55906001600160a01b0316613057565b60405163189acdbd60e31b81526001600160a01b0384811660048301529192509082169063c4d66de890602401600060405180830381600087803b158015611e9c57600080fd5b505af1158015611eb0573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401600060405180830381600087803b158015611ef757600080fd5b505af1158015611f0b573d6000803e3d6000fd5b50505050505050505050565b600454600090819033908290611f35906001600160a01b0316613057565b60405163189acdbd60e31b81523060048201529091506001600160a01b0382169063c4d66de890602401600060405180830381600087803b158015611f7957600080fd5b505af1158015611f8d573d6000803e3d6000fd5b5050600654611fa792506001600160a01b03169050613057565b9350836001600160a01b031663c0c53b8b82611fcb6001546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015290821660248201529085166044820152606401600060405180830381600087803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b50506009546000925061204c91506001600160a01b0316613057565b60405163189acdbd60e31b81526001600160a01b0387811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561209357600080fd5b505af11580156120a7573d6000803e3d6000fd5b505060405163048935d560e31b81526001600160a01b03848116600483015288169250632449aea89150602401600060405180830381600087803b1580156120ee57600080fd5b505af1158015612102573d6000803e3d6000fd5b50506007546000925061211e91506001600160a01b0316613057565b60405163189acdbd60e31b81526001600160a01b0388811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561216557600080fd5b505af1158015612179573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528916925063f7bc431c9150602401600060405180830381600087803b1580156121c057600080fd5b505af11580156121d4573d6000803e3d6000fd5b5050600854600092506121f091506001600160a01b0316613057565b60405163189acdbd60e31b81526001600160a01b0389811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561223757600080fd5b505af115801561224b573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b0384811660048301528a16925063422c9d009150602401600060405180830381600087803b15801561229157600080fd5b505af11580156122a5573d6000803e3d6000fd5b5050600554600092506122c191506001600160a01b0316613057565b9050846001600160a01b03166325c471a06122da6130c9565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015612333573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123579190613dda565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038416602482015260006044820152606401600060405180830381600087803b1580156123ae57600080fd5b505af11580156123c2573d6000803e3d6000fd5b505060405163189acdbd60e31b81526001600160a01b038b811660048301528416925063c4d66de89150602401600060405180830381600087803b15801561240957600080fd5b505af115801561241d573d6000803e3d6000fd5b5050604051633b85588160e11b81526001600160a01b0384811660048301528b16925063770ab1029150602401600060405180830381600087803b15801561246457600080fd5b505af1158015612478573d6000803e3d6000fd5b5050505073__$2a34b1f180a6bf22a62a9bc53ba8adfaf5$__639659280286838b86898c6124ae6001546001600160a01b031690565b6124b6610488565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af415801561250b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252f9190613f4c565b60405160e08a901b6001600160e01b03191681526001600160a01b0398891660048201529688166024880152948716604487015292861660648601529085166084850152841660a484015290921660c482015260ff90911660e48201526101040160006040518083038186803b1580156125a857600080fd5b505af41580156125bc573d6000803e3d6000fd5b50505050846001600160a01b031663fe0776f56125d76130c9565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015612630573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126549190613dda565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152306024820152604401600060405180830381600087803b15801561269b57600080fd5b505af11580156126af573d6000803e3d6000fd5b505060025460405163026bc43b60e01b81526001600160a01b038c811660048301528a8116602483015260009450909116915063026bc43b906044016000604051808303816000875af115801561270a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526127329190810190613e7a565b905080600001519750600360009054906101000a90046001600160a01b03166001600160a01b03166381d9b45f8973__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63c6edc3dd6040518163ffffffff1660e01b8152600401602060405180830381865af41580156127a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127cd9190613f69565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63f87bf3736040518163ffffffff1660e01b8152600401602060405180830381865af4158015612816573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283a9190613f90565b6040516001600160e01b031960e086901b1681526001600160601b03909316600484015264ffffffffff90911660248301526044820152606401600060405180830381600087803b15801561288e57600080fd5b505af11580156128a2573d6000803e3d6000fd5b5050604080516001600160a01b038a8116825286811660208301528d81168284015289811660608301528781166080830152881660a08201526001600160601b038c1660c082015290517eccc9e339dab7298ad32b43864beb3b1c0cf136971be26f1e67d90bf43ebd3d93509081900360e0019150a1505050505050509091565b61292b612b9b565b61293481610bc2565b61293c610a7d565b6001600160a01b0382166129635760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206141ae83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000806000805160206141ae83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612a0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2e9190613e02565b15612a5a5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610745565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad29190613e02565b612afa5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610745565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b729190613c61565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6000805160206141ee83398151915254600160401b900460ff16612bd257604051631afcd79f60e31b815260040160405180910390fd5b565b6101da612b9b565b6000805160206141ee8339815191528054600160401b810460ff1615906001600160401b0316600081158015612c0f5750825b90506000826001600160401b03166001148015612c2b5750303b155b905081158015612c39575080155b15612c575760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612c8157845460ff60401b1916600160401b1785555b60008087806020019051810190612c989190613fa9565b9250509150612ca882828b611760565b612cb76028613140565b613140565b600280546001600160a01b0319166001600160a01b0392909216919091179055612ce2612cb2602d90565b600380546001600160a01b0319166001600160a01b0392909216919091179055612d126377cab3db60e11b6106e1565b50508315610bb957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bb0565b6000805160206141ce833981519152600080612d91612d73611cd0565b8730612d83600460008a8c613feb565b612d8c91614015565b613253565b9150915081612e545763ffffffff811615612e3157825460ff60a01b1916600160a01b178355612dbf611cd0565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612dee93929190614045565b600060405180830381600087803b158015612e0857600080fd5b505af1158015612e1c573d6000803e3d6000fd5b5050845460ff60a01b1916855550612e549050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610745565b505050505050565b6000612e68868661335f565b5090506000816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612eab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ecf9190613cb8565b60405163044ec4c360e41b81529091506001600160a01b038216906344ec4c3090612f009089908990600401614085565b600060405180830381600087803b158015612f1a57600080fd5b505af1158015612f2e573d6000803e3d6000fd5b5050505060005b845181101561092657816001600160a01b0316638462319887868481518110612f6057612f606140a9565b6020026020010151888581518110612f7a57612f7a6140a9565b60200260200101516040518463ffffffff1660e01b8152600401612fa0939291906140bf565b600060405180830381600087803b158015612fba57600080fd5b505af1158015612fce573d6000803e3d6000fd5b505050508080612fdd90614132565b915050612f35565b6000805160206141ce83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61304e612b9b565b610ccd81613502565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b0381166130c4576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516368aebf7b60e01b81526000600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af415801561311c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050d9190613dda565b60006131546001546001600160a01b031690565b6001600160a01b031663d39e60438361316b610488565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af41580156131c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e49190613f4c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061324d9190613cb8565b92915050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516132c29190614159565b600060405180830381855afa9150503d80600081146132fd576040519150601f19603f3d011682016040523d82523d6000602084013e613302565b606091505b50915091508115613354576040815110613334578080602001905181019061332a9190614175565b9094509250613354565b602081511061335457808060200190518101906133519190613e02565b93505b505094509492505050565b60008060006133766001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa1580156133c9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526133f19190810190613e7a565b905061340f8160400151613403604690565b60ff9081169116141590565b156134385760405163e3c2794960e01b81526001600160601b0387166004820152602401610745565b6040516308b09a5f60e41b81526001600160a01b03868116600483015260009190841690638b09a5f090602401600060405180830381865afa158015613482573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526134aa9190810190613e7a565b90506134ba816020015188613513565b156134ee57805160405163a811346560e01b81526001600160601b03808a1660048301529091166024820152604401610745565b608090910151905190969095509350505050565b61350a612b9b565b610ccd81612fe5565b6040516399009c5160e01b81526001600160601b0380841660048301528216602482015260009073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af4158015613576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061359a9190613e02565b9392505050565b80356001600160e01b0319811681146130c457600080fd5b6000602082840312156135cb57600080fd5b61359a826135a1565b60005b838110156135ef5781810151838201526020016135d7565b50506000910152565b600081518084526136108160208601602086016135d4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161368d60c08401826001600160a01b03169052565b5060c083015160e0808401526136a76101008401826135f8565b949350505050565b6001600160a01b0381168114610ccd57600080fd5b6000602082840312156136d657600080fd5b813561359a816136af565b6001600160601b0381168114610ccd57600080fd5b60ff81168114610ccd57600080fd5b8015158114610ccd57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561374b5761374b613713565b60405290565b604051601f8201601f191681016001600160401b038111828210171561377957613779613713565b604052919050565b60006001600160401b0382111561379a5761379a613713565b50601f01601f191660200190565b60006137bb6137b684613781565b613751565b90508281528383830111156137cf57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126137f757600080fd5b61359a838335602085016137a8565b60008060008060008060c0878903121561381f57600080fd5b863561382a816136af565b9550602087013561383a816136e1565b9450604087013561384a816136f6565b9350606087013561385a81613705565b9250608087013561386a816136af565b915060a08701356001600160401b0381111561388557600080fd5b61389189828a016137e6565b9150509295509295509295565b6000602082840312156138b057600080fd5b81356001600160401b038111156138c657600080fd5b6136a7848285016137e6565b600080604083850312156138e557600080fd5b82356138f0816136af565b915060208301356001600160401b0381111561390b57600080fd5b613917858286016137e6565b9150509250929050565b60006001600160401b0382111561393a5761393a613713565b5060051b60200190565b600082601f83011261395557600080fd5b813560206139656137b683613921565b828152600592831b850182019282820191908785111561398457600080fd5b8387015b85811015613a1e5780356001600160401b038111156139a75760008081fd5b8801603f81018a136139b95760008081fd5b8581013560406139cb6137b683613921565b82815291851b8301810191888101908d8411156139e85760008081fd5b938201935b83851015613a0d576139fe856135a1565b825293890193908901906139ed565b885250505093850193508401613988565b5090979650505050505050565b6001600160401b0381168114610ccd57600080fd5b600082601f830112613a5157600080fd5b81356020613a616137b683613921565b82815260059290921b84018101918181019086841115613a8057600080fd5b8286015b84811015613aa4578035613a9781613a2b565b8352918301918301613a84565b509695505050505050565b600080600080600060a08688031215613ac757600080fd5b8535613ad2816136e1565b94506020860135613ae2816136af565b935060408601356001600160401b0380821115613afe57600080fd5b818801915088601f830112613b1257600080fd5b613b21898335602085016137a8565b94506060880135915080821115613b3757600080fd5b613b4389838a01613944565b93506080880135915080821115613b5957600080fd5b50613b6688828901613a40565b9150509295509295909350565b600080600060608486031215613b8857600080fd5b8335613b93816136af565b92506020840135613ba3816136af565b91506040840135613bb3816136af565b809150509250925092565b600060208284031215613bd057600080fd5b813561359a81613705565b600060208284031215613bed57600080fd5b813561359a816136e1565b60008060408385031215613c0b57600080fd5b8235613c16816136af565b91506020830135613c26816136af565b809150509250929050565b600060208284031215613c4357600080fd5b815162ffffff8116811461359a57600080fd5b80516130c4816136e1565b600060208284031215613c7357600080fd5b815161359a816136e1565b600181811c90821680613c9257607f821691505b602082108103613cb257634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215613cca57600080fd5b815161359a816136af565b601f82111561199457600081815260208120601f850160051c81016020861015613cfc5750805b601f850160051c820191505b81811015612e5457828155600101613d08565b81516001600160401b03811115613d3457613d34613713565b613d4881613d428454613c7e565b84613cd5565b602080601f831160018114613d7d5760008415613d655750858301515b600019600386901b1c1916600185901b178555612e54565b600085815260208120601f198616915b82811015613dac57888601518255948401946001909101908401613d8d565b5085821015613dca5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613dec57600080fd5b815161359a81613a2b565b80516130c481613705565b600060208284031215613e1457600080fd5b815161359a81613705565b80516130c4816136af565b80516130c4816136f6565b600082601f830112613e4657600080fd5b8151613e546137b682613781565b818152846020838601011115613e6957600080fd5b6136a78260208301602087016135d4565b600060208284031215613e8c57600080fd5b81516001600160401b0380821115613ea357600080fd5b9083019060e08286031215613eb757600080fd5b613ebf613729565b613ec883613c56565b8152613ed660208401613c56565b6020820152613ee760408401613e2a565b6040820152613ef860608401613df7565b6060820152613f0960808401613e1f565b6080820152613f1a60a08401613e1f565b60a082015260c083015182811115613f3157600080fd5b613f3d87828601613e35565b60c08301525095945050505050565b600060208284031215613f5e57600080fd5b815161359a816136f6565b600060208284031215613f7b57600080fd5b815164ffffffffff8116811461359a57600080fd5b600060208284031215613fa257600080fd5b5051919050565b600080600060608486031215613fbe57600080fd5b8351613fc9816136af565b6020850151909350613fda816136af565b6040850151909250613bb3816136af565b60008085851115613ffb57600080fd5b8386111561400857600080fd5b5050820193919092039150565b6001600160e01b0319813581811691600485101561403d5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6001600160a01b03831681526040602082018190526000906136a7908301846135f8565b634e487b7160e01b600052603260045260246000fd5b6060815260006140d260608301866135f8565b82810360208481019190915285518083528682019282019060005b818110156141135784516001600160e01b031916835293830193918301916001016140ed565b50508093505050506001600160401b0383166040830152949350505050565b60006001820161415257634e487b7160e01b600052601160045260246000fd5b5060010190565b6000825161416b8184602087016135d4565b9190910192915050565b6000806040838503121561418857600080fd5b825161419381613705565b602084015190925063ffffffff81168114613c2657600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220a03b75222fa3161ec503c9fb0697b02b91476ac66f73a3b1afd2ea454b380dec64736f6c63430008140033",
|
885
|
+
"linkReferences": {
|
886
|
+
"contracts/instance/InstanceAuthorizationsLib.sol": {
|
887
|
+
"InstanceAuthorizationsLib": [
|
888
|
+
{
|
889
|
+
"length": 20,
|
890
|
+
"start": 9572
|
891
|
+
}
|
892
|
+
]
|
893
|
+
},
|
894
|
+
"contracts/staking/TargetManagerLib.sol": {
|
895
|
+
"TargetManagerLib": [
|
896
|
+
{
|
897
|
+
"length": 20,
|
898
|
+
"start": 10312
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"length": 20,
|
902
|
+
"start": 10421
|
903
|
+
}
|
904
|
+
]
|
905
|
+
},
|
906
|
+
"contracts/type/NftId.sol": {
|
907
|
+
"NftIdLib": [
|
908
|
+
{
|
909
|
+
"length": 20,
|
910
|
+
"start": 1637
|
911
|
+
},
|
912
|
+
{
|
913
|
+
"length": 20,
|
914
|
+
"start": 5957
|
915
|
+
},
|
916
|
+
{
|
917
|
+
"length": 20,
|
918
|
+
"start": 10934
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"length": 20,
|
922
|
+
"start": 13858
|
923
|
+
}
|
924
|
+
]
|
925
|
+
},
|
926
|
+
"contracts/type/RoleId.sol": {
|
927
|
+
"RoleIdLib": [
|
928
|
+
{
|
929
|
+
"length": 20,
|
930
|
+
"start": 9183
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"length": 20,
|
934
|
+
"start": 9948
|
935
|
+
},
|
936
|
+
{
|
937
|
+
"length": 20,
|
938
|
+
"start": 12744
|
939
|
+
}
|
940
|
+
]
|
941
|
+
},
|
942
|
+
"contracts/type/Version.sol": {
|
943
|
+
"VersionLib": [
|
944
|
+
{
|
945
|
+
"length": 20,
|
946
|
+
"start": 1429
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"length": 20,
|
950
|
+
"start": 2584
|
951
|
+
},
|
952
|
+
{
|
953
|
+
"length": 20,
|
954
|
+
"start": 9655
|
955
|
+
},
|
956
|
+
{
|
957
|
+
"length": 20,
|
958
|
+
"start": 12908
|
959
|
+
}
|
960
|
+
],
|
961
|
+
"VersionPartLib": [
|
962
|
+
{
|
963
|
+
"length": 20,
|
964
|
+
"start": 6437
|
965
|
+
}
|
966
|
+
]
|
967
|
+
}
|
968
|
+
},
|
969
|
+
"deployedLinkReferences": {
|
970
|
+
"contracts/instance/InstanceAuthorizationsLib.sol": {
|
971
|
+
"InstanceAuthorizationsLib": [
|
972
|
+
{
|
973
|
+
"length": 20,
|
974
|
+
"start": 9342
|
975
|
+
}
|
976
|
+
]
|
977
|
+
},
|
978
|
+
"contracts/staking/TargetManagerLib.sol": {
|
979
|
+
"TargetManagerLib": [
|
980
|
+
{
|
981
|
+
"length": 20,
|
982
|
+
"start": 10082
|
983
|
+
},
|
984
|
+
{
|
985
|
+
"length": 20,
|
986
|
+
"start": 10191
|
987
|
+
}
|
988
|
+
]
|
989
|
+
},
|
990
|
+
"contracts/type/NftId.sol": {
|
991
|
+
"NftIdLib": [
|
992
|
+
{
|
993
|
+
"length": 20,
|
994
|
+
"start": 1407
|
995
|
+
},
|
996
|
+
{
|
997
|
+
"length": 20,
|
998
|
+
"start": 5727
|
999
|
+
},
|
1000
|
+
{
|
1001
|
+
"length": 20,
|
1002
|
+
"start": 10704
|
1003
|
+
},
|
1004
|
+
{
|
1005
|
+
"length": 20,
|
1006
|
+
"start": 13628
|
1007
|
+
}
|
1008
|
+
]
|
1009
|
+
},
|
1010
|
+
"contracts/type/RoleId.sol": {
|
1011
|
+
"RoleIdLib": [
|
1012
|
+
{
|
1013
|
+
"length": 20,
|
1014
|
+
"start": 8953
|
1015
|
+
},
|
1016
|
+
{
|
1017
|
+
"length": 20,
|
1018
|
+
"start": 9718
|
1019
|
+
},
|
1020
|
+
{
|
1021
|
+
"length": 20,
|
1022
|
+
"start": 12514
|
1023
|
+
}
|
1024
|
+
]
|
1025
|
+
},
|
1026
|
+
"contracts/type/Version.sol": {
|
1027
|
+
"VersionLib": [
|
1028
|
+
{
|
1029
|
+
"length": 20,
|
1030
|
+
"start": 1199
|
1031
|
+
},
|
1032
|
+
{
|
1033
|
+
"length": 20,
|
1034
|
+
"start": 2354
|
1035
|
+
},
|
1036
|
+
{
|
1037
|
+
"length": 20,
|
1038
|
+
"start": 9425
|
1039
|
+
},
|
1040
|
+
{
|
1041
|
+
"length": 20,
|
1042
|
+
"start": 12678
|
1043
|
+
}
|
1044
|
+
],
|
1045
|
+
"VersionPartLib": [
|
1046
|
+
{
|
1047
|
+
"length": 20,
|
1048
|
+
"start": 6207
|
1049
|
+
}
|
1050
|
+
]
|
1051
|
+
}
|
1052
|
+
}
|
1053
|
+
}
|