@etherisc/gif-next 0.0.2-790d44b-698 → 0.0.2-79292f9-089
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +267 -42
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/access → authorization}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +195 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1489 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1159 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1502 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +842 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +906 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +914 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +283 -1679
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +495 -2044
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1693 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1160 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3469 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1126 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +765 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1018 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1395 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1466 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +818 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +907 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +909 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1218 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1181 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1625 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +758 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +852 -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/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1243 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1331 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +230 -384
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +788 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +800 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IPricingService.sol/IPricingService.json} +328 -260
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +948 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IRiskService.sol/IRiskService.json} +187 -192
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1263 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +782 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1201 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +695 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +702 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +242 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +924 -119
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +940 -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 +1106 -235
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1861 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1133 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +832 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1680 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +804 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +605 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +700 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/component/IComponent.sol/IComponentModule.json → shared/INftOwnable.sol/INftOwnable.json} +66 -52
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +159 -154
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +940 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +102 -165
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +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/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/Service.sol/Service.json} +260 -193
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +469 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1412 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +387 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1941 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -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 +374 -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 +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +222 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -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 +81 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
- package/contracts/authorization/AccessAdmin.sol +590 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +220 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +135 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +91 -0
- package/contracts/distribution/BasicDistribution.sol +138 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/distribution/Distribution.sol +295 -0
- package/contracts/distribution/DistributionService.sol +322 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/distribution/IDistributionService.sol +95 -0
- package/contracts/instance/BundleSet.sol +126 -0
- package/contracts/instance/IInstance.sol +57 -47
- package/contracts/instance/IInstanceService.sol +92 -0
- package/contracts/instance/Instance.sol +216 -61
- package/contracts/instance/InstanceAdmin.sol +285 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +408 -0
- package/contracts/instance/InstanceService.sol +466 -0
- package/contracts/instance/InstanceServiceManager.sol +40 -0
- package/contracts/instance/InstanceStore.sol +277 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +105 -0
- package/contracts/instance/base/ObjectSet.sol +79 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +46 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +167 -0
- package/contracts/oracle/OracleService.sol +279 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +166 -0
- package/contracts/pool/BasicPoolAuthorization.sol +58 -0
- package/contracts/pool/BundleService.sol +436 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +134 -0
- package/contracts/pool/IPoolComponent.sol +58 -0
- package/contracts/pool/IPoolService.sol +163 -0
- package/contracts/pool/Pool.sol +328 -0
- package/contracts/pool/PoolService.sol +541 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +250 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +53 -0
- package/contracts/product/BasicProductAuthorization.sol +43 -0
- package/contracts/product/ClaimService.sol +416 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +63 -0
- package/contracts/product/IClaimService.sol +100 -0
- package/contracts/product/IPolicyService.sol +84 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +40 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +584 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +304 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +411 -0
- package/contracts/product/RiskService.sol +97 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +131 -40
- package/contracts/registry/IRegistry.sol +140 -29
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +593 -346
- package/contracts/registry/RegistryAdmin.sol +464 -0
- package/contracts/registry/RegistryService.sol +251 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseLifecycle.sol +29 -0
- package/contracts/registry/ReleaseRegistry.sol +538 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/Component.sol +268 -0
- package/contracts/shared/ComponentService.sol +641 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +108 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/{instance/base → shared}/ILifecycle.sol +4 -5
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +10 -19
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +25 -0
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InitializableERC165.sol +27 -0
- package/contracts/shared/InstanceLinkedComponent.sol +172 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +99 -0
- package/contracts/shared/Registerable.sol +54 -65
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +82 -0
- package/contracts/shared/TokenHandler.sol +139 -0
- package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
- package/contracts/staking/IStaking.sol +167 -0
- package/contracts/staking/IStakingService.sol +160 -0
- package/contracts/staking/StakeManagerLib.sol +206 -0
- package/contracts/staking/Staking.sol +497 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +50 -0
- package/contracts/staking/StakingReader.sol +183 -0
- package/contracts/staking/StakingService.sol +407 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +135 -0
- package/contracts/{types → type}/Blocknumber.sol +27 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/{types → type}/Key32.sol +8 -3
- package/contracts/{types → type}/NftId.sol +21 -15
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +271 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +90 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +1 -1
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +93 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +43 -5
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +38 -15
- package/contracts/type/UFixed.sol +351 -0
- package/contracts/{types → type}/Version.sol +13 -3
- package/contracts/upgradeability/IVersionable.sol +53 -0
- package/contracts/upgradeability/ProxyManager.sol +198 -0
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +14 -0
- package/contracts/upgradeability/Versionable.sol +59 -0
- package/package.json +11 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -405
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -174
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -340
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -487
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -370
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -578
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -444
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -364
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -710
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -364
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -511
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -511
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -595
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -484
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -366
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -607
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -922
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +0 -4
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +0 -248
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +0 -4
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -405
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -578
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -575
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -443
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -270
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
- package/contracts/components/BaseComponent.sol +0 -94
- package/contracts/components/Distribution.sol +0 -132
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/components/IDistributionComponent.sol +0 -47
- package/contracts/components/IPoolComponent.sol +0 -71
- package/contracts/components/IProductComponent.sol +0 -38
- package/contracts/components/Pool.sol +0 -235
- package/contracts/components/Product.sol +0 -227
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -22
- package/contracts/instance/base/IKeyValueStore.sol +0 -50
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -91
- package/contracts/instance/base/KeyValueStore.sol +0 -161
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -70
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -40
- package/contracts/instance/module/pool/PoolModule.sol +0 -90
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -82
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -138
- package/contracts/instance/service/ComponentOwnerService.sol +0 -157
- package/contracts/instance/service/DistributionService.sol +0 -59
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- package/contracts/instance/service/IDistributionService.sol +0 -12
- package/contracts/instance/service/IPoolService.sol +0 -37
- package/contracts/instance/service/IProductService.sol +0 -107
- package/contracts/instance/service/PoolService.sol +0 -149
- package/contracts/instance/service/ProductService.sol +0 -509
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/ERC165.sol +0 -21
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/shared/IVersionable.sol +0 -94
- package/contracts/shared/Proxy.sol +0 -94
- package/contracts/shared/Versionable.sol +0 -141
- package/contracts/test/TestDistribution.sol +0 -21
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestPool.sol +0 -25
- package/contracts/test/TestProduct.sol +0 -72
- package/contracts/test/TestRegisterable.sol +0 -19
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -32
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -56
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/ObjectType.sol +0 -131
- package/contracts/types/ReferralId.sol +0 -48
- package/contracts/types/RoleId.sol +0 -38
- package/contracts/types/UFixed.sol +0 -209
@@ -0,0 +1,804 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "ComponentServiceManager",
|
4
|
+
"sourceName": "contracts/shared/ComponentServiceManager.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "registryAddress",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"stateMutability": "nonpayable",
|
15
|
+
"type": "constructor"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "NftId",
|
21
|
+
"name": "nftId",
|
22
|
+
"type": "uint96"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
26
|
+
"type": "error"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"inputs": [
|
30
|
+
{
|
31
|
+
"internalType": "address",
|
32
|
+
"name": "contractAddress",
|
33
|
+
"type": "address"
|
34
|
+
}
|
35
|
+
],
|
36
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
37
|
+
"type": "error"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"inputs": [],
|
41
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "account",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorNftOwnableNotOwner",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "registryAddress",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorNotRegistry",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
68
|
+
{
|
69
|
+
"internalType": "Version",
|
70
|
+
"name": "nextVersion",
|
71
|
+
"type": "uint24"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorProxyManagerNextVersionNotIncreasing",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [],
|
79
|
+
"name": "ErrorProxyManagerNotYetDeployed",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [],
|
84
|
+
"name": "ErrorProxyManagerProxyAlreadyDeployed",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [],
|
89
|
+
"name": "ErrorProxyManagerZeroVersion",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [],
|
94
|
+
"name": "InvalidInitialization",
|
95
|
+
"type": "error"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"inputs": [],
|
99
|
+
"name": "NotInitializing",
|
100
|
+
"type": "error"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"anonymous": false,
|
104
|
+
"inputs": [
|
105
|
+
{
|
106
|
+
"indexed": false,
|
107
|
+
"internalType": "uint64",
|
108
|
+
"name": "version",
|
109
|
+
"type": "uint64"
|
110
|
+
}
|
111
|
+
],
|
112
|
+
"name": "Initialized",
|
113
|
+
"type": "event"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"anonymous": false,
|
117
|
+
"inputs": [
|
118
|
+
{
|
119
|
+
"indexed": true,
|
120
|
+
"internalType": "address",
|
121
|
+
"name": "proxy",
|
122
|
+
"type": "address"
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"indexed": false,
|
126
|
+
"internalType": "address",
|
127
|
+
"name": "initialImplementation",
|
128
|
+
"type": "address"
|
129
|
+
}
|
130
|
+
],
|
131
|
+
"name": "LogProxyManagerVersionableDeployed",
|
132
|
+
"type": "event"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"anonymous": false,
|
136
|
+
"inputs": [
|
137
|
+
{
|
138
|
+
"indexed": true,
|
139
|
+
"internalType": "address",
|
140
|
+
"name": "proxy",
|
141
|
+
"type": "address"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"indexed": false,
|
145
|
+
"internalType": "address",
|
146
|
+
"name": "upgradedImplementation",
|
147
|
+
"type": "address"
|
148
|
+
}
|
149
|
+
],
|
150
|
+
"name": "LogProxyManagerVersionableUpgraded",
|
151
|
+
"type": "event"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"inputs": [],
|
155
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
156
|
+
"outputs": [
|
157
|
+
{
|
158
|
+
"internalType": "bytes32",
|
159
|
+
"name": "",
|
160
|
+
"type": "bytes32"
|
161
|
+
}
|
162
|
+
],
|
163
|
+
"stateMutability": "view",
|
164
|
+
"type": "function"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"inputs": [
|
168
|
+
{
|
169
|
+
"internalType": "address",
|
170
|
+
"name": "initialImplementation",
|
171
|
+
"type": "address"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"internalType": "bytes",
|
175
|
+
"name": "initializationData",
|
176
|
+
"type": "bytes"
|
177
|
+
}
|
178
|
+
],
|
179
|
+
"name": "deploy",
|
180
|
+
"outputs": [
|
181
|
+
{
|
182
|
+
"internalType": "contract IVersionable",
|
183
|
+
"name": "versionable",
|
184
|
+
"type": "address"
|
185
|
+
}
|
186
|
+
],
|
187
|
+
"stateMutability": "nonpayable",
|
188
|
+
"type": "function"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"inputs": [
|
192
|
+
{
|
193
|
+
"internalType": "address",
|
194
|
+
"name": "initialImplementation",
|
195
|
+
"type": "address"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"internalType": "bytes",
|
199
|
+
"name": "initializationData",
|
200
|
+
"type": "bytes"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"internalType": "bytes32",
|
204
|
+
"name": "salt",
|
205
|
+
"type": "bytes32"
|
206
|
+
}
|
207
|
+
],
|
208
|
+
"name": "deployDetermenistic",
|
209
|
+
"outputs": [
|
210
|
+
{
|
211
|
+
"internalType": "contract IVersionable",
|
212
|
+
"name": "versionable",
|
213
|
+
"type": "address"
|
214
|
+
}
|
215
|
+
],
|
216
|
+
"stateMutability": "nonpayable",
|
217
|
+
"type": "function"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"inputs": [],
|
221
|
+
"name": "getComponentService",
|
222
|
+
"outputs": [
|
223
|
+
{
|
224
|
+
"internalType": "contract ComponentService",
|
225
|
+
"name": "",
|
226
|
+
"type": "address"
|
227
|
+
}
|
228
|
+
],
|
229
|
+
"stateMutability": "view",
|
230
|
+
"type": "function"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"inputs": [
|
234
|
+
{
|
235
|
+
"internalType": "address",
|
236
|
+
"name": "proxyOwner",
|
237
|
+
"type": "address"
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"internalType": "bytes",
|
241
|
+
"name": "deployData",
|
242
|
+
"type": "bytes"
|
243
|
+
}
|
244
|
+
],
|
245
|
+
"name": "getDeployData",
|
246
|
+
"outputs": [
|
247
|
+
{
|
248
|
+
"internalType": "bytes",
|
249
|
+
"name": "data",
|
250
|
+
"type": "bytes"
|
251
|
+
}
|
252
|
+
],
|
253
|
+
"stateMutability": "pure",
|
254
|
+
"type": "function"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"inputs": [],
|
258
|
+
"name": "getNftId",
|
259
|
+
"outputs": [
|
260
|
+
{
|
261
|
+
"internalType": "NftId",
|
262
|
+
"name": "",
|
263
|
+
"type": "uint96"
|
264
|
+
}
|
265
|
+
],
|
266
|
+
"stateMutability": "view",
|
267
|
+
"type": "function"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"inputs": [],
|
271
|
+
"name": "getOwner",
|
272
|
+
"outputs": [
|
273
|
+
{
|
274
|
+
"internalType": "address",
|
275
|
+
"name": "",
|
276
|
+
"type": "address"
|
277
|
+
}
|
278
|
+
],
|
279
|
+
"stateMutability": "view",
|
280
|
+
"type": "function"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"inputs": [],
|
284
|
+
"name": "getProxy",
|
285
|
+
"outputs": [
|
286
|
+
{
|
287
|
+
"internalType": "contract UpgradableProxyWithAdmin",
|
288
|
+
"name": "",
|
289
|
+
"type": "address"
|
290
|
+
}
|
291
|
+
],
|
292
|
+
"stateMutability": "view",
|
293
|
+
"type": "function"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"inputs": [],
|
297
|
+
"name": "getRegistry",
|
298
|
+
"outputs": [
|
299
|
+
{
|
300
|
+
"internalType": "contract IRegistry",
|
301
|
+
"name": "",
|
302
|
+
"type": "address"
|
303
|
+
}
|
304
|
+
],
|
305
|
+
"stateMutability": "view",
|
306
|
+
"type": "function"
|
307
|
+
},
|
308
|
+
{
|
309
|
+
"inputs": [
|
310
|
+
{
|
311
|
+
"internalType": "bytes",
|
312
|
+
"name": "upgradeData",
|
313
|
+
"type": "bytes"
|
314
|
+
}
|
315
|
+
],
|
316
|
+
"name": "getUpgradeData",
|
317
|
+
"outputs": [
|
318
|
+
{
|
319
|
+
"internalType": "bytes",
|
320
|
+
"name": "data",
|
321
|
+
"type": "bytes"
|
322
|
+
}
|
323
|
+
],
|
324
|
+
"stateMutability": "pure",
|
325
|
+
"type": "function"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"inputs": [],
|
329
|
+
"name": "getVersion",
|
330
|
+
"outputs": [
|
331
|
+
{
|
332
|
+
"internalType": "Version",
|
333
|
+
"name": "",
|
334
|
+
"type": "uint24"
|
335
|
+
}
|
336
|
+
],
|
337
|
+
"stateMutability": "view",
|
338
|
+
"type": "function"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"inputs": [
|
342
|
+
{
|
343
|
+
"internalType": "uint256",
|
344
|
+
"name": "idx",
|
345
|
+
"type": "uint256"
|
346
|
+
}
|
347
|
+
],
|
348
|
+
"name": "getVersion",
|
349
|
+
"outputs": [
|
350
|
+
{
|
351
|
+
"internalType": "Version",
|
352
|
+
"name": "",
|
353
|
+
"type": "uint24"
|
354
|
+
}
|
355
|
+
],
|
356
|
+
"stateMutability": "view",
|
357
|
+
"type": "function"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"inputs": [],
|
361
|
+
"name": "getVersionCount",
|
362
|
+
"outputs": [
|
363
|
+
{
|
364
|
+
"internalType": "uint256",
|
365
|
+
"name": "",
|
366
|
+
"type": "uint256"
|
367
|
+
}
|
368
|
+
],
|
369
|
+
"stateMutability": "view",
|
370
|
+
"type": "function"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"inputs": [
|
374
|
+
{
|
375
|
+
"internalType": "Version",
|
376
|
+
"name": "_version",
|
377
|
+
"type": "uint24"
|
378
|
+
}
|
379
|
+
],
|
380
|
+
"name": "getVersionInfo",
|
381
|
+
"outputs": [
|
382
|
+
{
|
383
|
+
"components": [
|
384
|
+
{
|
385
|
+
"internalType": "Version",
|
386
|
+
"name": "version",
|
387
|
+
"type": "uint24"
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"internalType": "address",
|
391
|
+
"name": "implementation",
|
392
|
+
"type": "address"
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"internalType": "address",
|
396
|
+
"name": "activatedBy",
|
397
|
+
"type": "address"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"internalType": "Timestamp",
|
401
|
+
"name": "activatedAt",
|
402
|
+
"type": "uint40"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"internalType": "Blocknumber",
|
406
|
+
"name": "activatedIn",
|
407
|
+
"type": "uint32"
|
408
|
+
}
|
409
|
+
],
|
410
|
+
"internalType": "struct ProxyManager.VersionInfo",
|
411
|
+
"name": "",
|
412
|
+
"type": "tuple"
|
413
|
+
}
|
414
|
+
],
|
415
|
+
"stateMutability": "view",
|
416
|
+
"type": "function"
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"inputs": [],
|
420
|
+
"name": "initializeERC165",
|
421
|
+
"outputs": [],
|
422
|
+
"stateMutability": "nonpayable",
|
423
|
+
"type": "function"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"inputs": [
|
427
|
+
{
|
428
|
+
"internalType": "address",
|
429
|
+
"name": "initialOwner",
|
430
|
+
"type": "address"
|
431
|
+
},
|
432
|
+
{
|
433
|
+
"internalType": "address",
|
434
|
+
"name": "registryAddress",
|
435
|
+
"type": "address"
|
436
|
+
}
|
437
|
+
],
|
438
|
+
"name": "initializeNftOwnable",
|
439
|
+
"outputs": [],
|
440
|
+
"stateMutability": "nonpayable",
|
441
|
+
"type": "function"
|
442
|
+
},
|
443
|
+
{
|
444
|
+
"inputs": [
|
445
|
+
{
|
446
|
+
"internalType": "address",
|
447
|
+
"name": "registry",
|
448
|
+
"type": "address"
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"name": "initializeProxyManager",
|
452
|
+
"outputs": [],
|
453
|
+
"stateMutability": "nonpayable",
|
454
|
+
"type": "function"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"inputs": [
|
458
|
+
{
|
459
|
+
"internalType": "address",
|
460
|
+
"name": "registryAddress",
|
461
|
+
"type": "address"
|
462
|
+
}
|
463
|
+
],
|
464
|
+
"name": "initializeRegistryLinked",
|
465
|
+
"outputs": [],
|
466
|
+
"stateMutability": "nonpayable",
|
467
|
+
"type": "function"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"inputs": [],
|
471
|
+
"name": "linkToProxy",
|
472
|
+
"outputs": [
|
473
|
+
{
|
474
|
+
"internalType": "NftId",
|
475
|
+
"name": "",
|
476
|
+
"type": "uint96"
|
477
|
+
}
|
478
|
+
],
|
479
|
+
"stateMutability": "nonpayable",
|
480
|
+
"type": "function"
|
481
|
+
},
|
482
|
+
{
|
483
|
+
"inputs": [],
|
484
|
+
"name": "linkToRegisteredNftId",
|
485
|
+
"outputs": [
|
486
|
+
{
|
487
|
+
"internalType": "NftId",
|
488
|
+
"name": "nftId",
|
489
|
+
"type": "uint96"
|
490
|
+
}
|
491
|
+
],
|
492
|
+
"stateMutability": "nonpayable",
|
493
|
+
"type": "function"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"inputs": [
|
497
|
+
{
|
498
|
+
"internalType": "bytes4",
|
499
|
+
"name": "interfaceId",
|
500
|
+
"type": "bytes4"
|
501
|
+
}
|
502
|
+
],
|
503
|
+
"name": "registerInterface",
|
504
|
+
"outputs": [],
|
505
|
+
"stateMutability": "nonpayable",
|
506
|
+
"type": "function"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"inputs": [
|
510
|
+
{
|
511
|
+
"internalType": "bytes4",
|
512
|
+
"name": "interfaceId",
|
513
|
+
"type": "bytes4"
|
514
|
+
}
|
515
|
+
],
|
516
|
+
"name": "supportsInterface",
|
517
|
+
"outputs": [
|
518
|
+
{
|
519
|
+
"internalType": "bool",
|
520
|
+
"name": "",
|
521
|
+
"type": "bool"
|
522
|
+
}
|
523
|
+
],
|
524
|
+
"stateMutability": "view",
|
525
|
+
"type": "function"
|
526
|
+
},
|
527
|
+
{
|
528
|
+
"inputs": [
|
529
|
+
{
|
530
|
+
"internalType": "address",
|
531
|
+
"name": "newImplementation",
|
532
|
+
"type": "address"
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"internalType": "bytes",
|
536
|
+
"name": "upgradeData",
|
537
|
+
"type": "bytes"
|
538
|
+
}
|
539
|
+
],
|
540
|
+
"name": "upgrade",
|
541
|
+
"outputs": [
|
542
|
+
{
|
543
|
+
"internalType": "contract IVersionable",
|
544
|
+
"name": "versionable",
|
545
|
+
"type": "address"
|
546
|
+
}
|
547
|
+
],
|
548
|
+
"stateMutability": "nonpayable",
|
549
|
+
"type": "function"
|
550
|
+
}
|
551
|
+
],
|
552
|
+
"bytecode": "0x608060405234801561000f575f80fd5b5060405161938838038061938883398101604081905261002e91610ae5565b80610038816100c1565b505f60405161004690610acb565b604051809103905ff08015801561005f573d5f803e3d5ffd5b50604080516001600160a01b0385166020820152308183015281518082038301815260609091019091529091505f61009783836101d7565b600580546001600160a01b0319166001600160a01b039290921691909117905550610c4e92505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03165f8115801561010a5750825b90505f826001600160401b031660011480156101255750303b155b905081158015610133575080155b156101515760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561017f57845460ff60401b1916680100000000000000001785555b610189338761035d565b83156101cf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f6101e06103ef565b6001600160a01b0316336001600160a01b0316146102185760405163086391f760e31b81523360048201526024015b60405180910390fd5b6004541561023c57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f6102456103ef565b9050308481610254848761053c565b60405161026090610ad8565b61026c93929190610b40565b604051809103905ff080158015610285573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610311918591630d8e6e2c9160048083019260209291908290030181865afa1580156102e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061030a9190610b74565b8684610594565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b61036561092a565b61036e8161097a565b610376610a86565b6001600160a01b03821661039d5760405163f17ef42d60e01b815260040160405180910390fd5b507f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b0390931692909202919091179055565b5f807f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561046e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104929190610b96565b1561051d576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156104f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105179190610ae5565b91505090565b546c0100000000000000000000000090046001600160a01b0316919050565b60606349bb9e4b60e01b8383604051602401610559929190610bb5565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6106108373__$8eede297b65ed5a56eb3f84d8232ae93f5$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106039190610b74565b62ffffff90811691161490565b1561062e576040516348c618db60e01b815260040160405180910390fd5b60045415610786576004805461064690600190610be0565b8154811061065657610656610bff565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156106c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106eb9190610c13565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801561073d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107619190610c13565b1161078657604051633e614b6d60e11b815262ffffff8416600482015260240161020f565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af4158015610856573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087a9190610c2a565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661097857604051631afcd79f60e31b815260040160405180910390fd5b565b61098261092a565b806001600160a01b03163b5f036109b75760405163fdeac91f60e01b81526001600160a01b038216600482015260240161020f565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263a34b610960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610a31575060408051601f3d908101601f19168201909252610a2e91810190610b96565b60015b610a595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161020f565b80610a825760405163fdeac91f60e01b81526001600160a01b038316600482015260240161020f565b5050565b610a8e61092a565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61516a806133d283390190565b610e4c8061853c83390190565b5f60208284031215610af5575f80fd5b81516001600160a01b0381168114610b0b575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6001600160a01b038481168252831660208201526060604082018190525f90610b6b90830184610b12565b95945050505050565b5f60208284031215610b84575f80fd5b815162ffffff81168114610b0b575f80fd5b5f60208284031215610ba6575f80fd5b81518015158114610b0b575f80fd5b6001600160a01b03831681526040602082018190525f90610bd890830184610b12565b949350505050565b8181038181111561058e57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c23575f80fd5b5051919050565b5f60208284031215610c3a575f80fd5b815164ffffffffff81168114610b0b575f80fd5b61277780610c5b5f395ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063675393bf116100bf578063ada9652e11610079578063ada9652e146103e1578063b88da759146103f5578063c987336c14610408578063e97fac051461041b578063f7c34ee01461042e578063fd0c63d914610441575f80fd5b8063675393bf1461037f57806367b9cc4a14610392578063893d20e8146103a35780638e9afce6146103ab578063933a9ce8146103be578063946dfcfe146103cf575f80fd5b80631775564d116101105780631775564d14610209578063214cdb801461022957806336fc697e1461023c5780634d459c90146102445780635ab1bd5314610351578063644c45e014610362575f80fd5b806301ffc9a71461014c578063058f7a971461018d57806307484e80146101a25780630d8e6e2c146101cd578063138461e0146101e9575b5f80fd5b61017861015a366004611504565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a061019b366004611546565b610449565b005b6101b56101b0366004611600565b610558565b6040516001600160a01b039091168152602001610184565b6101d56106e4565b60405162ffffff9091168152602001610184565b6101f1610754565b6040516001600160601b039091168152602001610184565b61021c610217366004611655565b61075e565b60405161018491906116d0565b6101a0610237366004611504565b6107b6565b6101a06107e2565b6102f46102523660046116f2565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610184565b6001546001600160a01b03166101b5565b5f80516020612722833981519152546001600160601b03166101f1565b6101a061038d366004611546565b610827565b6005546001600160a01b03166101b5565b6101b5610934565b61021c6103b936600461170d565b610a65565b6002546001600160a01b03166101b5565b6004545b604051908152602001610184565b6103d35f8051602061272283398151915281565b6101d5610403366004611747565b610ab8565b6101b5610416366004611655565b610af6565b6101b5610429366004611655565b610d0f565b6101a061043c36600461175e565b610e90565b6101f1610f06565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f8115801561048e5750825b90505f8267ffffffffffffffff1660011480156104aa5750303b155b9050811580156104b8575080155b156104d65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561050057845460ff60401b1916600160401b1785555b61050a3387610e90565b831561055057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610561610934565b6001600160a01b0316336001600160a01b0316146105995760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156105bd57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f6105c6610934565b9050308386826105d6858961075e565b6040516105e2906114f7565b6105ee93929190611795565b8190604051809103905ff590508015801561060b573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610697918591630d8e6e2c9160048083019260209291908290030181865afa15801561066c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069091906117c9565b8784610f1d565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa15801561072b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074f91906117c9565b905090565b5f61074f306112b3565b60606349bb9e4b60e01b838360405160240161077b9291906117e4565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6107be6114ac565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6107ea6114ac565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61082f6114ac565b806001600160a01b03163b5f036108645760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263a34b610960e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156108de575060408051601f3d908101601f191682019092526108db91810190611807565b60015b6109065760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b8061092f5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610590565b505b50565b5f805f8051602061272283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156109a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c49190611807565b15610a4f576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a499190611826565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b82604051602401610a8091906116d0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f60048281548110610acc57610acc611841565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f610aff610934565b6001600160a01b0316336001600160a01b031614610b325760405163086391f760e31b8152336004820152602401610590565b6004545f03610b545760405163366dfd2160e21b815260040160405180910390fd5b5f610b5d610934565b90505f610b726002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015610bae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bd29190611826565b6002549091506001600160a01b03908116908216639623609d8288610bf689610a65565b6040518463ffffffff1660e01b8152600401610c1493929190611795565b5f604051808303815f87803b158015610c2b575f80fd5b505af1158015610c3d573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03169350610cc2846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cbb91906117c9565b8785610f1d565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b5f610d18610934565b6001600160a01b0316336001600160a01b031614610d4b5760405163086391f760e31b8152336004820152602401610590565b60045415610d6f57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f610d78610934565b9050308481610d87848761075e565b604051610d93906114f7565b610d9f93929190611795565b604051809103905ff080158015610db8573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610e44918591630d8e6e2c9160048083019260209291908290030181865afa158015610e19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3d91906117c9565b8684610f1d565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610e986114ac565b610ea181610827565b610ea96107e2565b6001600160a01b038216610ed05760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061272283398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6002545f9061074f906001600160a01b03166112b3565b610f998373__$8eede297b65ed5a56eb3f84d8232ae93f5$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8c91906117c9565b62ffffff90811691161490565b15610fb7576040516348c618db60e01b815260040160405180910390fd5b6004541561110f5760048054610fcf90600190611855565b81548110610fdf57610fdf611841565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015611050573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110749190611874565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156110c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ea9190611874565b1161110f57604051633e614b6d60e11b815262ffffff84166004820152602401610590565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156111df573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611203919061188b565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b5f805f8051602061272283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561131f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113439190611807565b1561136f5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610590565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156113c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e59190611807565b61140d5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610590565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801561145f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148391906118af565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166114f557604051631afcd79f60e31b815260040160405180910390fd5b565b610e4c806118d683390190565b5f60208284031215611514575f80fd5b81356001600160e01b03198116811461152b575f80fd5b9392505050565b6001600160a01b0381168114610931575f80fd5b5f60208284031215611556575f80fd5b813561152b81611532565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611584575f80fd5b813567ffffffffffffffff81111561159e5761159e611561565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156115cd576115cd611561565b6040528181528382016020018510156115e4575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f60608486031215611612575f80fd5b833561161d81611532565b9250602084013567ffffffffffffffff811115611638575f80fd5b61164486828701611575565b925050604084013590509250925092565b5f8060408385031215611666575f80fd5b823561167181611532565b9150602083013567ffffffffffffffff81111561168c575f80fd5b61169885828601611575565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61152b60208301846116a2565b62ffffff81168114610931575f80fd5b5f60208284031215611702575f80fd5b813561152b816116e2565b5f6020828403121561171d575f80fd5b813567ffffffffffffffff811115611733575f80fd5b61173f84828501611575565b949350505050565b5f60208284031215611757575f80fd5b5035919050565b5f806040838503121561176f575f80fd5b823561177a81611532565b9150602083013561178a81611532565b809150509250929050565b6001600160a01b038481168252831660208201526060604082018190525f906117c0908301846116a2565b95945050505050565b5f602082840312156117d9575f80fd5b815161152b816116e2565b6001600160a01b03831681526040602082018190525f9061173f908301846116a2565b5f60208284031215611817575f80fd5b8151801515811461152b575f80fd5b5f60208284031215611836575f80fd5b815161152b81611532565b634e487b7160e01b5f52603260045260245ffd5b818103818111156107b057634e487b7160e01b5f52601160045260245ffd5b5f60208284031215611884575f80fd5b5051919050565b5f6020828403121561189b575f80fd5b815164ffffffffff8116811461152b575f80fd5b5f602082840312156118bf575f80fd5b81516001600160601b038116811461152b575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220b02e24ae9c6929fbe8eb22e074ca531e2f8a310633ef4d01636627a4ff2aca2764736f6c634300081a00336080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615094806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610260575f3560e01c80636c741e781161014b578063be495be5116100bf578063d7740ee111610084578063d7740ee11461052d578063deaa59df14610535578063dfd92f8a14610548578063e618053f146102d6578063f7c34ee014610550578063f83d08ba146102e9575f80fd5b8063be495be5146104f5578063bf7e214f146104fd578063c142a3031461051a578063d165cb6414610366578063d56cd3d514610366575f80fd5b806389fad8a21161011057806389fad8a2146102d65780638e32e9791461049e5780638fb36037146104b1578063a69df4b5146102e9578063ada9652e146104d2578063b68d1809146104e6575f80fd5b80636c741e78146104505780636e1728071461047057806374933c2f146103665780637a9e5e4b14610483578063893d20e814610496575f80fd5b8063329d6e74116101e25780635ab1bd53116101a75780635ab1bd53146103d5578063644c45e0146103fa57806366101781146102d657806367438c5014610417578063675393bf1461042a57806367ba1c101461043d575f80fd5b8063329d6e741461038c578063339d25901461039f57806336fc697e146103a757806337a897ee146103af57806349bb9e4b146103c2575f80fd5b80631c6b2190116102285780631c6b21901461030b5780631eff4b221461031e578063214cdb801461035357806325e451d31461036657806327bb7a3314610379575f80fd5b806301ffc9a7146102645780630d8e6e2c146102a55780630fec111c146102c157806311a14677146102d6578063138461e0146102eb575b5f80fd5b610290610272366004614206565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102ad610563565b60405162ffffff909116815260200161029c565b6102c96105ea565b60405161029c919061425b565b6102e96102e4366004614317565b610776565b005b6102f3610789565b6040516001600160601b03909116815260200161029c565b6102f3610319366004614370565b610793565b6103457f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161029c565b6102e9610361366004614206565b610ec3565b6102e9610374366004614317565b610eef565b6102e96103873660046144f1565b610efd565b6102e961039a366004614584565b610fa2565b6102e96110ff565b6102e961111d565b6102e96103bd3660046145e4565b611162565b6102e96103d036600461460e565b61147f565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161029c565b5f8051602061501f833981519152546001600160601b03166102f3565b6102e961042536600461465a565b611580565b6102e96104383660046146a2565b6115fd565b6102e961044b3660046145e4565b61170a565b610458611a75565b6040516001600160401b03909116815260200161029c565b6102e961047e36600461465a565b611b6c565b6102e96104913660046146a2565b611bb9565b6103e2611c51565b6102e96104ac3660046146bd565b611d82565b6104b9611eba565b6040516001600160e01b0319909116815260200161029c565b6103455f8051602061501f83398151915281565b604051600b815260200161029c565b6102e9611ef1565b5f8051602061503f833981519152546001600160a01b03166103e2565b6102e96105283660046146fa565b611f00565b6102e961229a565b6102e96105433660046146a2565b612366565b6102e9612608565b6102e961055e36600461473d565b612706565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e59190614774565b905090565b6105f26140bf565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610668573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068c91906147a6565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106d4611c51565b6001600160a01b031681526020018260010180546106f1906147c1565b80601f016020809104026020016040519081016040528092919081815260200182805461071d906147c1565b80156107685780601f1061073f57610100808354040283529160200191610768565b820191905f5260205f20905b81548152906001019060200180831161074b57829003601f168201915b505050505081525091505090565b6107835f8585858561277c565b50505050565b5f6105e530612b76565b5f80806107a0600b612d6f565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107e2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061080691906147f9565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610852573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610879919081019061486e565b90505f81608001519050859450846001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108f3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091791906147a6565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610960573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109849190614951565b15610a6157826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e991906147f9565b604051630232ca4960e01b81526001600160601b03861660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610a36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5a91906147a6565b9450610c88565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610ab7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610adb9190614951565b15610af95760405163b079ec2b60e01b815260040160405180910390fd5b5f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a91906147f9565b604051630232ca4960e01b81526001600160601b03871660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610ba7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcb91906147a6565b604051632601631360e21b81526001600160601b0388811660048301528216602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015610c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c509190614951565b15610c865760405163151dbb3f60e01b81526001600160601b038088166004830152821660248201526044015b60405180910390fd5b505b610d5e5f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cc8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cec91906147f9565b8673__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610d34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d5891906147a6565b8961277c565b5f610d716001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610dbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de291906147f9565b60408481015181516001600160601b0389811682526001600160a01b03858116602084015290921681840152908916606082015290519192507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde9919081900360800190a1606083015160405163153c361360e21b81526001600160a01b03848116600483015283811660248301526001600160601b0389166044830152909116906354f0d84c906064015f604051808303815f87803b158015610ea3575f80fd5b505af1158015610eb5573d5f803e3d5ffd5b505050505050505050919050565b610ecb612e0b565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b61078360018585858561277c565b610f05612e0b565b610f0f8287612706565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610f9883826149b0565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610fc4610563565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611002573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110269190614a7e565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff168061106b575080546001600160401b03808416911610155b156110895760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556110b383612e54565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b335f8061111583600d611110612e5c565b612e96565b505050505050565b611125612e0b565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f8061116e600e612d6f565b92505091505f806111de836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d891906147f9565b856133d6565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b8152600401611220929190614a99565b602060405180830381865af415801561123b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061125f9190614951565b6112a55761129a836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a6134d0565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916112e191908a90600401614a99565b602060405180830381865af41580156112fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113209190614951565b61137457611369836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a00151896134d0565b5060a0810185905260015b801561147657836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113da91906147f9565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040161140a93929190614b97565b5f604051808303815f87803b158015611421575f80fd5b505af1158015611433573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156114c35750825b90505f826001600160401b031660011480156114de5750303b155b9050811580156114ec575080155b1561150a5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561153457845460ff60401b1916600160401b1785555b61153e8787613523565b831561147657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161146d565b6115f86001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156115ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115f291906147a6565b8561277c565b505050565b611605612e0b565b806001600160a01b03163b5f0361163a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c7d565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263a34b610960e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156116b4575060408051601f3d908101601f191682019092526116b191810190614951565b60015b6116dc5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c7d565b806117055760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c7d565b505b50565b5f80611716600c612d6f565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611758573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061177c91906147f9565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa1580156117ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117ee9190614bf6565b90505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b815260040161182e929190614a99565b602060405180830381865af4158015611849573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061186d9190614951565b6118ae576118a3846040518060400160405280600a81526020016950726f6475637446656560b01b8152508460400151896134d0565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916118ea91908990600401614a99565b602060405180830381865af4158015611905573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119299190614951565b61196d57611962846040518060400160405280600d81526020016c50726f63657373696e6746656560981b8152508460600151886134d0565b506060810184905260015b801561111557826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d391906147f9565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b8152600401611a0393929190614b97565b5f604051808303815f87803b158015611a1a575f80fd5b505af1158015611a2c573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a1505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611ae0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b049190614cc2565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611b48573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e59190614a7e565b6115f85f848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156115ce573d5f803e3d5ffd5b33611bd85f8051602061503f833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614611c135760405162d1953b60e31b81526001600160a01b0382166004820152602401610c7d565b816001600160a01b03163b5f03611c48576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c7d565b611705826135b5565b5f805f8051602061501f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611cbd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce19190614951565b15611d6c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d6691906147f9565b91505090565b54600160601b90046001600160a01b0316919050565b611d8a612e0b565b611e0683846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dee91906147a6565b60085f8560405180602001604052805f815250610efd565b6001600160a01b03821615611e2357611e1e82613615565b611e9a565b5f611e2e6002613626565b9050611e98816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9391906147f9565b613615565b505b611eaa634a531f3360e01b610ec3565b6115f863daf9067160e01b610ec3565b5f8051602061503f83398151915280545f9190600160a01b900460ff16611ee1575f611d66565b638fb3603760e01b91505090565b565b3361078381600e61111061372d565b5f80611f0c600f612d6f565b92505091505f80611f52836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111b4573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b8152600401611f94929190614a99565b602060405180830381865af4158015611faf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd39190614951565b612011576120068360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b6134d0565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161204d91908b90600401614a99565b602060405180830381865af4158015612068573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061208c9190614951565b6120cd576120c2836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a6134d0565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161210a91908a90600401614a99565b602060405180830381865af4158015612125573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121499190614951565b61219057612184836040518060400160405280600e81526020016d506572666f726d616e636546656560901b815250846101000151896134d0565b50610100810185905260015b8015610f9857836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f691906147f9565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040161222693929190614b97565b5f604051808303815f87803b15801561223d575f80fd5b505af115801561224f573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b335f806122ab83600f611110613767565b9250925050816001600160a01b03166383e20e5682856001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa1580156122fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123209190614cdd565b6040518363ffffffff1660e01b815260040161233d929190614d6b565b5f604051808303815f87803b158015612354575f80fd5b505af1158015611476573d5f803e3d5ffd5b5f80612372600b612d6f565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123d891906147f9565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015612424573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261244b919081019061486e565b60808101519091506001600160a01b03851661247a5760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b0381166124a15760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b0316036124d35760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561252d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061255191906147f9565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b815260040161258193929190614e68565b5f604051808303815f87803b158015612598575f80fd5b505af11580156125aa573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b335f808061261a84600c6111106137a1565b9250925092505f846001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa15801561265e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126829190614bf6565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f906126b39085908590600401614e9c565b5f604051808303815f87803b1580156126ca575f80fd5b505af11580156126dc573d5f803e3d5ffd5b505050506126ef8484835f0151856137db565b6126ff84848360200151856137db565b5050505050565b61270e612e0b565b612717816115fd565b61271f61111d565b6001600160a01b0382166127465760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061501f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f6127878383613942565b90508515612986576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156127e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128099190614951565b1561288857604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303815f875af1158015612862573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288691906147a6565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156128de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129029190614951565b156129815760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303815f875af115801561295b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061297f91906147a6565b505b611115565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156129dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a009190614951565b15612a7f5760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303815f875af1158015612a59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a7d91906147a6565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612ad5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612af99190614951565b15611115576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303815f875af1158015612b52573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061147691906147a6565b5f805f8051602061501f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612be2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c069190614951565b15612c325780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c7d565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612c84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ca89190614951565b612cd05760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610c7d565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612d22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4691906147a6565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f612d786140bf565b5f612d8b6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612dcf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612df391906147a6565b9250612e01838560016139cd565b9395909450915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16611eef57604051631afcd79f60e31b815260040160405180910390fd5b610260612e0b565b604051637c3940bf60e01b8152600c60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b2d565b5f805f805f80612ea7898989613c6a565b60025460405163d943342d60e01b81526001600160a01b03808516600483015260ff8e1660248301528084166044830152949750929550909350919091169063d943342d906064015f604051808303815f875af1158015612f0a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f319190810190614eba565b5f01519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612f73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f9791906147a6565b50826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fd4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ff891906147f9565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613036573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061305a91906147f9565b94505f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613098573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526130bf919081019061486e565b905073__$51089c37ca0df1177a910c640c8c5f8165$__63825e72798260400151866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa15801561311c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061314091906147f9565b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561317b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061319f91906147f9565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865af41580156131e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061320c91906147f9565b81606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613274573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061329891906147a6565b836040518363ffffffff1660e01b81526004016132b6929190614f8a565b5f604051808303815f87803b1580156132cd575f80fd5b505af11580156132df573d5f803e3d5ffd5b5050505060035f9054906101000a90046001600160a01b03166001600160a01b0316633931d6da856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613342573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061336691906147a6565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526001600160a01b03861660248201526044015f604051808303815f87803b1580156133b3575f80fd5b505af11580156133c5573d5f803e3d5ffd5b505050505050505093509350939050565b5f6133df6140fc565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c3906024015f60405180830381865afa158015613429573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613450919081019061486e565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa1580156134a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c79190614bf6565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613515948a948a949293909290614fab565b60405180910390a150505050565b61352b612e0b565b5f80828060200190518101906135419190614ff1565b9092509050613551825f86611d82565b61355b6002613626565b600280546001600160a01b0319166001600160a01b0392909216919091179055613585600a613626565b600380546001600160a01b0319166001600160a01b0392909216919091179055610783636618d76960e11b610ec3565b5f8051602061503f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61361d612e0b565b6117078161401e565b5f6136396001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561369c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136c09190614cc2565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613703573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061372791906147f9565b92915050565b604051637c3940bf60e01b8152600d60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b2d565b604051637c3940bf60e01b8152600e60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b2d565b604051637c3940bf60e01b8152600b60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b2d565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613831573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138559190614951565b6107835760405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156138a5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526138cc919081019061486e565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac9061390e908690859060ff90600401614e68565b5f604051808303815f87803b158015613925575f80fd5b505af1158015613937573d5f803e3d5ffd5b505050505050505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af41580156139a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139c691906147a6565b9392505050565b6139d56140bf565b5f806139e96001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613a36573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a5d9190810190614eba565b925060ff8516600b14613abb57604083015160ff868116911614613ab657604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c7d565b613b57565b613ad68360400151613acb600c90565b60ff90811691161490565b80613aec5750613aec8360400151613acb600f90565b80613b025750613b028360400151613acb600e90565b80613b185750613b188360400151613acb600d90565b613b5757604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c7d565b613b64836020015161402f565b91508315613c6157816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ba8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bcc91906147f9565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613c14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c389190614951565b15613c6157604051637d71120960e11b81526001600160601b0387166004820152602401610c7d565b50935093915050565b6040516301ffc9a760e01b81526376c9b41160e11b60048201525f90849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015613cb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cdd9190614951565b613d05576040516359bff0e360e11b81526001600160a01b0387166004820152602401610c7d565b5f826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613d41573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613d689190810190614eba565b9050613d7f81604001518760ff9081169116141590565b15613dbf576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff80891660248301529091166044820152606401610c7d565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038981166004830152919091169063d272ac1e90602401602060405180830381865afa158015613e11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e3591906147a6565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613e8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613eb09190614951565b15613ed9576040516322e6526160e11b81526001600160a01b0388166004820152602401610c7d565b613ee6816020015161402f565b93508060a001519150836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f4f91906147f9565b60405163327e18a160e11b81526001600160a01b0384811660048301526001600160401b038816602483015291909116906364fc314290604401602060405180830381865afa158015613fa4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fc89190614951565b614014576020810151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03861660248201526001600160a01b0383166044820152606401610c7d565b5093509350939050565b614026612e0b565b611707816135b5565b5f6140426001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561408e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526140b59190810190614eba565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040518061012001604052805f6001600160601b031681526020015f6001600160601b0316815260200161414160405180604001604052805f81526020015f81525090565b815260200161416160405180604001604052805f81526020015f81525090565b815260200161418160405180604001604052805f81526020015f81525090565b81526020016141a160405180604001604052805f81526020015f81525090565b81526020016141c160405180604001604052805f81526020015f81525090565b81526020016141e160405180604001604052805f81526020015f81525090565b815260200161420160405180604001604052805f81526020015f81525090565b905290565b5f60208284031215614216575f80fd5b81356001600160e01b0319811681146139c6575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516142a3608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526142e761010084018261422d565b949350505050565b6001600160a01b0381168114611707575f80fd5b6001600160601b0381168114611707575f80fd5b5f805f806080858703121561432a575f80fd5b8435614335816142ef565b9350602085013561434581614303565b9250604085013561435581614303565b9150606085013561436581614303565b939692955090935050565b5f60208284031215614380575f80fd5b81356139c681614303565b60ff81168114611707575f80fd5b8015158114611707575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156143dc576143dc6143a6565b60405290565b60405160c081016001600160401b03811182821017156143dc576143dc6143a6565b60405161012081016001600160401b03811182821017156143dc576143dc6143a6565b60405160e081016001600160401b03811182821017156143dc576143dc6143a6565b604051601f8201601f191681016001600160401b0381118282101715614471576144716143a6565b604052919050565b5f6001600160401b03821115614491576144916143a6565b50601f01601f191660200190565b5f82601f8301126144ae575f80fd5b81356144c16144bc82614479565b614449565b8181528460208386010111156144d5575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c08789031215614506575f80fd5b8635614511816142ef565b9550602087013561452181614303565b945060408701356145318161438b565b9350606087013561454181614399565b92506080870135614551816142ef565b915060a08701356001600160401b0381111561456b575f80fd5b61457789828a0161449f565b9150509295509295509295565b5f60208284031215614594575f80fd5b81356001600160401b038111156145a9575f80fd5b6142e78482850161449f565b5f604082840312156145c5575f80fd5b6145cd6143ba565b823581526020928301359281019290925250919050565b5f80608083850312156145f5575f80fd5b6145ff84846145b5565b91506134c784604085016145b5565b5f806040838503121561461f575f80fd5b823561462a816142ef565b915060208301356001600160401b03811115614644575f80fd5b6146508582860161449f565b9150509250929050565b5f805f6060848603121561466c575f80fd5b8335614677816142ef565b9250602084013561468781614303565b9150604084013561469781614303565b809150509250925092565b5f602082840312156146b2575f80fd5b81356139c6816142ef565b5f805f606084860312156146cf575f80fd5b83356146da816142ef565b925060208401356146ea816142ef565b91506040840135614697816142ef565b5f805f60c0848603121561470c575f80fd5b61471685856145b5565b925061472585604086016145b5565b915061473485608086016145b5565b90509250925092565b5f806040838503121561474e575f80fd5b8235614759816142ef565b91506020830135614769816142ef565b809150509250929050565b5f60208284031215614784575f80fd5b815162ffffff811681146139c6575f80fd5b80516147a181614303565b919050565b5f602082840312156147b6575f80fd5b81516139c681614303565b600181811c908216806147d557607f821691505b6020821081036147f357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614809575f80fd5b81516139c6816142ef565b5f82601f830112614823575f80fd5b8151602083015f6148366144bc84614479565b9050828152858383011115614849575f80fd5b8282602083015e5f92810160200192909252509392505050565b80516147a1816142ef565b5f6020828403121561487e575f80fd5b81516001600160401b03811115614893575f80fd5b820160c081850312156148a4575f80fd5b6148ac6143e2565b81516001600160401b038111156148c1575f80fd5b6148cd86828501614814565b8252506148dc60208301614796565b60208201526148ed60408301614863565b60408201526148fe60608301614863565b606082015261490f60808301614863565b608082015260a08201516001600160401b0381111561492c575f80fd5b61493886828501614814565b60a083015250949350505050565b80516147a181614399565b5f60208284031215614961575f80fd5b81516139c681614399565b601f8211156115f857805f5260205f20601f840160051c810160208510156149915750805b601f840160051c820191505b818110156126ff575f815560010161499d565b81516001600160401b038111156149c9576149c96143a6565b6149dd816149d784546147c1565b8461496c565b6020601f821160018114614a0f575f83156149f85750848201515b5f19600385901b1c1916600184901b1784556126ff565b5f84815260208120601f198516915b82811015614a3e5787850151825560209485019460019092019101614a1e565b5084821015614a5b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114611707575f80fd5b5f60208284031215614a8e575f80fd5b81516139c681614a6a565b8251815260208084015181830152825160408301528201516060820152608081016139c6565b6001600160601b0381511682526020810151614ae660208401826001600160601b03169052565b506040810151614b03604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a0810151805161010084015260208101516101208401525060c0810151805161014084015260208101516101608401525060e0810151805161018084015260208101516101a084015250610100015180516101c0830152602001516101e090910152565b6001600160601b03841681526102408101614bb56020830185614abf565b60ff8316610220830152949350505050565b5f60408284031215614bd7575f80fd5b614bdf6143ba565b825181526020928301519281019290925250919050565b5f610200828403128015614c08575f80fd5b50614c11614404565b614c1a83614796565b8152614c2860208401614796565b6020820152614c3a8460408501614bc7565b6040820152614c4c8460808501614bc7565b6060820152614c5e8460c08501614bc7565b6080820152614c71846101008501614bc7565b60a0820152614c84846101408501614bc7565b60c0820152614c97846101808501614bc7565b60e0820152614caa846101c08501614bc7565b6101008201529392505050565b80516147a18161438b565b5f60208284031215614cd2575f80fd5b81516139c68161438b565b5f60e0828403128015614cee575f80fd5b50614cf7614427565b8251614d0281614303565b81526020830151614d1281614a6a565b60208201526040830151614d2581614399565b60408201526060830151614d3881614399565b6060820152614d4960808401614946565b608082015260a0838101519082015260c0928301519281019290925250919050565b5f610100820190506001600160601b03841682526001600160601b0383511660208301526001600160401b0360208401511660408301526040830151151560608301526060830151151560808301526080830151614dcd60a084018215159052565b5060a083015160c083015260c083015160e08301529392505050565b5f815160c08452614dfd60c085018261422d565b90506001600160601b03602084015116602085015260018060a01b03604084015116604085015260018060a01b03606084015116606085015260018060a01b03608084015116608085015260a083015184820360a0860152614e5f828261422d565b95945050505050565b6001600160601b0384168152606060208201525f614e896060830185614de9565b905060ff83166040830152949350505050565b6001600160601b038316815261022081016139c66020830184614abf565b5f60208284031215614eca575f80fd5b81516001600160401b03811115614edf575f80fd5b820160e08185031215614ef0575f80fd5b614ef8614427565b614f0182614796565b8152614f0f60208301614796565b6020820152614f2060408301614cb7565b6040820152614f3160608301614946565b6060820152614f4260808301614863565b6080820152614f5360a08301614863565b60a082015260c08201516001600160401b03811115614f70575f80fd5b614f7c86828501614814565b60c083015250949350505050565b6001600160601b0383168152604060208201525f6142e76040830184614de9565b6001600160601b038716815260c060208201525f614fcc60c083018861422d565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f8060408385031215615002575f80fd5b825161500d816142ef565b6020840151909250614769816142ef56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220550ae7e4e0a65f516334a578d01c1d1b4eb56a1d24bc7d39c93ea69c2f5547d464736f6c634300081a003360a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
|
553
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063675393bf116100bf578063ada9652e11610079578063ada9652e146103e1578063b88da759146103f5578063c987336c14610408578063e97fac051461041b578063f7c34ee01461042e578063fd0c63d914610441575f80fd5b8063675393bf1461037f57806367b9cc4a14610392578063893d20e8146103a35780638e9afce6146103ab578063933a9ce8146103be578063946dfcfe146103cf575f80fd5b80631775564d116101105780631775564d14610209578063214cdb801461022957806336fc697e1461023c5780634d459c90146102445780635ab1bd5314610351578063644c45e014610362575f80fd5b806301ffc9a71461014c578063058f7a971461018d57806307484e80146101a25780630d8e6e2c146101cd578063138461e0146101e9575b5f80fd5b61017861015a366004611504565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a061019b366004611546565b610449565b005b6101b56101b0366004611600565b610558565b6040516001600160a01b039091168152602001610184565b6101d56106e4565b60405162ffffff9091168152602001610184565b6101f1610754565b6040516001600160601b039091168152602001610184565b61021c610217366004611655565b61075e565b60405161018491906116d0565b6101a0610237366004611504565b6107b6565b6101a06107e2565b6102f46102523660046116f2565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610184565b6001546001600160a01b03166101b5565b5f80516020612722833981519152546001600160601b03166101f1565b6101a061038d366004611546565b610827565b6005546001600160a01b03166101b5565b6101b5610934565b61021c6103b936600461170d565b610a65565b6002546001600160a01b03166101b5565b6004545b604051908152602001610184565b6103d35f8051602061272283398151915281565b6101d5610403366004611747565b610ab8565b6101b5610416366004611655565b610af6565b6101b5610429366004611655565b610d0f565b6101a061043c36600461175e565b610e90565b6101f1610f06565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f8115801561048e5750825b90505f8267ffffffffffffffff1660011480156104aa5750303b155b9050811580156104b8575080155b156104d65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561050057845460ff60401b1916600160401b1785555b61050a3387610e90565b831561055057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610561610934565b6001600160a01b0316336001600160a01b0316146105995760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156105bd57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f6105c6610934565b9050308386826105d6858961075e565b6040516105e2906114f7565b6105ee93929190611795565b8190604051809103905ff590508015801561060b573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610697918591630d8e6e2c9160048083019260209291908290030181865afa15801561066c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069091906117c9565b8784610f1d565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa15801561072b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074f91906117c9565b905090565b5f61074f306112b3565b60606349bb9e4b60e01b838360405160240161077b9291906117e4565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6107be6114ac565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6107ea6114ac565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61082f6114ac565b806001600160a01b03163b5f036108645760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263a34b610960e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156108de575060408051601f3d908101601f191682019092526108db91810190611807565b60015b6109065760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b8061092f5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610590565b505b50565b5f805f8051602061272283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156109a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c49190611807565b15610a4f576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a499190611826565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b82604051602401610a8091906116d0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f60048281548110610acc57610acc611841565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f610aff610934565b6001600160a01b0316336001600160a01b031614610b325760405163086391f760e31b8152336004820152602401610590565b6004545f03610b545760405163366dfd2160e21b815260040160405180910390fd5b5f610b5d610934565b90505f610b726002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015610bae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bd29190611826565b6002549091506001600160a01b03908116908216639623609d8288610bf689610a65565b6040518463ffffffff1660e01b8152600401610c1493929190611795565b5f604051808303815f87803b158015610c2b575f80fd5b505af1158015610c3d573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03169350610cc2846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cbb91906117c9565b8785610f1d565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b5f610d18610934565b6001600160a01b0316336001600160a01b031614610d4b5760405163086391f760e31b8152336004820152602401610590565b60045415610d6f57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f610d78610934565b9050308481610d87848761075e565b604051610d93906114f7565b610d9f93929190611795565b604051809103905ff080158015610db8573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610e44918591630d8e6e2c9160048083019260209291908290030181865afa158015610e19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3d91906117c9565b8684610f1d565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610e986114ac565b610ea181610827565b610ea96107e2565b6001600160a01b038216610ed05760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061272283398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6002545f9061074f906001600160a01b03166112b3565b610f998373__$8eede297b65ed5a56eb3f84d8232ae93f5$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8c91906117c9565b62ffffff90811691161490565b15610fb7576040516348c618db60e01b815260040160405180910390fd5b6004541561110f5760048054610fcf90600190611855565b81548110610fdf57610fdf611841565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015611050573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110749190611874565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156110c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ea9190611874565b1161110f57604051633e614b6d60e11b815262ffffff84166004820152602401610590565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156111df573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611203919061188b565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b5f805f8051602061272283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561131f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113439190611807565b1561136f5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610590565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156113c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e59190611807565b61140d5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610590565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801561145f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148391906118af565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166114f557604051631afcd79f60e31b815260040160405180910390fd5b565b610e4c806118d683390190565b5f60208284031215611514575f80fd5b81356001600160e01b03198116811461152b575f80fd5b9392505050565b6001600160a01b0381168114610931575f80fd5b5f60208284031215611556575f80fd5b813561152b81611532565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611584575f80fd5b813567ffffffffffffffff81111561159e5761159e611561565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156115cd576115cd611561565b6040528181528382016020018510156115e4575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f60608486031215611612575f80fd5b833561161d81611532565b9250602084013567ffffffffffffffff811115611638575f80fd5b61164486828701611575565b925050604084013590509250925092565b5f8060408385031215611666575f80fd5b823561167181611532565b9150602083013567ffffffffffffffff81111561168c575f80fd5b61169885828601611575565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61152b60208301846116a2565b62ffffff81168114610931575f80fd5b5f60208284031215611702575f80fd5b813561152b816116e2565b5f6020828403121561171d575f80fd5b813567ffffffffffffffff811115611733575f80fd5b61173f84828501611575565b949350505050565b5f60208284031215611757575f80fd5b5035919050565b5f806040838503121561176f575f80fd5b823561177a81611532565b9150602083013561178a81611532565b809150509250929050565b6001600160a01b038481168252831660208201526060604082018190525f906117c0908301846116a2565b95945050505050565b5f602082840312156117d9575f80fd5b815161152b816116e2565b6001600160a01b03831681526040602082018190525f9061173f908301846116a2565b5f60208284031215611817575f80fd5b8151801515811461152b575f80fd5b5f60208284031215611836575f80fd5b815161152b81611532565b634e487b7160e01b5f52603260045260245ffd5b818103818111156107b057634e487b7160e01b5f52601160045260245ffd5b5f60208284031215611884575f80fd5b5051919050565b5f6020828403121561189b575f80fd5b815164ffffffffff8116811461152b575f80fd5b5f602082840312156118bf575f80fd5b81516001600160601b038116811461152b575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220b02e24ae9c6929fbe8eb22e074ca531e2f8a310633ef4d01636627a4ff2aca2764736f6c634300081a0033",
|
554
|
+
"linkReferences": {
|
555
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
556
|
+
"TokenHandlerDeployerLib": [
|
557
|
+
{
|
558
|
+
"length": 20,
|
559
|
+
"start": 25963
|
560
|
+
}
|
561
|
+
]
|
562
|
+
},
|
563
|
+
"contracts/type/Amount.sol": {
|
564
|
+
"AmountLib": [
|
565
|
+
{
|
566
|
+
"length": 20,
|
567
|
+
"start": 15674
|
568
|
+
},
|
569
|
+
{
|
570
|
+
"length": 20,
|
571
|
+
"start": 15702
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"length": 20,
|
575
|
+
"start": 16167
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"length": 20,
|
579
|
+
"start": 16540
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"length": 20,
|
583
|
+
"start": 16791
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"length": 20,
|
587
|
+
"start": 18993
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"length": 20,
|
591
|
+
"start": 20508
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"length": 20,
|
595
|
+
"start": 23637
|
596
|
+
},
|
597
|
+
{
|
598
|
+
"length": 20,
|
599
|
+
"start": 23886
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"length": 20,
|
603
|
+
"start": 24140
|
604
|
+
},
|
605
|
+
{
|
606
|
+
"length": 20,
|
607
|
+
"start": 24389
|
608
|
+
},
|
609
|
+
{
|
610
|
+
"length": 20,
|
611
|
+
"start": 28178
|
612
|
+
}
|
613
|
+
]
|
614
|
+
},
|
615
|
+
"contracts/type/Fee.sol": {
|
616
|
+
"FeeLib": [
|
617
|
+
{
|
618
|
+
"length": 20,
|
619
|
+
"start": 18061
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"length": 20,
|
623
|
+
"start": 18272
|
624
|
+
},
|
625
|
+
{
|
626
|
+
"length": 20,
|
627
|
+
"start": 19611
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"length": 20,
|
631
|
+
"start": 19817
|
632
|
+
},
|
633
|
+
{
|
634
|
+
"length": 20,
|
635
|
+
"start": 21505
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"length": 20,
|
639
|
+
"start": 21708
|
640
|
+
},
|
641
|
+
{
|
642
|
+
"length": 20,
|
643
|
+
"start": 21897
|
644
|
+
}
|
645
|
+
]
|
646
|
+
},
|
647
|
+
"contracts/type/NftId.sol": {
|
648
|
+
"NftIdLib": [
|
649
|
+
{
|
650
|
+
"length": 20,
|
651
|
+
"start": 1078
|
652
|
+
},
|
653
|
+
{
|
654
|
+
"length": 20,
|
655
|
+
"start": 5571
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"length": 20,
|
659
|
+
"start": 8002
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"length": 20,
|
663
|
+
"start": 15051
|
664
|
+
},
|
665
|
+
{
|
666
|
+
"length": 20,
|
667
|
+
"start": 20781
|
668
|
+
},
|
669
|
+
{
|
670
|
+
"length": 20,
|
671
|
+
"start": 24658
|
672
|
+
},
|
673
|
+
{
|
674
|
+
"length": 20,
|
675
|
+
"start": 27809
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"length": 20,
|
679
|
+
"start": 29436
|
680
|
+
}
|
681
|
+
]
|
682
|
+
},
|
683
|
+
"contracts/type/RoleId.sol": {
|
684
|
+
"RoleIdLib": [
|
685
|
+
{
|
686
|
+
"length": 20,
|
687
|
+
"start": 20256
|
688
|
+
},
|
689
|
+
{
|
690
|
+
"length": 20,
|
691
|
+
"start": 25372
|
692
|
+
},
|
693
|
+
{
|
694
|
+
"length": 20,
|
695
|
+
"start": 27629
|
696
|
+
},
|
697
|
+
{
|
698
|
+
"length": 20,
|
699
|
+
"start": 27687
|
700
|
+
},
|
701
|
+
{
|
702
|
+
"length": 20,
|
703
|
+
"start": 27745
|
704
|
+
}
|
705
|
+
]
|
706
|
+
},
|
707
|
+
"contracts/type/Timestamp.sol": {
|
708
|
+
"TimestampLib": [
|
709
|
+
{
|
710
|
+
"length": 20,
|
711
|
+
"start": 2078
|
712
|
+
},
|
713
|
+
{
|
714
|
+
"length": 20,
|
715
|
+
"start": 7682
|
716
|
+
}
|
717
|
+
]
|
718
|
+
},
|
719
|
+
"contracts/type/Version.sol": {
|
720
|
+
"VersionLib": [
|
721
|
+
{
|
722
|
+
"length": 20,
|
723
|
+
"start": 1434
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"length": 20,
|
727
|
+
"start": 1679
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"length": 20,
|
731
|
+
"start": 1797
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"length": 20,
|
735
|
+
"start": 7038
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"length": 20,
|
739
|
+
"start": 7283
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"length": 20,
|
743
|
+
"start": 7401
|
744
|
+
},
|
745
|
+
{
|
746
|
+
"length": 20,
|
747
|
+
"start": 14897
|
748
|
+
},
|
749
|
+
{
|
750
|
+
"length": 20,
|
751
|
+
"start": 17484
|
752
|
+
}
|
753
|
+
],
|
754
|
+
"VersionPartLib": [
|
755
|
+
{
|
756
|
+
"length": 20,
|
757
|
+
"start": 20304
|
758
|
+
},
|
759
|
+
{
|
760
|
+
"length": 20,
|
761
|
+
"start": 27404
|
762
|
+
}
|
763
|
+
]
|
764
|
+
}
|
765
|
+
},
|
766
|
+
"deployedLinkReferences": {
|
767
|
+
"contracts/type/NftId.sol": {
|
768
|
+
"NftIdLib": [
|
769
|
+
{
|
770
|
+
"length": 20,
|
771
|
+
"start": 2408
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"length": 20,
|
775
|
+
"start": 4839
|
776
|
+
}
|
777
|
+
]
|
778
|
+
},
|
779
|
+
"contracts/type/Timestamp.sol": {
|
780
|
+
"TimestampLib": [
|
781
|
+
{
|
782
|
+
"length": 20,
|
783
|
+
"start": 4519
|
784
|
+
}
|
785
|
+
]
|
786
|
+
},
|
787
|
+
"contracts/type/Version.sol": {
|
788
|
+
"VersionLib": [
|
789
|
+
{
|
790
|
+
"length": 20,
|
791
|
+
"start": 3875
|
792
|
+
},
|
793
|
+
{
|
794
|
+
"length": 20,
|
795
|
+
"start": 4120
|
796
|
+
},
|
797
|
+
{
|
798
|
+
"length": 20,
|
799
|
+
"start": 4238
|
800
|
+
}
|
801
|
+
]
|
802
|
+
}
|
803
|
+
}
|
804
|
+
}
|