@etherisc/gif-next 0.0.2-979c9aa-391 → 0.0.2-97a9fc1-165
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 +85 -23
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1494 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +673 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +615 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1224 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +382 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1230 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +644 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +951 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1580 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +868 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +850 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1071 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1475 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +644 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2032 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +644 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1431 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +644 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1655 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +644 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2432 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +644 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +408 -1314
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +450 -189
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +465 -2486
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2036 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +716 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1623 -582
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +504 -479
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +349 -139
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3738 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
- 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 +223 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +959 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +632 -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 +774 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +875 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1252 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +644 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +880 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +907 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1027 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +879 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +740 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1161 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +644 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +277 -302
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → product/IPricingService.sol/IPricingService.json} +315 -361
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1018 -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} +199 -185
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +951 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +677 -112
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +325 -229
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1017 -150
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2018 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +312 -336
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +341 -123
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1954 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1337 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +352 -101
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +707 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1532 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/{components/BaseComponent.sol/BaseComponent.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +158 -142
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +597 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/IComponent.sol/IComponent.json} +288 -177
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1180 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/IInstanceBase.sol/IInstanceBase.json → shared/IKeyValueStore.sol/IKeyValueStore.json} +96 -34
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +46 -26
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +143 -15
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +137 -159
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +797 -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} +129 -20
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +81 -30
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +159 -55
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +156 -171
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1512 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1167 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1917 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +796 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +560 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1380 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +736 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -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 +241 -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 +204 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -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/type/StateId.sol/StateIdLib.json +105 -0
- 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/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -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 +618 -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/accounting/AccountingService.sol +262 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +45 -0
- package/contracts/authorization/AccessAdmin.sol +704 -0
- package/contracts/authorization/AccessAdminLib.sol +183 -0
- package/contracts/authorization/AccessManagerCloneable.sol +158 -0
- package/contracts/authorization/Authorization.sol +365 -0
- package/contracts/authorization/IAccess.sol +49 -0
- package/contracts/authorization/IAccessAdmin.sol +170 -0
- package/contracts/authorization/IAuthorization.sol +80 -0
- package/contracts/authorization/IServiceAuthorization.sol +40 -0
- package/contracts/authorization/ServiceAuthorization.sol +106 -0
- package/contracts/distribution/BasicDistribution.sol +143 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
- package/contracts/distribution/Distribution.sol +246 -0
- package/contracts/distribution/DistributionService.sol +385 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +43 -0
- package/contracts/distribution/IDistributionService.sol +103 -0
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +90 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +437 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +85 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +98 -55
- package/contracts/instance/IInstanceService.sol +67 -21
- package/contracts/instance/Instance.sol +215 -195
- package/contracts/instance/InstanceAdmin.sol +450 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +235 -0
- package/contracts/instance/InstanceReader.sol +415 -80
- package/contracts/instance/InstanceService.sol +390 -222
- package/contracts/instance/InstanceServiceManager.sol +14 -32
- package/contracts/instance/InstanceStore.sol +298 -0
- package/contracts/instance/RiskSet.sol +118 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
- package/contracts/instance/base/ObjectCounter.sol +20 -0
- package/contracts/instance/base/ObjectLifecycle.sol +113 -0
- package/contracts/instance/base/ObjectSet.sol +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +8 -8
- package/contracts/instance/module/IComponents.sol +51 -0
- package/contracts/instance/module/IDistribution.sol +11 -6
- package/contracts/instance/module/IPolicy.sol +59 -19
- package/contracts/instance/module/IRisk.sol +4 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +47 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +66 -0
- package/contracts/oracle/Oracle.sol +156 -0
- package/contracts/oracle/OracleService.sol +310 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +175 -0
- package/contracts/pool/BasicPoolAuthorization.sol +76 -0
- package/contracts/pool/BundleService.sol +395 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +115 -0
- package/contracts/pool/IPoolComponent.sol +62 -0
- package/contracts/pool/IPoolService.sol +165 -0
- package/contracts/pool/Pool.sol +345 -0
- package/contracts/pool/PoolLib.sol +216 -0
- package/contracts/pool/PoolService.sol +757 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +274 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +51 -0
- package/contracts/product/BasicProductAuthorization.sol +56 -0
- package/contracts/product/ClaimService.sol +632 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +69 -0
- package/contracts/product/IClaimService.sol +135 -0
- package/contracts/product/IPolicyService.sol +95 -0
- package/contracts/product/IPricingService.sol +40 -0
- package/contracts/product/IProductComponent.sol +62 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +664 -0
- package/contracts/product/PolicyServiceLib.sol +65 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +309 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +469 -0
- package/contracts/product/RiskService.sol +154 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +82 -35
- package/contracts/registry/IRegistry.sol +122 -37
- package/contracts/registry/IRegistryService.sol +40 -28
- package/contracts/registry/IRelease.sol +26 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -1
- package/contracts/registry/Registry.sol +555 -273
- package/contracts/registry/RegistryAdmin.sol +258 -0
- package/contracts/registry/RegistryAuthorization.sol +267 -0
- package/contracts/registry/RegistryService.sol +116 -233
- package/contracts/registry/RegistryServiceManager.sol +26 -53
- package/contracts/registry/ReleaseAdmin.sol +253 -0
- package/contracts/registry/ReleaseLifecycle.sol +32 -0
- package/contracts/registry/ReleaseRegistry.sol +517 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +331 -0
- package/contracts/registry/TokenRegistry.sol +261 -59
- package/contracts/shared/Component.sol +227 -0
- package/contracts/shared/ComponentService.sol +689 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +128 -0
- package/contracts/shared/ContractLib.sol +281 -0
- package/contracts/shared/IComponent.sol +61 -0
- package/contracts/shared/IComponentService.sol +110 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
- package/contracts/shared/INftOwnable.sol +15 -12
- package/contracts/shared/IPolicyHolder.sol +35 -0
- package/contracts/shared/IRegisterable.sol +25 -5
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +13 -5
- package/contracts/shared/InitializableERC165.sol +35 -0
- package/contracts/shared/InstanceLinkedComponent.sol +197 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +88 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +75 -82
- package/contracts/shared/PolicyHolder.sol +62 -0
- package/contracts/shared/Registerable.sol +54 -38
- package/contracts/shared/RegistryLinked.sol +38 -0
- package/contracts/shared/Service.sol +43 -33
- package/contracts/shared/TokenHandler.sol +327 -12
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +175 -0
- package/contracts/staking/IStakingService.sol +172 -0
- package/contracts/staking/Staking.sol +546 -0
- package/contracts/staking/StakingLib.sol +281 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +180 -0
- package/contracts/staking/StakingService.sol +464 -0
- package/contracts/staking/StakingServiceManager.sol +45 -0
- package/contracts/staking/StakingStore.sol +606 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +150 -0
- package/contracts/{types → type}/Blocknumber.sol +27 -3
- package/contracts/type/ClaimId.sol +80 -0
- package/contracts/{types → type}/DistributorType.sol +2 -2
- package/contracts/{types → type}/Fee.sol +33 -23
- package/contracts/{types → type}/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/{types → type}/NftId.sol +28 -15
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +294 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +6 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +75 -0
- package/contracts/type/RoleId.sol +182 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +107 -0
- package/contracts/{types → type}/StateId.sol +48 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +33 -19
- package/contracts/{types → type}/UFixed.sol +41 -121
- package/contracts/{types → type}/Version.sol +59 -7
- package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
- package/contracts/upgradeability/ProxyManager.sol +232 -0
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/upgradeability/Versionable.sol +59 -0
- package/package.json +12 -8
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -772
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -384
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -275
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -967
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -883
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -788
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1057
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -285
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -243
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -923
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -440
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -684
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -428
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -446
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -499
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +0 -536
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -984
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -464
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -718
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -428
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -768
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -420
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
- 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/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/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/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
- package/contracts/components/BaseComponent.sol +0 -148
- package/contracts/components/Distribution.sol +0 -163
- package/contracts/components/IBaseComponent.sol +0 -32
- package/contracts/components/IDistributionComponent.sol +0 -44
- package/contracts/components/IPoolComponent.sol +0 -66
- package/contracts/components/IProductComponent.sol +0 -35
- package/contracts/components/Pool.sol +0 -271
- package/contracts/components/Product.sol +0 -292
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -23
- package/contracts/instance/BundleManager.sol +0 -129
- package/contracts/instance/IInstanceBase.sol +0 -26
- package/contracts/instance/InstanceAccessManager.sol +0 -304
- package/contracts/instance/InstanceBase.sol +0 -41
- package/contracts/instance/ObjectManager.sol +0 -101
- package/contracts/instance/base/ComponentServiceBase.sol +0 -72
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/base/KeyValueStore.sol +0 -172
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/module/IAccess.sol +0 -48
- package/contracts/instance/module/ISetup.sol +0 -46
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/BundleService.sol +0 -260
- package/contracts/instance/service/BundleServiceManager.sol +0 -54
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/DistributionService.sol +0 -118
- package/contracts/instance/service/DistributionServiceManager.sol +0 -54
- package/contracts/instance/service/IBundleService.sol +0 -45
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/instance/service/IDistributionService.sol +0 -12
- package/contracts/instance/service/IPolicyService.sol +0 -87
- package/contracts/instance/service/IPoolService.sol +0 -20
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -508
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -124
- package/contracts/instance/service/PoolServiceManager.sol +0 -54
- package/contracts/instance/service/ProductService.sol +0 -173
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/shared/ERC165.sol +0 -25
- package/contracts/shared/ProxyManager.sol +0 -94
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
- package/contracts/shared/Versionable.sol +0 -147
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -24
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -152
- package/contracts/types/RiskId.sol +0 -43
- package/contracts/types/RoleId.sol +0 -91
@@ -7,115 +7,135 @@
|
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
9
|
"internalType": "address",
|
10
|
-
"name": "
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "address",
|
15
|
+
"name": "registry",
|
11
16
|
"type": "address"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"internalType": "bytes32",
|
20
|
+
"name": "salt",
|
21
|
+
"type": "bytes32"
|
12
22
|
}
|
13
23
|
],
|
14
24
|
"stateMutability": "nonpayable",
|
15
25
|
"type": "constructor"
|
16
26
|
},
|
17
27
|
{
|
18
|
-
"inputs": [
|
19
|
-
|
28
|
+
"inputs": [
|
29
|
+
{
|
30
|
+
"internalType": "NftId",
|
31
|
+
"name": "nftId",
|
32
|
+
"type": "uint96"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
36
|
+
"type": "error"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"inputs": [
|
40
|
+
{
|
41
|
+
"internalType": "address",
|
42
|
+
"name": "contractAddress",
|
43
|
+
"type": "address"
|
44
|
+
}
|
45
|
+
],
|
46
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
20
47
|
"type": "error"
|
21
48
|
},
|
22
49
|
{
|
23
50
|
"inputs": [],
|
24
|
-
"name": "
|
51
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
25
52
|
"type": "error"
|
26
53
|
},
|
27
54
|
{
|
28
55
|
"inputs": [
|
29
|
-
{
|
30
|
-
"internalType": "address",
|
31
|
-
"name": "registry",
|
32
|
-
"type": "address"
|
33
|
-
},
|
34
56
|
{
|
35
57
|
"internalType": "NftId",
|
36
58
|
"name": "nftId",
|
37
59
|
"type": "uint96"
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"internalType": "ObjectType",
|
63
|
+
"name": "expectedObjectType",
|
64
|
+
"type": "uint8"
|
38
65
|
}
|
39
66
|
],
|
40
|
-
"name": "
|
67
|
+
"name": "ErrorNftOwnableInvalidType",
|
41
68
|
"type": "error"
|
42
69
|
},
|
43
70
|
{
|
44
71
|
"inputs": [
|
45
72
|
{
|
46
73
|
"internalType": "address",
|
47
|
-
"name": "
|
74
|
+
"name": "account",
|
48
75
|
"type": "address"
|
49
76
|
}
|
50
77
|
],
|
51
|
-
"name": "
|
78
|
+
"name": "ErrorNftOwnableNotOwner",
|
52
79
|
"type": "error"
|
53
80
|
},
|
54
81
|
{
|
55
82
|
"inputs": [
|
56
83
|
{
|
57
84
|
"internalType": "address",
|
58
|
-
"name": "
|
85
|
+
"name": "registryAddress",
|
59
86
|
"type": "address"
|
60
87
|
}
|
61
88
|
],
|
62
|
-
"name": "
|
89
|
+
"name": "ErrorNotRegistry",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [],
|
94
|
+
"name": "ErrorProxyManagerAlreadyDeployed",
|
63
95
|
"type": "error"
|
64
96
|
},
|
65
97
|
{
|
66
98
|
"inputs": [
|
67
99
|
{
|
68
|
-
"internalType": "
|
69
|
-
"name": "
|
70
|
-
"type": "
|
100
|
+
"internalType": "Version",
|
101
|
+
"name": "nextVersion",
|
102
|
+
"type": "uint24"
|
71
103
|
}
|
72
104
|
],
|
73
|
-
"name": "
|
105
|
+
"name": "ErrorProxyManagerNextVersionNotIncreasing",
|
74
106
|
"type": "error"
|
75
107
|
},
|
76
108
|
{
|
77
109
|
"inputs": [],
|
78
|
-
"name": "
|
110
|
+
"name": "ErrorProxyManagerNotYetDeployed",
|
79
111
|
"type": "error"
|
80
112
|
},
|
81
113
|
{
|
82
114
|
"inputs": [],
|
83
|
-
"name": "
|
115
|
+
"name": "ErrorProxyManagerZeroVersion",
|
84
116
|
"type": "error"
|
85
117
|
},
|
86
118
|
{
|
87
|
-
"inputs": [
|
88
|
-
|
89
|
-
"internalType": "address",
|
90
|
-
"name": "registry",
|
91
|
-
"type": "address"
|
92
|
-
}
|
93
|
-
],
|
94
|
-
"name": "ErrorRegistryAlreadyInitialized",
|
119
|
+
"inputs": [],
|
120
|
+
"name": "InvalidInitialization",
|
95
121
|
"type": "error"
|
96
122
|
},
|
97
123
|
{
|
98
124
|
"inputs": [],
|
99
|
-
"name": "
|
125
|
+
"name": "NotInitializing",
|
100
126
|
"type": "error"
|
101
127
|
},
|
102
128
|
{
|
103
129
|
"anonymous": false,
|
104
130
|
"inputs": [
|
105
|
-
{
|
106
|
-
"indexed": true,
|
107
|
-
"internalType": "address",
|
108
|
-
"name": "proxy",
|
109
|
-
"type": "address"
|
110
|
-
},
|
111
131
|
{
|
112
132
|
"indexed": false,
|
113
|
-
"internalType": "
|
114
|
-
"name": "
|
115
|
-
"type": "
|
133
|
+
"internalType": "uint64",
|
134
|
+
"name": "version",
|
135
|
+
"type": "uint64"
|
116
136
|
}
|
117
137
|
],
|
118
|
-
"name": "
|
138
|
+
"name": "Initialized",
|
119
139
|
"type": "event"
|
120
140
|
},
|
121
141
|
{
|
@@ -134,7 +154,7 @@
|
|
134
154
|
"type": "address"
|
135
155
|
}
|
136
156
|
],
|
137
|
-
"name": "
|
157
|
+
"name": "LogProxyManagerVersionableDeployed",
|
138
158
|
"type": "event"
|
139
159
|
},
|
140
160
|
{
|
@@ -153,11 +173,29 @@
|
|
153
173
|
"type": "address"
|
154
174
|
}
|
155
175
|
],
|
156
|
-
"name": "
|
176
|
+
"name": "LogProxyManagerVersionableUpgraded",
|
157
177
|
"type": "event"
|
158
178
|
},
|
179
|
+
{
|
180
|
+
"inputs": [],
|
181
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
182
|
+
"outputs": [
|
183
|
+
{
|
184
|
+
"internalType": "bytes32",
|
185
|
+
"name": "",
|
186
|
+
"type": "bytes32"
|
187
|
+
}
|
188
|
+
],
|
189
|
+
"stateMutability": "view",
|
190
|
+
"type": "function"
|
191
|
+
},
|
159
192
|
{
|
160
193
|
"inputs": [
|
194
|
+
{
|
195
|
+
"internalType": "address",
|
196
|
+
"name": "registry",
|
197
|
+
"type": "address"
|
198
|
+
},
|
161
199
|
{
|
162
200
|
"internalType": "address",
|
163
201
|
"name": "initialImplementation",
|
@@ -184,9 +222,38 @@
|
|
184
222
|
"inputs": [
|
185
223
|
{
|
186
224
|
"internalType": "address",
|
187
|
-
"name": "
|
225
|
+
"name": "registry",
|
226
|
+
"type": "address"
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"internalType": "address",
|
230
|
+
"name": "initialImplementation",
|
188
231
|
"type": "address"
|
189
232
|
},
|
233
|
+
{
|
234
|
+
"internalType": "bytes",
|
235
|
+
"name": "initializationData",
|
236
|
+
"type": "bytes"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"internalType": "bytes32",
|
240
|
+
"name": "salt",
|
241
|
+
"type": "bytes32"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
"name": "deployDetermenistic",
|
245
|
+
"outputs": [
|
246
|
+
{
|
247
|
+
"internalType": "contract IVersionable",
|
248
|
+
"name": "versionable",
|
249
|
+
"type": "address"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"stateMutability": "nonpayable",
|
253
|
+
"type": "function"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"inputs": [
|
190
257
|
{
|
191
258
|
"internalType": "address",
|
192
259
|
"name": "proxyOwner",
|
@@ -258,7 +325,7 @@
|
|
258
325
|
"type": "address"
|
259
326
|
}
|
260
327
|
],
|
261
|
-
"stateMutability": "
|
328
|
+
"stateMutability": "view",
|
262
329
|
"type": "function"
|
263
330
|
},
|
264
331
|
{
|
@@ -274,42 +341,195 @@
|
|
274
341
|
"stateMutability": "view",
|
275
342
|
"type": "function"
|
276
343
|
},
|
344
|
+
{
|
345
|
+
"inputs": [
|
346
|
+
{
|
347
|
+
"internalType": "bytes",
|
348
|
+
"name": "upgradeData",
|
349
|
+
"type": "bytes"
|
350
|
+
}
|
351
|
+
],
|
352
|
+
"name": "getUpgradeData",
|
353
|
+
"outputs": [
|
354
|
+
{
|
355
|
+
"internalType": "bytes",
|
356
|
+
"name": "data",
|
357
|
+
"type": "bytes"
|
358
|
+
}
|
359
|
+
],
|
360
|
+
"stateMutability": "pure",
|
361
|
+
"type": "function"
|
362
|
+
},
|
363
|
+
{
|
364
|
+
"inputs": [],
|
365
|
+
"name": "getVersion",
|
366
|
+
"outputs": [
|
367
|
+
{
|
368
|
+
"internalType": "Version",
|
369
|
+
"name": "",
|
370
|
+
"type": "uint24"
|
371
|
+
}
|
372
|
+
],
|
373
|
+
"stateMutability": "view",
|
374
|
+
"type": "function"
|
375
|
+
},
|
376
|
+
{
|
377
|
+
"inputs": [
|
378
|
+
{
|
379
|
+
"internalType": "uint256",
|
380
|
+
"name": "idx",
|
381
|
+
"type": "uint256"
|
382
|
+
}
|
383
|
+
],
|
384
|
+
"name": "getVersion",
|
385
|
+
"outputs": [
|
386
|
+
{
|
387
|
+
"internalType": "Version",
|
388
|
+
"name": "",
|
389
|
+
"type": "uint24"
|
390
|
+
}
|
391
|
+
],
|
392
|
+
"stateMutability": "view",
|
393
|
+
"type": "function"
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"inputs": [],
|
397
|
+
"name": "getVersionCount",
|
398
|
+
"outputs": [
|
399
|
+
{
|
400
|
+
"internalType": "uint256",
|
401
|
+
"name": "",
|
402
|
+
"type": "uint256"
|
403
|
+
}
|
404
|
+
],
|
405
|
+
"stateMutability": "view",
|
406
|
+
"type": "function"
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"inputs": [
|
410
|
+
{
|
411
|
+
"internalType": "Version",
|
412
|
+
"name": "_version",
|
413
|
+
"type": "uint24"
|
414
|
+
}
|
415
|
+
],
|
416
|
+
"name": "getVersionInfo",
|
417
|
+
"outputs": [
|
418
|
+
{
|
419
|
+
"components": [
|
420
|
+
{
|
421
|
+
"internalType": "Version",
|
422
|
+
"name": "version",
|
423
|
+
"type": "uint24"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"internalType": "address",
|
427
|
+
"name": "implementation",
|
428
|
+
"type": "address"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
"internalType": "address",
|
432
|
+
"name": "activatedBy",
|
433
|
+
"type": "address"
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"internalType": "Timestamp",
|
437
|
+
"name": "activatedAt",
|
438
|
+
"type": "uint40"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"internalType": "Blocknumber",
|
442
|
+
"name": "activatedIn",
|
443
|
+
"type": "uint32"
|
444
|
+
}
|
445
|
+
],
|
446
|
+
"internalType": "struct ProxyManager.VersionInfo",
|
447
|
+
"name": "",
|
448
|
+
"type": "tuple"
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"stateMutability": "view",
|
452
|
+
"type": "function"
|
453
|
+
},
|
277
454
|
{
|
278
455
|
"inputs": [
|
279
456
|
{
|
280
457
|
"internalType": "address",
|
281
|
-
"name": "
|
458
|
+
"name": "registry",
|
282
459
|
"type": "address"
|
283
460
|
},
|
284
461
|
{
|
285
462
|
"internalType": "address",
|
286
|
-
"name": "
|
463
|
+
"name": "implementation",
|
287
464
|
"type": "address"
|
288
465
|
},
|
289
466
|
{
|
290
467
|
"internalType": "bytes",
|
291
|
-
"name": "
|
468
|
+
"name": "data",
|
292
469
|
"type": "bytes"
|
470
|
+
},
|
471
|
+
{
|
472
|
+
"internalType": "bytes32",
|
473
|
+
"name": "salt",
|
474
|
+
"type": "bytes32"
|
293
475
|
}
|
294
476
|
],
|
295
|
-
"name": "
|
477
|
+
"name": "initialize",
|
296
478
|
"outputs": [
|
297
479
|
{
|
298
|
-
"internalType": "
|
299
|
-
"name": "
|
300
|
-
"type": "
|
480
|
+
"internalType": "contract IVersionable",
|
481
|
+
"name": "versionable",
|
482
|
+
"type": "address"
|
301
483
|
}
|
302
484
|
],
|
303
|
-
"stateMutability": "
|
485
|
+
"stateMutability": "nonpayable",
|
486
|
+
"type": "function"
|
487
|
+
},
|
488
|
+
{
|
489
|
+
"inputs": [],
|
490
|
+
"name": "linkToProxy",
|
491
|
+
"outputs": [
|
492
|
+
{
|
493
|
+
"internalType": "NftId",
|
494
|
+
"name": "",
|
495
|
+
"type": "uint96"
|
496
|
+
}
|
497
|
+
],
|
498
|
+
"stateMutability": "nonpayable",
|
304
499
|
"type": "function"
|
305
500
|
},
|
306
501
|
{
|
307
502
|
"inputs": [],
|
308
503
|
"name": "linkToRegisteredNftId",
|
309
|
-
"outputs": [
|
504
|
+
"outputs": [
|
505
|
+
{
|
506
|
+
"internalType": "NftId",
|
507
|
+
"name": "nftId",
|
508
|
+
"type": "uint96"
|
509
|
+
}
|
510
|
+
],
|
310
511
|
"stateMutability": "nonpayable",
|
311
512
|
"type": "function"
|
312
513
|
},
|
514
|
+
{
|
515
|
+
"inputs": [
|
516
|
+
{
|
517
|
+
"internalType": "bytes4",
|
518
|
+
"name": "interfaceId",
|
519
|
+
"type": "bytes4"
|
520
|
+
}
|
521
|
+
],
|
522
|
+
"name": "supportsInterface",
|
523
|
+
"outputs": [
|
524
|
+
{
|
525
|
+
"internalType": "bool",
|
526
|
+
"name": "",
|
527
|
+
"type": "bool"
|
528
|
+
}
|
529
|
+
],
|
530
|
+
"stateMutability": "view",
|
531
|
+
"type": "function"
|
532
|
+
},
|
313
533
|
{
|
314
534
|
"inputs": [
|
315
535
|
{
|
@@ -335,188 +555,178 @@
|
|
335
555
|
"type": "function"
|
336
556
|
}
|
337
557
|
],
|
338
|
-
"bytecode": "0x60806040523480156200001157600080fd5b5060405162007c9d38038062007c9d833981016040819052620000349162000560565b600180546001600160a01b03191633179055604051600090620000579062000544565b604051809103906000f08015801562000074573d6000803e3d6000fd5b50604080516001600160a01b0385166020820152308183015281518082038301815260609091019091529091506000620000af838362000290565b600380546001600160a01b0319166001600160a01b03838116919091178255604051632efe011360e01b81526004810192909252600060248301819052604483018190529293508692919083169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000166919062000592565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015620001bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e29190620005b9565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa15801562000249573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026f919062000560565b50506002805460ff60a01b1916600160a01b179055506200066e9350505050565b60006200029c620003c5565b6001600160a01b0316336001600160a01b031614620002d45760405163700dd81160e01b815233600482015260240160405180910390fd5b600254600160a01b900460ff161562000300576040516375842f8760e01b815260040160405180910390fd5b60006200030c620003c5565b90503060006200031e868487620004e8565b9050858282604051620003319062000552565b6200033f93929190620005de565b604051809103906000f0801580156200035c573d6000803e3d6000fd5b50600280546001600160a81b0319166001600160a01b0392831617600160a01b179081905560405188831681529116945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562000429573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044f91906200064a565b15620004d857600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004d3919062000560565b905090565b506001546001600160a01b031690565b606063cf7a1d7760e01b8484846040516024016200050993929190620005de565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b614c7680620020f883390190565b610f2f8062006d6e83390190565b6000602082840312156200057357600080fd5b81516001600160a01b03811681146200058b57600080fd5b9392505050565b600060208284031215620005a557600080fd5b815162ffffff811681146200058b57600080fd5b600060208284031215620005cc57600080fd5b815160ff811681146200058b57600080fd5b600060018060a01b038086168352602081861681850152606060408501528451915081606085015260005b82811015620006275785810182015185820160800152810162000609565b50506000608082850101526080601f19601f830116840101915050949350505050565b6000602082840312156200065d57600080fd5b815180151581146200058b57600080fd5b611a7a806200067e6000396000f3fe60806040523480156200001157600080fd5b5060043610620000ab5760003560e01c8063aef485a0116200006e578063aef485a0146200012e578063c987336c1462000154578063cc9fc59a146200016b578063e97fac05146200017d578063f6876768146200019457600080fd5b8063138461e014620000b05780635ab1bd5314620000bc578063644c45e014620000e6578063893d20e81462000112578063933a9ce8146200011c575b600080fd5b620000ba620001ab565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001620000dd565b620000c9620003da565b6002546001600160a01b0316620000c9565b620001456200013f3660046200094b565b620004fd565b604051620000dd9190620009fd565b620000c96200016536600462000a19565b62000559565b6003546001600160a01b0316620000c9565b620000c96200018e36600462000a19565b62000726565b62000145620001a53660046200094b565b62000858565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000a6f565b156200027c576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b0316620002a65760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000316919062000a6f565b62000340576040516372657a5160e01b81526001600160a01b038216600482015260240162000273565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156200038b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b1919062000a93565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200043e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000464919062000a6f565b15620004ed57600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e8919062000abe565b905090565b506001546001600160a01b031690565b606063a745e3df60e01b8484846040516024016200051e9392919062000ade565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b600062000565620003da565b6001600160a01b0316336001600160a01b0316146200059a5760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff16620005c557604051631e35411160e31b815260040160405180910390fd5b6000620005d1620003da565b90506000620005e86002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000628573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200064e919062000abe565b6002549091506001600160a01b031660006200066c878588620004fd565b604051639623609d60e01b81529091506001600160a01b03841690639623609d90620006a19085908b90869060040162000ade565b600060405180830381600087803b158015620006bc57600080fd5b505af1158015620006d1573d6000803e3d6000fd5b50506002546040516001600160a01b038b8116825290911697508792507f5f1d3094af018381967fbedd54b80ffb09c5a9799db985f5e17e322672686306915060200160405180910390a25050505092915050565b600062000732620003da565b6001600160a01b0316336001600160a01b031614620007675760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff161562000793576040516375842f8760e01b815260040160405180910390fd5b60006200079f620003da565b9050306000620007b186848762000858565b9050858282604051620007c49062000879565b620007d29392919062000ade565b604051809103906000f080158015620007ef573d6000803e3d6000fd5b50600280546001600160a81b0319166001600160a01b0392831617600160a01b179081905560405188831681529116945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b606063cf7a1d7760e01b8484846040516024016200051e9392919062000ade565b610f2f8062000b1683390190565b6001600160a01b03811681146200089d57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008c857600080fd5b813567ffffffffffffffff80821115620008e657620008e6620008a0565b604051601f8301601f19908116603f01168101908282118183101715620009115762000911620008a0565b816040528381528660208588010111156200092b57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200096157600080fd5b83356200096e8162000887565b92506020840135620009808162000887565b9150604084013567ffffffffffffffff8111156200099d57600080fd5b620009ab86828701620008b6565b9150509250925092565b6000815180845260005b81811015620009dd57602081850181015186830182015201620009bf565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600062000a126020830184620009b5565b9392505050565b6000806040838503121562000a2d57600080fd5b823562000a3a8162000887565b9150602083013567ffffffffffffffff81111562000a5757600080fd5b62000a6585828601620008b6565b9150509250929050565b60006020828403121562000a8257600080fd5b8151801515811462000a1257600080fd5b60006020828403121562000aa657600080fd5b81516001600160601b038116811462000a1257600080fd5b60006020828403121562000ad157600080fd5b815162000a128162000887565b6001600160a01b0384811682528316602082015260606040820181905260009062000b0c90830184620009b5565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220caebfde4983ac975907e53973bb4a887f9c07a38fa9ff827bc2955a0206679e364736f6c6343000814003360806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b614b3c806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063893d20e8116100f9578063cde749f411610097578063eb59c6b111610071578063eb59c6b11461055f578063edabac0314610570578063eeff428e14610581578063feec1190146105cc57600080fd5b8063cde749f414610521578063cf7a1d771461053b578063e338e27b1461054e57600080fd5b8063a745e3df116100d3578063a745e3df146104c8578063b3c65015146104db578063b88da759146104fb578063c22f980d1461050e57600080fd5b8063893d20e81461046b578063946dfcfe14610473578063a3f4df7e1461049a57600080fd5b80632b440bc9116101665780634f421333116101405780634f421333146104145780635ab1bd5314610427578063644c45e014610438578063872309c71461046357600080fd5b80632b440bc9146102c35780633bd516ef146102e85780634d459c90146102fb57600080fd5b8063103bd5da116101a2578063103bd5da1461023d578063138461e01461025057806317d7de7c1461025a5780631eff4b221461028e57600080fd5b806301ffc9a7146101c95780630d8e6e2c1461020b5780630fec111c14610227575b600080fd5b6101f66101d73660046141bc565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102136105df565b60405162ffffff9091168152602001610202565b61022f610669565b60405161020292919061423d565b6101f661024b36600461430e565b6107eb565b6102586108d1565b005b60408051808201909152600f81526e496e7374616e63655365727669636560881b60208201525b6040516102029190614359565b6102b57f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610202565b6003546001600160a01b03165b6040516001600160a01b039091168152602001610202565b6102586102f636600461436c565b610af3565b6103b76103093660046143d9565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020614ae783398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610202565b6101f66104223660046143d9565b611108565b6001546001600160a01b03166102d0565b600154600160a01b90046001600160601b03166040516001600160601b039091168152602001610202565b6102b5600081565b6102d06111bb565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546102b5565b6102816040518060400160405280600f81526020016e496e7374616e63655365727669636560881b81525081565b6102586104d636600461448b565b6112d4565b6104e361142e565b6040516001600160401b039091168152602001610202565b61021361050936600461452f565b61144f565b61025861051c36600461455d565b6114a0565b6105296116aa565b60405160ff9091168152602001610202565b61025861054936600461448b565b61172d565b6004546001600160a01b03166102d0565b6006546001600160a01b03166102d0565b6005546001600160a01b03166102d0565b610589611836565b604080516001600160a01b03968716815294861660208601526001600160601b03909316928401929092528316606083015291909116608082015260a001610202565b6102586105da36600461457a565b611efd565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610640573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106649190614597565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806106ec6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016107346111bb565b6001600160a01b03168152602001826001018054610751906145b4565b80601f016020809104026020016040519081016040528092919081815260200182805461077d906145b4565b80156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6000808290506000816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015610831573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085591906145ee565b6040516368fc2b7760e11b81529091506001600160a01b0382169063d1f856ee906108869088908a9060040161460b565b602060405180830381865afa1580156108a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c7919061463d565b9695505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610933573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610957919061463d565b1561099e576001546040516316322c0f60e31b8152610995916001600160a01b03811691600160a01b9091046001600160601b031690600401614658565b60405180910390fd5b6001546001600160a01b03166109c75760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610a10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a34919061463d565b610a5c576040516372657a5160e01b81526001600160a01b0382166004820152602401610995565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aca9190614685565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610afb6111bb565b6001600160a01b0316336001600160a01b031614610b2e5760405163700dd81160e01b8152336004820152602401610995565b6003546001600160a01b031615610b9f5760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a4352442d3030313a4143434553535f4d414e414745525f4d415360448201526e15115497d053149150511657d4d155608a1b6064820152608401610995565b6004546001600160a01b031615610c0a5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a4352442d3030323a494e5354414e43455f4d41535445525f414c604482015268149150511657d4d15560ba1b6064820152608401610995565b6006546001600160a01b031615610c7b5760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a4352442d3030343a42554e444c455f4d414e414745525f4d415360448201526e15115497d053149150511657d4d155608a1b6064820152608401610995565b6001600160a01b038416610cdb5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4352442d3030353a4143434553535f4d414e414745525f5a45526044820152604f60f81b6064820152608401610995565b6001600160a01b038316610d315760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a4352442d3030363a494e5354414e43455f5a45524f00000000006044820152606401610995565b6001600160a01b038216610d925760405162461bcd60e51b815260206004820152602260248201527f4552524f523a4352442d3030373a494e5354414e43455f5245414445525f5a45604482015261524f60f01b6064820152608401610995565b6001600160a01b038116610df25760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4352442d3030383a42554e444c455f4d414e414745525f5a45526044820152604f60f81b6064820152608401610995565b600083905060008390506000839050866001600160a01b0316836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d91906145ee565b6001600160a01b031614610ed55760405162461bcd60e51b815260206004820152602960248201527f4552524f523a4352442d3030393a494e5354414e43455f415554484f524954596044820152680be9a92a69a82a886960bb1b6064820152608401610995565b610fad826001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3a9190614685565b846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9c9190614685565b6001600160601b0390811691161490565b6110115760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a4352442d3031303a494e5354414e43455f5245414445525f494e60448201526e0a6a8829c868abe9a92a69a82a8869608b1b6064820152608401610995565b611052816001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f16573d6000803e3d6000fd5b6110b55760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a4352442d3031313a42554e444c455f4d414e414745525f494e5360448201526d0a8829c868abe9a92a69a82a886960931b6064820152608401610995565b5050600380546001600160a01b039687166001600160a01b031991821617909155600480549587169582169590951790945550600580549285169284169290921790915560068054919093169116179055565b600080600080516020614ae783398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015611190573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b491906146ad565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611220573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611244919061463d565b156112c457600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156112a0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066491906145ee565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6112f66105df565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611336573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135a91906146c6565b600080516020614ac78339815191528054600160401b900460ff168061138d575080546001600160401b03808416911610155b156113ab5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113d685856121b5565b6113df83612454565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b6000610664600080516020614ac7833981519152546001600160401b031690565b6000600080516020614ae78339815191526001018281548110611474576114746146e3565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60006114b46001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611507573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261152f919081019061480d565b90506000816080015190506000816001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561157a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159e91906145ee565b9050336001600160a01b038216146115cb576040516302613e9f60e51b8152336004820152602401610995565b6005546000906115e3906001600160a01b031661245c565b604051633ca904dd60e21b81529091506001600160a01b0382169063f2a41374906116149088908a90600401614658565b600060405180830381600087803b15801561162e57600080fd5b505af1158015611642573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528616925063f7bc431c91506024015b600060405180830381600087803b15801561168a57600080fd5b505af115801561169e573d6000803e3d6000fd5b50505050505050505050565b60006116b46105df565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611709573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106649190614841565b600080516020614ac78339815191528054600160401b810460ff1615906001600160401b03166000811580156117605750825b90506000826001600160401b0316600114801561177c5750303b155b90508115801561178a575080155b156117a85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117d257845460ff60401b1916600160401b1785555b6117dc88886121b5565b6117e687876124ce565b831561182c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b60008080808033816118506001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b03821660048201819052919250829160009163d272ac1e90602401602060405180830381865afa15801561189c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c09190614685565b604051632efe011360e01b815260036004820152600060248201819052604482018190529192506001600160a01b0385169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015611934573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119589190614597565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156119ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d19190614841565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5b91906145ee565b6003549091508190611a75906001600160a01b031661245c565b604051637bee8e7d60e11b8152306004820152909b506001600160a01b038c169063f7dd1cfa90602401600060405180830381600087803b158015611ab957600080fd5b505af1158015611acd573d6000803e3d6000fd5b5050600454611ae792506001600160a01b0316905061245c565b60405163976b0a7760e01b81526001600160a01b038d8116600483015286811660248301526001600160601b0386166044830152336064830152919b50908b169063976b0a7790608401600060405180830381600087803b158015611b4b57600080fd5b505af1158015611b5f573d6000803e3d6000fd5b505060405163834af15360e01b81526001600160a01b038d81166004830152600093508416915063834af153906024016000604051808303816000875af1158015611bae573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bd6919081019061485e565b508051600554909b50909150611bf4906001600160a01b031661245c565b604051633ca904dd60e21b81529099506001600160a01b038a169063f2a4137490611c259088908e90600401614658565b600060405180830381600087803b158015611c3f57600080fd5b505af1158015611c53573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b038c811660048301528e16925063f7bc431c9150602401600060405180830381600087803b158015611c9a57600080fd5b505af1158015611cae573d6000803e3d6000fd5b5050600654611cc892506001600160a01b0316905061245c565b604051630c861c2560e41b81526001600160a01b038e8116600483015287811660248301526001600160601b038d1660448301529199509089169063c861c25090606401600060405180830381600087803b158015611d2657600080fd5b505af1158015611d3a573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b038b811660048301528e16925063422c9d009150602401600060405180830381600087803b158015611d8057600080fd5b505af1158015611d94573d6000803e3d6000fd5b50505050611da38c8c8a612609565b8b6001600160a01b031663b428b0b0611dba61264b565b896040518363ffffffff1660e01b8152600401611dd892919061460b565b6020604051808303816000875af1158015611df7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e1b919061463d565b508b6001600160a01b031663b7d2b162611e3361264b565b306040518363ffffffff1660e01b8152600401611e5192919061460b565b6020604051808303816000875af1158015611e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e94919061463d565b50604080516001600160a01b038e811682528d811660208301528b16818301526001600160601b038c16606082015290517f89f53d1fc9d655ac6863fb19d55f6cc8a7649a51ec36a0d13ec77d2bd2e970f39181900360800190a1505050505050509091929394565b611f056111bb565b6001600160a01b0316336001600160a01b031614611f385760405163700dd81160e01b8152336004820152602401610995565b6005546001600160a01b0316611fa55760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a4352442d3030333a494e5354414e43455f5245414445525f4d4160448201526b14d5115497d393d517d4d15560a21b6064820152608401610995565b6001600160a01b0381166120065760405162461bcd60e51b815260206004820152602260248201527f4552524f523a4352442d3031323a494e5354414e43455f5245414445525f5a45604482015261524f60f01b6064820152608401610995565b6005546001600160a01b039081169082160361207d5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a4352442d3031343a494e5354414e43455f5245414445525f4d4160448201526f535445525f53414d455f41535f4e455760801b6064820152608401610995565b600081905061212e816001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e79190614685565b6004805460408051630322622f60e51b815290516001600160a01b039092169263644c45e09282820192602092908290030181865afa158015610f78573d6000803e3d6000fd5b6121925760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a4352442d3031353a494e5354414e43455f5245414445525f494e60448201526e0a6a8829c868abe9a92a69a82a8869608b1b6064820152608401610995565b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b6121bd6126c3565b600080516020614ae783398151915260006121ed600080516020614ac7833981519152546001600160401b031690565b905060006121f96105df565b9050816001600160401b03166001036122265760028301805462ffffff191662ffffff8316179055612274565b600283015462ffffff908116908216116122745760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610995565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015612328573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234c91906148c1565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf689061141f9083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101c46126c3565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b0381166124c9576040516330be1a3d60e21b815260040160405180910390fd5b919050565b600080516020614ac78339815191528054600160401b810460ff1615906001600160401b03166000811580156125015750825b90506000826001600160401b0316600114801561251d5750303b155b90508115801561252b575080155b156125495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561257357845460ff60401b1916600160401b1785555b6000808780602001905181019061258a91906148e8565b92509050612598818a6126fc565b6125a8631b4612f160e31b612789565b6125b8633fb125d560e21b612789565b5050831561260057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b61261383836127ae565b61261d8383612b59565b6126278383612edb565b612631838361323c565b61263c83838361352e565b6126468383613ab0565b505050565b6040516368aebf7b60e01b81526000600482018190529073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af415801561269f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066491906146c6565b600080516020614ac783398151915254600160401b900460ff166126fa57604051631afcd79f60e31b815260040160405180910390fd5b565b600061272a60408051808201909152600f81526e496e7374616e63655365727669636560881b602082015290565b6127326116aa565b604051602001612743929190614922565b6040516020818303038152906040529050600061275f84613d35565b905060006127728583603c848888613da6565b612782631b4612f160e31b612789565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b60006127c26001546001600160a01b031690565b600154604051632efe011360e01b815260036004820152600060248201819052604482018190529293506001600160a01b039091169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561283a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285e9190614597565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156128b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d79190614841565b604080516001600160e01b031960e085901b16815260048101919091526013604482015272446973747269627574696f6e5365727669636560681b606482015260ff9091166024820152608401602060405180830381865afa158015612941573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296591906145ee565b9050836001600160a01b031663b428b0b061297e613e72565b836040518363ffffffff1660e01b815260040161299c92919061460b565b6020604051808303816000875af11580156129bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129df919061463d565b50604080516002808252606082018352600092602083019080368337019050509050630b24cf5f60e01b81600081518110612a1c57612a1c6146e3565b6001600160e01b031990921660209283029190910190910152805163bd5947e360e01b9082906001908110612a5357612a536146e3565b6001600160e01b0319909216602092830291909101909101526001600160a01b0385166308d6122d8583612a85613e72565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612ade573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b0291906146c6565b6040518463ffffffff1660e01b8152600401612b2093929190614947565b600060405180830381600087803b158015612b3a57600080fd5b505af1158015612b4e573d6000803e3d6000fd5b505050505050505050565b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015612bcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf19190614597565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612c46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c6a9190614841565b604080516001600160e01b031960e085901b1681526004810191909152600b60448201526a506f6f6c5365727669636560a81b606482015260ff9091166024820152608401602060405180830381865afa158015612ccc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cf091906145ee565b9050826001600160a01b031663b428b0b0612d09613eae565b836040518363ffffffff1660e01b8152600401612d2792919061460b565b6020604051808303816000875af1158015612d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6a919061463d565b5060408051600480825260a082019092526000916020820160808036833701905050905063e7cd37d460e01b81600081518110612da957612da96146e3565b6001600160e01b0319909216602092830291909101909101528051633055195560e11b9082906001908110612de057612de06146e3565b6001600160e01b0319909216602092830291909101909101526001600160a01b0384166308d6122d8483612e12613eae565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612e6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e8f91906146c6565b6040518463ffffffff1660e01b8152600401612ead93929190614947565b600060405180830381600087803b158015612ec757600080fd5b505af115801561182c573d6000803e3d6000fd5b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015612f4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f739190614597565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612fc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fec9190614841565b604080516001600160e01b031960e085901b1681526004810191909152600e60448201526d50726f647563745365727669636560901b606482015260ff9091166024820152608401602060405180830381865afa158015613051573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061307591906145ee565b9050826001600160a01b031663b428b0b061308e613eea565b836040518363ffffffff1660e01b81526004016130ac92919061460b565b6020604051808303816000875af11580156130cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130ef919061463d565b5060408051600580825260c082019092526000916020820160a0803683370190505090506391ff6eaa60e01b8160008151811061312e5761312e6146e3565b6001600160e01b03199092166020928302919091019091015280516354e750a160e11b9082906001908110613165576131656146e3565b6001600160e01b03199092166020928302919091019091015280516317b0844560e11b908290600290811061319c5761319c6146e3565b6001600160e01b03199092166020928302919091019091015280516314eddc0360e31b90829060039081106131d3576131d36146e3565b6001600160e01b0319909216602092830291909101909101528051633e77a42160e11b908290600490811061320a5761320a6146e3565b6001600160e01b0319909216602092830291909101909101526001600160a01b0384166308d6122d8483612e12613eea565b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156132b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132d49190614597565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015613329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061334d9190614841565b604080516001600160e01b031960e085901b1681526004810191909152600d60448201526c506f6c6963795365727669636560981b606482015260ff9091166024820152608401602060405180830381865afa1580156133b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133d591906145ee565b9050826001600160a01b031663b428b0b06133ee613f26565b836040518363ffffffff1660e01b815260040161340c92919061460b565b6020604051808303816000875af115801561342b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061344f919061463d565b50604080516003808252608082019092526000916020820160608036833701905050905063bc8d400060e01b8160008151811061348e5761348e6146e3565b6001600160e01b0319909216602092830291909101909101528051634d4b06a960e11b90829060019081106134c5576134c56146e3565b6001600160e01b0319909216602092830291909101909101528051631750d17360e21b90829060029081106134fc576134fc6146e3565b6001600160e01b0319909216602092830291909101909101526001600160a01b0384166308d6122d8483612e12613f26565b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156135a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135c69190614597565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561361b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061363f9190614841565b604080516001600160e01b031960e085901b1681526004810191909152600d60448201526c42756e646c655365727669636560981b606482015260ff9091166024820152608401602060405180830381865afa1580156136a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136c791906145ee565b9050836001600160a01b031663b428b0b06136e0613f62565b836040518363ffffffff1660e01b81526004016136fe92919061460b565b6020604051808303816000875af115801561371d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613741919061463d565b50604080516002808252606082018352600092602083019080368337019050509050636071a68e60e01b8160008151811061377e5761377e6146e3565b6001600160e01b03199092166020928302919091019091015280516307f8b57360e31b90829060019081106137b5576137b56146e3565b6001600160e01b0319909216602092830291909101909101526001600160a01b0385166308d6122d85836137e7613f62565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015613840573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061386491906146c6565b6040518463ffffffff1660e01b815260040161388293929190614947565b600060405180830381600087803b15801561389c57600080fd5b505af11580156138b0573d6000803e3d6000fd5b5060009250600591506138c09050565b6040519080825280602002602001820160405280156138e9578160200160208202803683370190505b509050630cc7e61460e01b81600081518110613907576139076146e3565b6001600160e01b0319909216602092830291909101909101528051631351fccf60e31b908290600190811061393e5761393e6146e3565b6001600160e01b03199092166020928302919091019091015280516346f0e8a760e11b9082906002908110613975576139756146e3565b6001600160e01b031990921660209283029190910190910152805163b5346af560e01b90829060039081106139ac576139ac6146e3565b6001600160e01b03199092166020928302919091019091015280516306fa456560e01b90829060049081106139e3576139e36146e3565b6001600160e01b0319909216602092830291909101909101526001600160a01b0386166308d6122d8583613a15613f62565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015613a6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a9291906146c6565b6040518463ffffffff1660e01b815260040161167093929190614947565b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015613b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b489190614597565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015613b9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bc19190614841565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e496e7374616e63655365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015613c27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c4b91906145ee565b9050826001600160a01b031663b428b0b0613c64613f9e565b836040518363ffffffff1660e01b8152600401613c8292919061460b565b6020604051808303816000875af1158015613ca1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cc5919061463d565b506040805160018082528183019092526000916020808301908036833701905050905063f7bc431c60e01b81600081518110613d0357613d036146e3565b6001600160e01b0319909216602092830291909101909101526001600160a01b0384166308d6122d8483612e12613f9e565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015613d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613da09190614685565b92915050565b613de76301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b613df18287613fda565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101613e618382614a07565b506126006303fb044760e21b612789565b6040516368aebf7b60e01b8152610834600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401612682565b6040516368aebf7b60e01b8152610898600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401612682565b6040516368aebf7b60e01b81526108fc600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401612682565b6040516368aebf7b60e01b8152610960600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401612682565b6040516368aebf7b60e01b81526109c4600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401612682565b6040516368aebf7b60e01b81526107d0600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401612682565b6001600160a01b0382166140305760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610995565b600280546001600160a01b0319166001600160a01b03841617905561405481614058565b5050565b6001546001600160a01b0316156140915760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610995565b6001600160a01b0381166140b85760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036140ee5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610995565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632eaf856d60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015614168575060408051601f3d908101601f191682019092526141659181019061463d565b60015b6141905760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610995565b806140545760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610995565b50565b6000602082840312156141ce57600080fd5b81356001600160e01b0319811681146141e657600080fd5b9392505050565b60005b838110156142085781810151838201526020016141f0565b50506000910152565b600081518084526142298160208601602086016141ed565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161428160a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e06101008401526142c7610120840182614211565b905082810360208401526142db8185614211565b95945050505050565b6001600160a01b03811681146141b957600080fd5b6001600160401b03811681146141b957600080fd5b60008060006060848603121561432357600080fd5b833561432e816142e4565b9250602084013561433e816142f9565b9150604084013561434e816142e4565b809150509250925092565b6020815260006141e66020830184614211565b6000806000806080858703121561438257600080fd5b843561438d816142e4565b9350602085013561439d816142e4565b925060408501356143ad816142e4565b915060608501356143bd816142e4565b939692955090935050565b62ffffff811681146141b957600080fd5b6000602082840312156143eb57600080fd5b81356141e6816143c8565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561442e5761442e6143f6565b60405290565b604051601f8201601f191681016001600160401b038111828210171561445c5761445c6143f6565b604052919050565b60006001600160401b0382111561447d5761447d6143f6565b50601f01601f191660200190565b6000806000606084860312156144a057600080fd5b83356144ab816142e4565b925060208401356144bb816142e4565b915060408401356001600160401b038111156144d657600080fd5b8401601f810186136144e757600080fd5b80356144fa6144f582614464565b614434565b81815287602083850101111561450f57600080fd5b816020840160208301376000602083830101528093505050509250925092565b60006020828403121561454157600080fd5b5035919050565b6001600160601b03811681146141b957600080fd5b60006020828403121561456f57600080fd5b81356141e681614548565b60006020828403121561458c57600080fd5b81356141e6816142e4565b6000602082840312156145a957600080fd5b81516141e6816143c8565b600181811c908216806145c857607f821691505b6020821081036145e857634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561460057600080fd5b81516141e6816142e4565b6001600160401b039290921682526001600160a01b0316602082015260400190565b805180151581146124c957600080fd5b60006020828403121561464f57600080fd5b6141e68261462d565b6001600160a01b039290921682526001600160601b0316602082015260400190565b80516124c981614548565b60006020828403121561469757600080fd5b81516141e681614548565b80516124c9816142e4565b6000602082840312156146bf57600080fd5b5051919050565b6000602082840312156146d857600080fd5b81516141e6816142f9565b634e487b7160e01b600052603260045260246000fd5b60ff811681146141b957600080fd5b80516124c9816146f9565b600082601f83011261472457600080fd5b81516147326144f582614464565b81815284602083860101111561474757600080fd5b6147588260208301602087016141ed565b949350505050565b600060e0828403121561477257600080fd5b61477a61440c565b90506147858261467a565b81526147936020830161467a565b60208201526147a460408301614708565b60408201526147b56060830161462d565b60608201526147c6608083016146a2565b60808201526147d760a083016146a2565b60a082015260c08201516001600160401b038111156147f557600080fd5b61480184828501614713565b60c08301525092915050565b60006020828403121561481f57600080fd5b81516001600160401b0381111561483557600080fd5b61475884828501614760565b60006020828403121561485357600080fd5b81516141e6816146f9565b6000806040838503121561487157600080fd5b82516001600160401b038082111561488857600080fd5b61489486838701614760565b935060208501519150808211156148aa57600080fd5b506148b785828601614713565b9150509250929050565b6000602082840312156148d357600080fd5b815164ffffffffff811681146141e657600080fd5b600080604083850312156148fb57600080fd5b8251614906816142e4565b6020840151909250614917816142e4565b809150509250929050565b6040815260006149356040830185614211565b905060ff831660208301529392505050565b6001600160a01b038416815260606020808301829052845191830182905260009185820191906080850190845b8181101561499a5784516001600160e01b03191683529383019391830191600101614974565b50508093505050506001600160401b0383166040830152949350505050565b601f82111561264657600081815260208120601f850160051c810160208610156149e05750805b601f850160051c820191505b818110156149ff578281556001016149ec565b505050505050565b81516001600160401b03811115614a2057614a206143f6565b614a3481614a2e84546145b4565b846149b9565b602080601f831160018114614a695760008415614a515750858301515b600019600386901b1c1916600185901b1785556149ff565b600085815260208120601f198616915b82811015614a9857888601518255948401946001909101908401614a79565b5085821015614ab65787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a26469706673582212204e2f1d7347c146ba342298b42b5e5fd68b937480ab1958e307a3600efb29aee264736f6c6343000814003360a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
|
339
|
-
"deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620000ab5760003560e01c8063aef485a0116200006e578063aef485a0146200012e578063c987336c1462000154578063cc9fc59a146200016b578063e97fac05146200017d578063f6876768146200019457600080fd5b8063138461e014620000b05780635ab1bd5314620000bc578063644c45e014620000e6578063893d20e81462000112578063933a9ce8146200011c575b600080fd5b620000ba620001ab565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001620000dd565b620000c9620003da565b6002546001600160a01b0316620000c9565b620001456200013f3660046200094b565b620004fd565b604051620000dd9190620009fd565b620000c96200016536600462000a19565b62000559565b6003546001600160a01b0316620000c9565b620000c96200018e36600462000a19565b62000726565b62000145620001a53660046200094b565b62000858565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000a6f565b156200027c576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b0316620002a65760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000316919062000a6f565b62000340576040516372657a5160e01b81526001600160a01b038216600482015260240162000273565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156200038b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b1919062000a93565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200043e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000464919062000a6f565b15620004ed57600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e8919062000abe565b905090565b506001546001600160a01b031690565b606063a745e3df60e01b8484846040516024016200051e9392919062000ade565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b600062000565620003da565b6001600160a01b0316336001600160a01b0316146200059a5760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff16620005c557604051631e35411160e31b815260040160405180910390fd5b6000620005d1620003da565b90506000620005e86002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000628573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200064e919062000abe565b6002549091506001600160a01b031660006200066c878588620004fd565b604051639623609d60e01b81529091506001600160a01b03841690639623609d90620006a19085908b90869060040162000ade565b600060405180830381600087803b158015620006bc57600080fd5b505af1158015620006d1573d6000803e3d6000fd5b50506002546040516001600160a01b038b8116825290911697508792507f5f1d3094af018381967fbedd54b80ffb09c5a9799db985f5e17e322672686306915060200160405180910390a25050505092915050565b600062000732620003da565b6001600160a01b0316336001600160a01b031614620007675760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff161562000793576040516375842f8760e01b815260040160405180910390fd5b60006200079f620003da565b9050306000620007b186848762000858565b9050858282604051620007c49062000879565b620007d29392919062000ade565b604051809103906000f080158015620007ef573d6000803e3d6000fd5b50600280546001600160a81b0319166001600160a01b0392831617600160a01b179081905560405188831681529116945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b606063cf7a1d7760e01b8484846040516024016200051e9392919062000ade565b610f2f8062000b1683390190565b6001600160a01b03811681146200089d57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008c857600080fd5b813567ffffffffffffffff80821115620008e657620008e6620008a0565b604051601f8301601f19908116603f01168101908282118183101715620009115762000911620008a0565b816040528381528660208588010111156200092b57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200096157600080fd5b83356200096e8162000887565b92506020840135620009808162000887565b9150604084013567ffffffffffffffff8111156200099d57600080fd5b620009ab86828701620008b6565b9150509250925092565b6000815180845260005b81811015620009dd57602081850181015186830182015201620009bf565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600062000a126020830184620009b5565b9392505050565b6000806040838503121562000a2d57600080fd5b823562000a3a8162000887565b9150602083013567ffffffffffffffff81111562000a5757600080fd5b62000a6585828601620008b6565b9150509250929050565b60006020828403121562000a8257600080fd5b8151801515811462000a1257600080fd5b60006020828403121562000aa657600080fd5b81516001600160601b038116811462000a1257600080fd5b60006020828403121562000ad157600080fd5b815162000a128162000887565b6001600160a01b0384811682528316602082015260606040820181905260009062000b0c90830184620009b5565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220caebfde4983ac975907e53973bb4a887f9c07a38fa9ff827bc2955a0206679e364736f6c63430008140033",
|
558
|
+
"bytecode": "0x608060405234801561000f575f80fd5b50604051617ffb380380617ffb83398101604081905261002e91610ae6565b5f8160405161003c90610ab1565b8190604051809103905ff5905080158015610059573d5f803e3d5ffd5b5090505f84846040516020016100859291906001600160a01b0392831681529116602082015260400190565b60408051601f1981840301815291905290505f6100a4858484876100d0565b600580546001600160a01b0319166001600160a01b039290921691909117905550610c7b945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0080545f919068010000000000000000810460ff1615906001600160401b0316838115801561011c5750825b90505f826001600160401b031660011480156101375750303b155b905081158015610145575080155b156101635760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561019157845460ff60401b1916680100000000000000001785555b61019d8a8a8a8a6101f2565b955083156101e557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050949350505050565b5f6101fb6102c6565b5f8061020687610316565b90925090508386826102188589610358565b60405161022490610abe565b61023093929190610b4d565b8190604051809103905ff590508015801561024d573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b039290921691909117905561027886836103b0565b6040516001600160a01b038881168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a25050949350505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661031457604051631afcd79f60e31b815260040160405180910390fd5b565b6004545f9081901561033b5760405163402b135f60e11b815260040160405180910390fd5b3361034684826107be565b61034e610850565b9430945092505050565b60606349bb9e4b60e01b8383604051602401610375929190610b81565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b600254604080516303639b8b60e21b815290516001600160a01b03909216915f918391630d8e6e2c916004808201926020929091908290030181865afa1580156103fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104209190610bac565b905061049e8173__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af415801561046d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104919190610bac565b62ffffff90811691161490565b156104bc576040516348c618db60e01b815260040160405180910390fd5b6004541561061957600480546104d490600190610bd5565b815481106104e4576104e4610bf4565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610555573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105799190610c08565b604051635560100760e01b815262ffffff8316600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156105cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ef9190610c08565b1161061957604051633e614b6d60e11b815262ffffff821660048201526024015b60405180910390fd5b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808716600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038088166020848101919091529087168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156106e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070d9190610c1f565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9485165f90815260038452604090819020855181549587015197166001600160b81b03199095169490941763010000006001600160a01b0397881602178455840151600190930180546060860151608090960151949096166001600160c81b031990961695909517600160a01b94909216939093021763ffffffff60c81b1916600160c81b919092160217905592915050565b6107c66102c6565b6107ce61099d565b6107d7826109e5565b6001600160a01b0381166107fe5760405163f17ef42d60e01b815260040160405180910390fd5b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b039093169290920291909117905550565b5f807f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156108cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f39190610c43565b1561097e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610954573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109789190610c62565b91505090565b546c0100000000000000000000000090046001600160a01b0316919050565b6109a56102c6565b6103146301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6109ed6102c6565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015610a43573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a679190610c43565b610a8f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610610565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b613f878061322883390190565b610e4c806171af83390190565b80516001600160a01b0381168114610ae1575f80fd5b919050565b5f805f60608486031215610af8575f80fd5b610b0184610acb565b9250610b0f60208501610acb565b9150604084015190509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6001600160a01b038481168252831660208201526060604082018190525f90610b7890830184610b1f565b95945050505050565b6001600160a01b03831681526040602082018190525f90610ba490830184610b1f565b949350505050565b5f60208284031215610bbc575f80fd5b815162ffffff81168114610bce575f80fd5b9392505050565b818103818111156103aa57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c18575f80fd5b5051919050565b5f60208284031215610c2f575f80fd5b815164ffffffffff81168114610bce575f80fd5b5f60208284031215610c53575f80fd5b81518015158114610bce575f80fd5b5f60208284031215610c72575f80fd5b610bce82610acb565b6125a080610c885f395ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063893d20e8116100a9578063b88da7591161006e578063b88da75914610388578063c987336c1461039b578063cc9fc59a146103ae578063f5c1b5a7146103bf578063fd0c63d9146103d2575f80fd5b8063893d20e8146103365780638e9afce61461033e578063933a9ce814610351578063946dfcfe14610362578063ada9652e14610374575f80fd5b80631775564d116100ef5780631775564d146101c85780632db5b86f146101e85780634d459c90146101fb5780635ab1bd5314610308578063644c45e014610319575f80fd5b806301ffc9a71461012057806304499582146101615780630d8e6e2c1461018c578063138461e0146101a8575b5f80fd5b61014c61012e36600461130d565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61017461016f3660046113f1565b6103da565b6040516001600160a01b039091168152602001610158565b6101946104ad565b60405162ffffff9091168152602001610158565b6101b061051d565b6040516001600160601b039091168152602001610158565b6101db6101d6366004611457565b610527565b60405161015891906114d2565b6101746101f63660046114e4565b61057f565b6102ab610209366004611552565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610158565b6001546001600160a01b0316610174565b5f8051602061254b833981519152546001600160601b03166101b0565b61017461064c565b6101db61034c36600461156d565b61077d565b6002546001600160a01b0316610174565b6004545b604051908152602001610158565b6103665f8051602061254b83398151915281565b6101946103963660046115a7565b6107d0565b6101746103a9366004611457565b61080e565b6005546001600160a01b0316610174565b6101746103cd3660046113f1565b6109b5565b6101b0610ad0565b5f6103e3610ae7565b5f806103ee87610b32565b915091508386826103ff8589610527565b60405161040b90611300565b610417939291906115be565b8190604051809103905ff5905080158015610434573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b039290921691909117905561045f8683610b74565b6040516001600160a01b038881168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a25050949350505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa1580156104f4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061051891906115f2565b905090565b5f61051830610f7d565b60606349bb9e4b60e01b838360405160240161054492919061160d565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b5f610588610ae7565b5f8061059386610b32565b9150915084816105a38487610527565b6040516105af90611300565b6105bb939291906115be565b604051809103905ff0801580156105d4573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169190911790556105ff8583610b74565b6040516001600160a01b038781168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b5f805f8051602061254b83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156106b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106dc9190611630565b15610767576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561073d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610761919061164f565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b8260405160240161079891906114d2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f600482815481106107e4576107e461166a565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f61081761064c565b6001600160a01b0316336001600160a01b03161461084f5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6004545f036108715760405163366dfd2160e21b815260040160405180910390fd5b5f61087a61064c565b90505f61088f6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156108cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ef919061164f565b6002549091506001600160a01b03908116908216639623609d82886109138961077d565b6040518463ffffffff1660e01b8152600401610931939291906115be565b5f604051808303815f87803b158015610948575f80fd5b505af115801561095a573d5f803e3d5ffd5b505050506109688684610b74565b6040516001600160a01b038881168252919550908516907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0080545f9190600160401b810460ff16159067ffffffffffffffff1683811580156109fd5750825b90505f8267ffffffffffffffff166001148015610a195750303b155b905081158015610a27575080155b15610a455760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610a6f57845460ff60401b1916600160401b1785555b610a7b8a8a8a8a6103da565b95508315610ac357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050949350505050565b6002545f90610518906001600160a01b0316610f7d565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610b3057604051631afcd79f60e31b815260040160405180910390fd5b565b6004545f90819015610b575760405163402b135f60e11b815260040160405180910390fd5b33610b628482611176565b610b6a61064c565b9430945092505050565b600254604080516303639b8b60e21b815290516001600160a01b03909216915f918391630d8e6e2c916004808201926020929091908290030181865afa158015610bc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be491906115f2565b9050610c628173__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5591906115f2565b62ffffff90811691161490565b15610c80576040516348c618db60e01b815260040160405180910390fd5b60045415610dd85760048054610c989060019061167e565b81548110610ca857610ca861166a565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610d19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3d919061169d565b604051635560100760e01b815262ffffff8316600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610d8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db3919061169d565b11610dd857604051633e614b6d60e11b815262ffffff82166004820152602401610846565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808716600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038088166020848101919091529087168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af4158015610ea8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecc91906116b4565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9485165f90815260038452604090819020855181549587015197166001600160b81b03199095169490941763010000006001600160a01b0397881602178455840151600190930180546060860151608090960151949096166001600160c81b031990961695909517600160a01b94909216939093021763ffffffff60c81b1916600160c81b919092160217905592915050565b5f805f8051602061254b83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610fe9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061100d9190611630565b156110395780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610846565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561108b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110af9190611630565b6110d75760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610846565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611129573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061114d91906116d8565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b61117e610ae7565b6111866111ec565b61118f82611234565b6001600160a01b0381166111b65760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061254b83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6111f4610ae7565b610b306301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61123c610ae7565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015611292573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b69190611630565b6112de5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610846565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610e4c806116ff83390190565b5f6020828403121561131d575f80fd5b81356001600160e01b031981168114611334575f80fd5b9392505050565b6001600160a01b038116811461134f575f80fd5b50565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611375575f80fd5b813567ffffffffffffffff81111561138f5761138f611352565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156113be576113be611352565b6040528181528382016020018510156113d5575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f8060808587031215611404575f80fd5b843561140f8161133b565b9350602085013561141f8161133b565b9250604085013567ffffffffffffffff81111561143a575f80fd5b61144687828801611366565b949793965093946060013593505050565b5f8060408385031215611468575f80fd5b82356114738161133b565b9150602083013567ffffffffffffffff81111561148e575f80fd5b61149a85828601611366565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61133460208301846114a4565b5f805f606084860312156114f6575f80fd5b83356115018161133b565b925060208401356115118161133b565b9150604084013567ffffffffffffffff81111561152c575f80fd5b61153886828701611366565b9150509250925092565b62ffffff8116811461134f575f80fd5b5f60208284031215611562575f80fd5b813561133481611542565b5f6020828403121561157d575f80fd5b813567ffffffffffffffff811115611593575f80fd5b61159f84828501611366565b949350505050565b5f602082840312156115b7575f80fd5b5035919050565b6001600160a01b038481168252831660208201526060604082018190525f906115e9908301846114a4565b95945050505050565b5f60208284031215611602575f80fd5b815161133481611542565b6001600160a01b03831681526040602082018190525f9061159f908301846114a4565b5f60208284031215611640575f80fd5b81518015158114611334575f80fd5b5f6020828403121561165f575f80fd5b81516113348161133b565b634e487b7160e01b5f52603260045260245ffd5b8181038181111561057957634e487b7160e01b5f52601160045260245ffd5b5f602082840312156116ad575f80fd5b5051919050565b5f602082840312156116c4575f80fd5b815164ffffffffff81168114611334575f80fd5b5f602082840312156116e8575f80fd5b81516001600160601b0381168114611334575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220d1d9ba7859b103e29f571e13ffad7af965d0e5d8ec64ad8a9ef65dd1c1237e6464736f6c634300081a00336080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613eb1806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101dc575f3560e01c80637a9e5e4b11610109578063ad5014671161009e578063bf7e214f1161006e578063bf7e214f14610478578063c265172514610480578063e52ba1cb14610488578063edabac031461049b575f80fd5b8063ad5014671461041b578063ada9652e1461044a578063b68d18091461045e578063b7d6851914610465575f80fd5b8063893d20e8116100d9578063893d20e8146103cc5780638fb36037146103d457806396cdfa3f146103f5578063a2356b3a14610408575f80fd5b80637a9e5e4b1461038c5780637de45f131461039f57806386892313146103b2578063872309c7146103c5575f80fd5b80632d764ef81161017f578063644c45e01161014f578063644c45e0146103225780636a778e731461033f5780636c741e781461035257806376b707b714610372575f80fd5b80632d764ef8146102c4578063329d6e74146102d757806349bb9e4b146102ea5780635ab1bd53146102fd575f80fd5b8063138461e0116101ba578063138461e0146102525780631eff4b221461027257806322f3e2d4146102a7578063254f6866146102af575f80fd5b806301ffc9a7146101e05780630d8e6e2c146102215780630fec111c1461023d575b5f80fd5b61020c6101ee3660046135f7565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102296104ac565b60405162ffffff9091168152602001610218565b610245610533565b6040516102189190613653565b61025a6106ed565b6040516001600160601b039091168152602001610218565b6102997f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b61020c6106f7565b6102c26102bd3660046136fb565b61076e565b005b6102c26102d2366004613728565b6108e9565b6102c26102e5366004613827565b6109f5565b6102c26102f8366004613858565b610b3f565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b5f80516020613e1c833981519152546001600160601b031661025a565b61025a61034d3660046136fb565b610c3b565b61035a6117e3565b6040516001600160401b039091168152602001610218565b61037a61186f565b60405160ff9091168152602001610218565b6102c261039a3660046136fb565b6118d7565b6102c26103ad3660046138b8565b61195d565b6102c26103c03660046138e0565b611a2f565b6102995f81565b61030a611b05565b6103dc611c36565b6040516001600160e01b03199091168152602001610218565b6102c2610403366004613917565b611c6b565b6102c2610416366004613932565b611d14565b610423611e31565b604080516001600160a01b0390931683526001600160601b03909116602083015201610218565b6102995f80516020613e1c83398151915281565b600a61037a565b6102c261047336600461395e565b6122a5565b61030a612376565b6102c2612391565b61025a6104963660046138b8565b612449565b6008546001600160a01b031661030a565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561050a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052e9190613975565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105df573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061060391906139a2565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161064b611b05565b6001600160a01b03168152602001826001018054610668906139bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610694906139bd565b80156106df5780601f106106b6576101008083540402835291602001916106df565b820191905f5260205f20905b8154815290600101906020018083116106c257829003601f168201915b505050505081525091505090565b5f61052e3061255e565b5f610700612376565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610744573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107689190613a00565b15905090565b610776611b05565b6001600160a01b0316336001600160a01b0316146107ae5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6008546001600160a01b03166107d7576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b0381166107fe57604051631aa1808560e31b815260040160405180910390fd5b6008546001600160a01b039081169082160361082d57604051630666e2a560e01b815260040160405180910390fd5b6007546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa15801561087b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061089f9190613a1b565b6001600160a01b0316146108c65760405163f026367160e01b815260040160405180910390fd5b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6108f5335b5f36612757565b6109063361090161186f565b61284d565b5f6109196001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa15801561095d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098191906139a2565b60035460405163db1e36e760e01b81526001600160601b038316600482015264ffffffffff851660248201529192506001600160a01b03169063db1e36e7906044015b5f604051808303815f87803b1580156109db575f80fd5b505af11580156109ed573d5f803e3d5ffd5b505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610a176104ac565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610a55573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a799190613a4a565b5f80516020613e5c8339815191528054600160401b900460ff1680610aab575080546001600160401b03808416911610155b15610ac95760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610af383612b49565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80516020613e5c8339815191528054600160401b810460ff1615906001600160401b03165f81158015610b705750825b90505f826001600160401b03166001148015610b8b5750303b155b905081158015610b99575080155b15610bb75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610be157845460ff60401b1916600160401b1785555b610beb8787612b51565b8315610c3257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f610c44611b05565b6001600160a01b0316336001600160a01b031614610c775760405163086391f760e31b81523360048201526024016107a5565b6007546001600160a01b031615610ca157604051632c237de760e11b815260040160405180910390fd5b6006546001600160a01b031615610ccb5760405163ab0cc43960e01b815260040160405180910390fd5b6009546001600160a01b031615610cf55760405163558f4f7b60e11b815260040160405180910390fd5b600a546001600160a01b031615610d1f5760405163d518f81b60e01b815260040160405180910390fd5b6001600160a01b038216610d46576040516309353e4560e11b815260040160405180910390fd5b5f8290505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d87573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dab9190613a1b565b90505f826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0e9190613a1b565b90505f8190505f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e51573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e759190613a1b565b90505f8190505f866001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610edc9190613a1b565b90505f8190505f886001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f439190613a1b565b90505f8190505f8a6001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610faa9190613a1b565b9050806001600160a01b038b16610fd4576040516327ccc33d60e11b815260040160405180910390fd5b6001600160a01b038916610ffa576040516295661560e31b815260040160405180910390fd5b6001600160a01b0387166110215760405163e267254160e01b815260040160405180910390fd5b6001600160a01b0385166110485760405163bfebabd760e01b815260040160405180910390fd5b6001600160a01b03831661106f57604051634e336b1d60e11b815260040160405180910390fd5b6001600160a01b038116611096576040516301fa2a2b60e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f69190613a1b565b6001600160a01b03168c6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561113b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115f9190613a1b565b6001600160a01b031614611186576040516334ddf1a760e21b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e69190613a1b565b6001600160a01b0316866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f9190613a1b565b6001600160a01b0316146112765760405163e168da3760e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d69190613a1b565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561131b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133f9190613a1b565b6001600160a01b031614611366576040516303bc742960e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c69190613a1b565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561140b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142f9190613a1b565b6001600160a01b03161461145657604051631129422760e31b815260040160405180910390fd5b8b6001600160a01b0316866001600160a01b031663681e65f06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561149c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114c09190613a1b565b6001600160a01b0316146114e757604051630bbd547960e01b815260040160405180910390fd5b8b6001600160a01b0316846001600160a01b031663681e65f06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115519190613a1b565b6001600160a01b03161461157857604051632b34b6d960e01b815260040160405180910390fd5b8b6001600160a01b0316886001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115e29190613a1b565b6001600160a01b031614611609576040516331783c7160e11b815260040160405180910390fd5b8a60055f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508860065f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508d60075f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508660085f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508460095f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600a5f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600b5f6101000a8154816001600160a01b0302191690836001600160a01b031602179055505f60075f9054906101000a90046001600160a01b031690505f60025f9054906101000a90046001600160a01b03166001600160a01b031663026bc43b83611758611b05565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044015f604051808303815f875af11580156117a1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526117c89190810190613ad6565b9050805f01519e505050505050505050505050505050919050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600a61180861186f565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af415801561184b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052e9190613a4a565b5f611878612376565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118b3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052e9190613ba6565b336118e0612376565b6001600160a01b0316816001600160a01b03161461191b5760405162d1953b60e31b81526001600160a01b03821660048201526024016107a5565b816001600160a01b03163b5f03611950576040516361798f2f60e11b81526001600160a01b03831660048201526024016107a5565b61195982612cea565b5050565b611966336108ee565b6119723361090161186f565b5f6119856001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156119c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119ed91906139a2565b600354604051634bae314b60e01b81526001600160601b038084166004830152851660248201529192506001600160a01b031690634bae314b906044016109c4565b611a38336108ee565b611a443361090161186f565b5f339050806001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aa89190613a1b565b604051638689231360e01b81526001600160a01b038581166004830152841515602483015291909116906386892313906044015b5f604051808303815f87803b158015611af3575f80fd5b505af1158015610c32573d5f803e3d5ffd5b5f805f80516020613e1c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611b71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b959190613a00565b15611c20576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1a9190613a1b565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020613e3c83398151915280545f9190600160a01b900460ff16611c5d575f611c1a565b638fb3603760e01b91505090565b611c74336108ee565b611c803361090161186f565b5f339050806001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce49190613a1b565b6040516396cdfa3f60e01b815283151560048201526001600160a01b0391909116906396cdfa3f906024016109c4565b611d1d336108ee565b611d293361090161186f565b5f611d3c6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611d80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da491906139a2565b600354604051636f61deef60e11b81526001600160601b0380841660048301526001600160a01b038781166024840152908616604483015292935091169063dec3bdde906064016020604051808303815f875af1158015611e07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e2b91906139a2565b50505050565b5f80611e3c336108ee565b335f611e46612d4a565b9050611e528183612e63565b60025460405163026bc43b60e01b81526001600160a01b038084166004830152858116602483015292965091169063026bc43b906044015f604051808303815f875af1158015611ea4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611ecb9190810190613ad6565b5f015192505f60065f9054906101000a90046001600160a01b03166001600160a01b0316638e5bc2936040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f459190613a1b565b9050816001600160a01b031663a4fe8bff611f686001546001600160a01b031690565b8784611f7261186f565b6040516001600160e01b031960e087901b1681526001600160a01b03948516600482015292841660248401529216604482015260ff90911660648201526084015f604051808303815f87803b158015611fc9575f80fd5b505af1158015611fdb573d5f803e3d5ffd5b50505050611ff16001546001600160a01b031690565b6001600160a01b0316856001600160a01b0316635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612036573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061205a9190613a1b565b6001600160a01b03161461207057612070613bc1565b6120e6856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d39190613ba6565b6120db61186f565b60ff90811691161490565b6120f2576120f2613bc1565b60035f9054906101000a90046001600160a01b03166001600160a01b03166381d9b45f8573__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63c6edc3dd6040518163ffffffff1660e01b8152600401602060405180830381865af415801561215d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121819190613bd5565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63f87bf3736040518163ffffffff1660e01b8152600401602060405180830381865af41580156121c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121ec9190613bf0565b6040516001600160e01b031960e086901b1681526001600160601b03909316600484015264ffffffffff909116602483015260448201526064015f604051808303815f87803b15801561223d575f80fd5b505af115801561224f573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03891660208201527f5f38ba73d945d51535b3c678f341052a70a580bed77c5db38464d02366c29fa8935001905060405180910390a15050509091565b6122ae336108ee565b6122ba3361090161186f565b5f6122cd6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612311573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061233591906139a2565b60035460405163545c994560e11b81526001600160601b0383166004820152602481018590529192506001600160a01b03169063a8b9328a906044016109c4565b5f80516020613e3c833981519152546001600160a01b031690565b61239a336108ee565b6123a63361090161186f565b600854339081905f906123c1906001600160a01b0316612fab565b604051636791f7ab60e01b81526001600160a01b03858116600483015291925090821690636791f7ab906024015f604051808303815f87803b158015612405575f80fd5b505af1158015612417573d5f803e3d5ffd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401611adc565b5f612453336108ee565b61245f3361090161186f565b5f6124726001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156124b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124da91906139a2565b6003546040516321ece65760e01b81526001600160601b038084166004830152861660248201529192506001600160a01b0316906321ece657906044016020604051808303815f875af1158015612533573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061255791906139a2565b5050919050565b5f805f80516020613e1c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156125ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125ee9190613a00565b1561261a5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016107a5565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561266c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126909190613a00565b6126b85760405163b9304b0d60e01b81526001600160a01b03841660048201526024016107a5565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561270a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272e91906139a2565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020613e3c8339815191525f8061278f612772612376565b873061278160045f8a8c613c07565b61278a91613c2e565b61301a565b91509150816109ed5763ffffffff81161561282a57825460ff60a01b1916600160a01b1783556127bd612376565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016127ec93929190613c66565b5f604051808303815f87803b158015612803575f80fd5b505af1158015612815573d5f803e3d5ffd5b5050845460ff60a01b19168555506109ed9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016107a5565b5f6128606001546001600160a01b031690565b604051632f2a35f760e11b81526001600160a01b0385811660048301529192505f91831690635e546bee90602401602060405180830381865afa1580156128a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128cd91906139a2565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015612926573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061294a9190613a00565b15612973576040516308afbeb960e31b81526001600160a01b03851660048201526024016107a5565b6040516305247a1760e51b81526001600160601b03821660048201525f906001600160a01b0384169063a48f42e0906024015f60405180830381865afa1580156129bf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526129e69190810190613ad6565b60400151905060ff8116600a14612a2457604051632e87cd2360e11b81526001600160a01b038616600482015260ff821660248201526044016107a5565b60405163b2466acf60e01b815260ff8516600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063b2466acf90602401602060405180830381865af4158015612a74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a989190613a00565b15612b42575f856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ada573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612afe9190613ba6565b905060ff808216908616146109ed57604051632f251c8760e21b81526001600160601b038416600482015260ff8087166024830152821660448201526064016107a5565b5050505050565b6101dc613122565b5f80516020613e5c8339815191528054600160401b810460ff1615906001600160401b03165f81158015612b825750825b90505f826001600160401b03166001148015612b9d5750303b155b905081158015612bab575080155b15612bc95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612bf357845460ff60401b1916600160401b1785555b5f8087806020019051810190612c099190613ca5565b91509150612c1882828b61315a565b612c2260026131fc565b600280546001600160a01b0319166001600160a01b0392909216919091179055612c4c60036131fc565b600380546001600160a01b0319166001600160a01b0392909216919091179055612c76600b6131fc565b600480546001600160a01b0319166001600160a01b0392909216919091179055612ca663fa64ec0b60e01b613293565b50508315610c3257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610c29565b5f80516020613e3c83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f80612dc860065f9054906101000a90046001600160a01b03166001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dc39190613a1b565b612fab565b600654909150612de0906001600160a01b0316612fab565b604080516379ccf11760e11b81526001600160a01b0384811660048301526024820192909252600d60448201526c24b739ba30b731b2a0b236b4b760991b606482015291935083169063f399e22e906084015f604051808303815f87803b158015612e49575f80fd5b505af1158015612e5b573d5f803e3d5ffd5b505050505090565b600b545f908190612e7c906001600160a01b0316612fab565b6009549091505f90612e96906001600160a01b0316612fab565b600a549091505f90612eb0906001600160a01b0316612fab565b6008549091505f90612eca906001600160a01b0316612fab565b6007549091505f90612ee4906001600160a01b0316612fab565b9050806001600160a01b031663db62d77b8987878787612f0c6001546001600160a01b031690565b612f1461186f565b6040516001600160e01b031960e08a901b1681526001600160a01b03978816600482015295871660248701529386166044860152918516606485015284166084840152831660a483015260ff1660c4820152908a1660e4820152610104015f604051808303815f87803b158015612f89575f80fd5b505af1158015612f9b573d5f803e3d5ffd5b50929a9950505050505050505050565b5f763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c175f526e5af43d82803e903d91602b57fd5bf38260781b17602052603760095ff090506001600160a01b038116613015576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516130889190613cd2565b5f60405180830381855afa9150503d805f81146130c0576040519150601f19603f3d011682016040523d82523d5f602084013e6130c5565b606091505b509150915081156131175760408151106130f757808060200190518101906130ed9190613ce8565b9094509250613117565b602081511061311757808060200190518101906131149190613a00565b93505b505094509492505050565b5f80516020613e5c83398151915254600160401b900460ff1661315857604051631afcd79f60e31b815260040160405180910390fd5b565b613162613122565b61316a6132c6565b6131e78383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131cf91906139a2565b60085f8660405180602001604052805f8152506132d6565b6131f763daf9067160e01b613293565b505050565b5f61320f6001546001600160a01b031690565b6001600160a01b031663d39e60438361322661186f565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613269573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061328d9190613a1b565b92915050565b61329b613122565b6132c3816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6132ce613122565b61315861341d565b6132de613122565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015613334573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133589190613a00565b6133805760405163cf6935e560e01b81526001600160a01b03881660048201526024016107a5565b6133898761344b565b613393868361345c565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016134028382613d61565b50613413634a531f3360e01b613293565b5050505050505050565b613425613122565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b613453613122565b6132c3816134d2565b613464613122565b61346c6134e3565b6134758261352b565b6001600160a01b03811661349c5760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020613e1c83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6134da613122565b6132c381612cea565b6134eb613122565b6131586301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b613533613122565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613589573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ad9190613a00565b6135d55760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107a5565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f60208284031215613607575f80fd5b81356001600160e01b03198116811461361e575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161369b608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526136df610100840182613625565b949350505050565b6001600160a01b03811681146132c3575f80fd5b5f6020828403121561370b575f80fd5b813561361e816136e7565b64ffffffffff811681146132c3575f80fd5b5f60208284031215613738575f80fd5b813561361e81613716565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561377957613779613743565b60405290565b604051601f8201601f191681016001600160401b03811182821017156137a7576137a7613743565b604052919050565b5f6001600160401b038211156137c7576137c7613743565b50601f01601f191660200190565b5f82601f8301126137e4575f80fd5b81356137f76137f2826137af565b61377f565b81815284602083860101111561380b575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215613837575f80fd5b81356001600160401b0381111561384c575f80fd5b6136df848285016137d5565b5f8060408385031215613869575f80fd5b8235613874816136e7565b915060208301356001600160401b0381111561388e575f80fd5b61389a858286016137d5565b9150509250929050565b6001600160601b03811681146132c3575f80fd5b5f602082840312156138c8575f80fd5b813561361e816138a4565b80151581146132c3575f80fd5b5f80604083850312156138f1575f80fd5b82356138fc816136e7565b9150602083013561390c816138d3565b809150509250929050565b5f60208284031215613927575f80fd5b813561361e816138d3565b5f8060408385031215613943575f80fd5b823561394e816136e7565b9150602083013561390c816138a4565b5f6020828403121561396e575f80fd5b5035919050565b5f60208284031215613985575f80fd5b815162ffffff8116811461361e575f80fd5b8051613015816138a4565b5f602082840312156139b2575f80fd5b815161361e816138a4565b600181811c908216806139d157607f821691505b6020821081036139ef57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051613015816138d3565b5f60208284031215613a10575f80fd5b815161361e816138d3565b5f60208284031215613a2b575f80fd5b815161361e816136e7565b6001600160401b03811681146132c3575f80fd5b5f60208284031215613a5a575f80fd5b815161361e81613a36565b8051613015816136e7565b60ff811681146132c3575f80fd5b805161301581613a70565b5f82601f830112613a98575f80fd5b8151613aa66137f2826137af565b818152846020838601011115613aba575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215613ae6575f80fd5b81516001600160401b03811115613afb575f80fd5b820160e08185031215613b0c575f80fd5b613b14613757565b613b1d82613997565b8152613b2b60208301613997565b6020820152613b3c60408301613a7e565b6040820152613b4d606083016139f5565b6060820152613b5e60808301613a65565b6080820152613b6f60a08301613a65565b60a082015260c08201516001600160401b03811115613b8c575f80fd5b613b9886828501613a89565b60c083015250949350505050565b5f60208284031215613bb6575f80fd5b815161361e81613a70565b634e487b7160e01b5f52600160045260245ffd5b5f60208284031215613be5575f80fd5b815161361e81613716565b5f60208284031215613c00575f80fd5b5051919050565b5f8085851115613c15575f80fd5b83861115613c21575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015613c5f576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215613cb6575f80fd5b8251613cc1816136e7565b602084015190925061390c816136e7565b5f82518060208501845e5f920191825250919050565b5f8060408385031215613cf9575f80fd5b8251613d04816138d3565b602084015190925063ffffffff8116811461390c575f80fd5b601f8211156131f757805f5260205f20601f840160051c81016020851015613d425750805b601f840160051c820191505b81811015612b42575f8155600101613d4e565b81516001600160401b03811115613d7a57613d7a613743565b613d8e81613d8884546139bd565b84613d1d565b6020601f821160018114613dc0575f8315613da95750848201515b5f19600385901b1c1916600184901b178455612b42565b5f84815260208120601f198516915b82811015613def5787850151825560209485019460019092019101613dcf565b5084821015613e0c57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122081b1ec85225d32ad40245b51ce88ba259754d43f8c6838b580b3872f912e132c64736f6c634300081a003360a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
|
559
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063893d20e8116100a9578063b88da7591161006e578063b88da75914610388578063c987336c1461039b578063cc9fc59a146103ae578063f5c1b5a7146103bf578063fd0c63d9146103d2575f80fd5b8063893d20e8146103365780638e9afce61461033e578063933a9ce814610351578063946dfcfe14610362578063ada9652e14610374575f80fd5b80631775564d116100ef5780631775564d146101c85780632db5b86f146101e85780634d459c90146101fb5780635ab1bd5314610308578063644c45e014610319575f80fd5b806301ffc9a71461012057806304499582146101615780630d8e6e2c1461018c578063138461e0146101a8575b5f80fd5b61014c61012e36600461130d565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61017461016f3660046113f1565b6103da565b6040516001600160a01b039091168152602001610158565b6101946104ad565b60405162ffffff9091168152602001610158565b6101b061051d565b6040516001600160601b039091168152602001610158565b6101db6101d6366004611457565b610527565b60405161015891906114d2565b6101746101f63660046114e4565b61057f565b6102ab610209366004611552565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610158565b6001546001600160a01b0316610174565b5f8051602061254b833981519152546001600160601b03166101b0565b61017461064c565b6101db61034c36600461156d565b61077d565b6002546001600160a01b0316610174565b6004545b604051908152602001610158565b6103665f8051602061254b83398151915281565b6101946103963660046115a7565b6107d0565b6101746103a9366004611457565b61080e565b6005546001600160a01b0316610174565b6101746103cd3660046113f1565b6109b5565b6101b0610ad0565b5f6103e3610ae7565b5f806103ee87610b32565b915091508386826103ff8589610527565b60405161040b90611300565b610417939291906115be565b8190604051809103905ff5905080158015610434573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b039290921691909117905561045f8683610b74565b6040516001600160a01b038881168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a25050949350505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa1580156104f4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061051891906115f2565b905090565b5f61051830610f7d565b60606349bb9e4b60e01b838360405160240161054492919061160d565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b5f610588610ae7565b5f8061059386610b32565b9150915084816105a38487610527565b6040516105af90611300565b6105bb939291906115be565b604051809103905ff0801580156105d4573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169190911790556105ff8583610b74565b6040516001600160a01b038781168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b5f805f8051602061254b83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156106b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106dc9190611630565b15610767576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561073d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610761919061164f565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b8260405160240161079891906114d2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f600482815481106107e4576107e461166a565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f61081761064c565b6001600160a01b0316336001600160a01b03161461084f5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6004545f036108715760405163366dfd2160e21b815260040160405180910390fd5b5f61087a61064c565b90505f61088f6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156108cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ef919061164f565b6002549091506001600160a01b03908116908216639623609d82886109138961077d565b6040518463ffffffff1660e01b8152600401610931939291906115be565b5f604051808303815f87803b158015610948575f80fd5b505af115801561095a573d5f803e3d5ffd5b505050506109688684610b74565b6040516001600160a01b038881168252919550908516907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0080545f9190600160401b810460ff16159067ffffffffffffffff1683811580156109fd5750825b90505f8267ffffffffffffffff166001148015610a195750303b155b905081158015610a27575080155b15610a455760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610a6f57845460ff60401b1916600160401b1785555b610a7b8a8a8a8a6103da565b95508315610ac357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050949350505050565b6002545f90610518906001600160a01b0316610f7d565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610b3057604051631afcd79f60e31b815260040160405180910390fd5b565b6004545f90819015610b575760405163402b135f60e11b815260040160405180910390fd5b33610b628482611176565b610b6a61064c565b9430945092505050565b600254604080516303639b8b60e21b815290516001600160a01b03909216915f918391630d8e6e2c916004808201926020929091908290030181865afa158015610bc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be491906115f2565b9050610c628173__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5591906115f2565b62ffffff90811691161490565b15610c80576040516348c618db60e01b815260040160405180910390fd5b60045415610dd85760048054610c989060019061167e565b81548110610ca857610ca861166a565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610d19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3d919061169d565b604051635560100760e01b815262ffffff8316600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610d8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db3919061169d565b11610dd857604051633e614b6d60e11b815262ffffff82166004820152602401610846565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808716600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038088166020848101919091529087168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af4158015610ea8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecc91906116b4565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9485165f90815260038452604090819020855181549587015197166001600160b81b03199095169490941763010000006001600160a01b0397881602178455840151600190930180546060860151608090960151949096166001600160c81b031990961695909517600160a01b94909216939093021763ffffffff60c81b1916600160c81b919092160217905592915050565b5f805f8051602061254b83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610fe9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061100d9190611630565b156110395780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610846565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561108b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110af9190611630565b6110d75760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610846565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611129573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061114d91906116d8565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b61117e610ae7565b6111866111ec565b61118f82611234565b6001600160a01b0381166111b65760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061254b83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6111f4610ae7565b610b306301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61123c610ae7565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015611292573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b69190611630565b6112de5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610846565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610e4c806116ff83390190565b5f6020828403121561131d575f80fd5b81356001600160e01b031981168114611334575f80fd5b9392505050565b6001600160a01b038116811461134f575f80fd5b50565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611375575f80fd5b813567ffffffffffffffff81111561138f5761138f611352565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156113be576113be611352565b6040528181528382016020018510156113d5575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f8060808587031215611404575f80fd5b843561140f8161133b565b9350602085013561141f8161133b565b9250604085013567ffffffffffffffff81111561143a575f80fd5b61144687828801611366565b949793965093946060013593505050565b5f8060408385031215611468575f80fd5b82356114738161133b565b9150602083013567ffffffffffffffff81111561148e575f80fd5b61149a85828601611366565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61133460208301846114a4565b5f805f606084860312156114f6575f80fd5b83356115018161133b565b925060208401356115118161133b565b9150604084013567ffffffffffffffff81111561152c575f80fd5b61153886828701611366565b9150509250925092565b62ffffff8116811461134f575f80fd5b5f60208284031215611562575f80fd5b813561133481611542565b5f6020828403121561157d575f80fd5b813567ffffffffffffffff811115611593575f80fd5b61159f84828501611366565b949350505050565b5f602082840312156115b7575f80fd5b5035919050565b6001600160a01b038481168252831660208201526060604082018190525f906115e9908301846114a4565b95945050505050565b5f60208284031215611602575f80fd5b815161133481611542565b6001600160a01b03831681526040602082018190525f9061159f908301846114a4565b5f60208284031215611640575f80fd5b81518015158114611334575f80fd5b5f6020828403121561165f575f80fd5b81516113348161133b565b634e487b7160e01b5f52603260045260245ffd5b8181038181111561057957634e487b7160e01b5f52601160045260245ffd5b5f602082840312156116ad575f80fd5b5051919050565b5f602082840312156116c4575f80fd5b815164ffffffffff81168114611334575f80fd5b5f602082840312156116e8575f80fd5b81516001600160601b0381168114611334575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220d1d9ba7859b103e29f571e13ffad7af965d0e5d8ec64ad8a9ef65dd1c1237e6464736f6c634300081a0033",
|
340
560
|
"linkReferences": {
|
341
|
-
"contracts/
|
342
|
-
"
|
343
|
-
{
|
344
|
-
"length": 20,
|
345
|
-
"start": 13192
|
346
|
-
}
|
347
|
-
]
|
348
|
-
},
|
349
|
-
"contracts/types/NftId.sol": {
|
350
|
-
"NftIdLib": [
|
561
|
+
"contracts/shared/ContractLib.sol": {
|
562
|
+
"ContractLib": [
|
351
563
|
{
|
352
564
|
"length": 20,
|
353
|
-
"start":
|
565
|
+
"start": 2571
|
354
566
|
},
|
355
567
|
{
|
356
568
|
"length": 20,
|
357
|
-
"start":
|
569
|
+
"start": 7906
|
358
570
|
},
|
359
571
|
{
|
360
572
|
"length": 20,
|
361
|
-
"start":
|
573
|
+
"start": 26106
|
362
574
|
},
|
363
575
|
{
|
364
576
|
"length": 20,
|
365
|
-
"start":
|
366
|
-
},
|
367
|
-
{
|
368
|
-
"length": 20,
|
369
|
-
"start": 13336
|
577
|
+
"start": 26703
|
370
578
|
}
|
371
579
|
]
|
372
580
|
},
|
373
|
-
"contracts/
|
374
|
-
"
|
375
|
-
{
|
376
|
-
"length": 20,
|
377
|
-
"start": 18582
|
378
|
-
},
|
379
|
-
{
|
380
|
-
"length": 20,
|
381
|
-
"start": 19670
|
382
|
-
},
|
581
|
+
"contracts/staking/TargetManagerLib.sol": {
|
582
|
+
"TargetManagerLib": [
|
383
583
|
{
|
384
584
|
"length": 20,
|
385
|
-
"start":
|
585
|
+
"start": 21526
|
386
586
|
},
|
387
587
|
{
|
388
588
|
"length": 20,
|
389
|
-
"start":
|
390
|
-
}
|
589
|
+
"start": 21633
|
590
|
+
}
|
591
|
+
]
|
592
|
+
},
|
593
|
+
"contracts/type/NftId.sol": {
|
594
|
+
"NftIdLib": [
|
391
595
|
{
|
392
596
|
"length": 20,
|
393
|
-
"start":
|
597
|
+
"start": 2199
|
394
598
|
},
|
395
599
|
{
|
396
600
|
"length": 20,
|
397
|
-
"start":
|
601
|
+
"start": 4872
|
398
602
|
},
|
399
603
|
{
|
400
604
|
"length": 20,
|
401
|
-
"start":
|
605
|
+
"start": 7225
|
402
606
|
},
|
403
607
|
{
|
404
608
|
"length": 20,
|
405
|
-
"start":
|
609
|
+
"start": 14488
|
406
610
|
},
|
407
611
|
{
|
408
612
|
"length": 20,
|
409
|
-
"start":
|
613
|
+
"start": 20023
|
410
614
|
},
|
411
615
|
{
|
412
616
|
"length": 20,
|
413
|
-
"start":
|
617
|
+
"start": 22672
|
414
618
|
},
|
415
619
|
{
|
416
620
|
"length": 20,
|
417
|
-
"start":
|
621
|
+
"start": 23532
|
418
622
|
}
|
419
623
|
]
|
420
624
|
},
|
421
|
-
"contracts/
|
422
|
-
"
|
625
|
+
"contracts/type/RoleId.sol": {
|
626
|
+
"RoleIdLib": [
|
423
627
|
{
|
424
628
|
"length": 20,
|
425
|
-
"start":
|
629
|
+
"start": 19172
|
426
630
|
}
|
427
631
|
]
|
428
632
|
},
|
429
|
-
"contracts/
|
430
|
-
"
|
431
|
-
{
|
432
|
-
"length": 20,
|
433
|
-
"start": 261
|
434
|
-
},
|
435
|
-
{
|
436
|
-
"length": 20,
|
437
|
-
"start": 385
|
438
|
-
},
|
633
|
+
"contracts/type/Timestamp.sol": {
|
634
|
+
"TimestampLib": [
|
439
635
|
{
|
440
636
|
"length": 20,
|
441
|
-
"start":
|
637
|
+
"start": 1713
|
442
638
|
},
|
443
639
|
{
|
444
640
|
"length": 20,
|
445
|
-
"start":
|
446
|
-
}
|
641
|
+
"start": 6904
|
642
|
+
}
|
643
|
+
]
|
644
|
+
},
|
645
|
+
"contracts/type/Version.sol": {
|
646
|
+
"VersionLib": [
|
447
647
|
{
|
448
648
|
"length": 20,
|
449
|
-
"start":
|
649
|
+
"start": 1064
|
450
650
|
},
|
451
651
|
{
|
452
652
|
"length": 20,
|
453
|
-
"start":
|
653
|
+
"start": 1309
|
454
654
|
},
|
455
655
|
{
|
456
656
|
"length": 20,
|
457
|
-
"start":
|
657
|
+
"start": 1427
|
458
658
|
},
|
459
659
|
{
|
460
660
|
"length": 20,
|
461
|
-
"start":
|
661
|
+
"start": 6260
|
462
662
|
},
|
463
663
|
{
|
464
664
|
"length": 20,
|
465
|
-
"start":
|
665
|
+
"start": 6505
|
466
666
|
},
|
467
667
|
{
|
468
668
|
"length": 20,
|
469
|
-
"start":
|
669
|
+
"start": 6623
|
470
670
|
},
|
471
671
|
{
|
472
672
|
"length": 20,
|
473
|
-
"start":
|
673
|
+
"start": 14288
|
474
674
|
},
|
475
675
|
{
|
476
676
|
"length": 20,
|
477
|
-
"start":
|
478
|
-
}
|
677
|
+
"start": 15605
|
678
|
+
}
|
679
|
+
],
|
680
|
+
"VersionPartLib": [
|
479
681
|
{
|
480
682
|
"length": 20,
|
481
|
-
"start":
|
482
|
-
}
|
683
|
+
"start": 23866
|
684
|
+
}
|
685
|
+
]
|
686
|
+
}
|
687
|
+
},
|
688
|
+
"deployedLinkReferences": {
|
689
|
+
"contracts/shared/ContractLib.sol": {
|
690
|
+
"ContractLib": [
|
483
691
|
{
|
484
692
|
"length": 20,
|
485
|
-
"start":
|
486
|
-
}
|
693
|
+
"start": 4698
|
694
|
+
}
|
695
|
+
]
|
696
|
+
},
|
697
|
+
"contracts/type/NftId.sol": {
|
698
|
+
"NftIdLib": [
|
487
699
|
{
|
488
700
|
"length": 20,
|
489
|
-
"start":
|
701
|
+
"start": 1664
|
490
702
|
},
|
491
703
|
{
|
492
704
|
"length": 20,
|
493
|
-
"start":
|
494
|
-
}
|
705
|
+
"start": 4017
|
706
|
+
}
|
707
|
+
]
|
708
|
+
},
|
709
|
+
"contracts/type/Timestamp.sol": {
|
710
|
+
"TimestampLib": [
|
495
711
|
{
|
496
712
|
"length": 20,
|
497
|
-
"start":
|
498
|
-
}
|
713
|
+
"start": 3696
|
714
|
+
}
|
715
|
+
]
|
716
|
+
},
|
717
|
+
"contracts/type/Version.sol": {
|
718
|
+
"VersionLib": [
|
499
719
|
{
|
500
720
|
"length": 20,
|
501
|
-
"start":
|
721
|
+
"start": 3052
|
502
722
|
},
|
503
723
|
{
|
504
724
|
"length": 20,
|
505
|
-
"start":
|
506
|
-
}
|
507
|
-
]
|
508
|
-
}
|
509
|
-
},
|
510
|
-
"deployedLinkReferences": {
|
511
|
-
"contracts/types/NftId.sol": {
|
512
|
-
"NftIdLib": [
|
513
|
-
{
|
514
|
-
"length": 20,
|
515
|
-
"start": 467
|
725
|
+
"start": 3297
|
516
726
|
},
|
517
727
|
{
|
518
728
|
"length": 20,
|
519
|
-
"start":
|
729
|
+
"start": 3415
|
520
730
|
}
|
521
731
|
]
|
522
732
|
}
|