@etherisc/gif-next 0.0.2-917cede-703 → 0.0.2-91b514c-961
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 +130 -10
- 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 +1209 -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/{components/IDistributionComponent.sol/IDistributionComponent.json → distribution/Distribution.sol/Distribution.json} +285 -324
- 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/{components/IProductComponent.sol/IProductComponent.json → distribution/IDistributionComponent.sol/IDistributionComponent.json} +274 -275
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +310 -329
- 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 +1445 -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 +2002 -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 +1388 -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 +1152 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1612 -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 +2389 -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 +323 -2085
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +281 -106
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +585 -2824
- 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 +1672 -617
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +310 -396
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +163 -170
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3728 -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 -54
- 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 +1 -1
- 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 +938 -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 +753 -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/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +253 -241
- 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/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +320 -465
- 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/{instance/service → pool}/IBundleService.sol/IBundleService.json +246 -75
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +886 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +574 -304
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +368 -426
- 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/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +455 -482
- 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 → product}/IApplicationService.sol/IApplicationService.json +157 -145
- 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/{instance/service → product}/IPolicyService.sol/IPolicyService.json +297 -253
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → product/IPricingService.sol/IPricingService.json} +248 -227
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +997 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +95 -65
- 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 +911 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +764 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1098 -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 +59 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +483 -29
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +286 -109
- 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 -18
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +982 -137
- 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 +361 -250
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +174 -109
- 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 +317 -154
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +686 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1487 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +816 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +60 -182
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +661 -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/{components → shared}/IComponent.sol/IComponent.json +137 -131
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1127 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +688 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
- 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 +19 -10
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +144 -3
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +69 -5
- 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 +776 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
- 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 +28 -70
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -100
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +66 -109
- 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/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +736 -590
- 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 +1888 -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 +792 -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 +373 -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/{types → type}/Timestamp.sol/TimestampLib.json +39 -7
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -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/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
- 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 +142 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
- 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 +57 -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 +141 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
- package/contracts/distribution/Distribution.sol +244 -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 +86 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +433 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +79 -75
- package/contracts/instance/IInstanceService.sol +56 -36
- package/contracts/instance/Instance.sol +208 -214
- package/contracts/instance/InstanceAdmin.sol +450 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +235 -0
- package/contracts/instance/InstanceReader.sol +397 -64
- package/contracts/instance/InstanceService.sol +326 -345
- package/contracts/instance/InstanceServiceManager.sol +14 -29
- 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/base/Cloneable.sol +28 -0
- 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 +9 -11
- package/contracts/instance/module/IComponents.sol +44 -23
- package/contracts/instance/module/IDistribution.sol +25 -12
- package/contracts/instance/module/IPolicy.sol +67 -39
- package/contracts/instance/module/IRisk.sol +6 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +45 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
- package/contracts/oracle/IOracle.sol +41 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +66 -0
- package/contracts/oracle/Oracle.sol +154 -0
- package/contracts/oracle/OracleService.sol +310 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +173 -0
- package/contracts/pool/BasicPoolAuthorization.sol +76 -0
- package/contracts/pool/BundleService.sol +395 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/{instance/service → pool}/IBundleService.sol +50 -37
- package/contracts/pool/IPoolComponent.sol +62 -0
- package/contracts/pool/IPoolService.sol +165 -0
- package/contracts/pool/Pool.sol +343 -0
- package/contracts/pool/PoolLib.sol +216 -0
- package/contracts/pool/PoolService.sol +755 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +274 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
- package/contracts/product/BasicProduct.sol +49 -0
- package/contracts/product/BasicProductAuthorization.sol +56 -0
- package/contracts/product/ClaimService.sol +632 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
- package/contracts/{instance/service → product}/IApplicationService.sol +22 -31
- 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 +467 -0
- package/contracts/product/RiskService.sol +154 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +79 -40
- package/contracts/registry/IRegistry.sol +99 -30
- package/contracts/registry/IRegistryService.sol +34 -40
- package/contracts/registry/IRelease.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +460 -197
- package/contracts/registry/RegistryAdmin.sol +258 -0
- package/contracts/registry/RegistryAuthorization.sol +267 -0
- package/contracts/registry/RegistryService.sol +89 -130
- package/contracts/registry/RegistryServiceManager.sol +23 -32
- 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 +264 -64
- package/contracts/shared/Component.sol +210 -0
- package/contracts/shared/ComponentService.sol +654 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +128 -0
- package/contracts/shared/ContractLib.sol +347 -0
- package/contracts/shared/IComponent.sol +58 -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 +4 -2
- package/contracts/shared/IPolicyHolder.sol +23 -14
- package/contracts/shared/IRegisterable.sol +23 -1
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +12 -5
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +12 -4
- package/contracts/shared/InstanceLinkedComponent.sol +194 -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 +34 -27
- package/contracts/shared/PolicyHolder.sol +22 -41
- package/contracts/shared/Registerable.sol +52 -20
- package/contracts/shared/RegistryLinked.sol +9 -19
- package/contracts/shared/Service.sol +33 -40
- package/contracts/shared/TokenHandler.sol +322 -13
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +179 -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 +26 -3
- package/contracts/{types → type}/ClaimId.sol +6 -1
- package/contracts/{types → type}/Fee.sol +28 -26
- package/contracts/{types → type}/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/{types → type}/NftId.sol +21 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +294 -0
- package/contracts/{types → type}/PayoutId.sol +10 -10
- package/contracts/{types → type}/Referral.sol +2 -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 +41 -2
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +16 -7
- package/contracts/type/UFixed.sol +262 -0
- package/contracts/{types → type}/Version.sol +58 -7
- package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +104 -39
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +8 -4
- package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
- package/package.json +12 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- 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 -778
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1330
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
- 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 -532
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -237
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1060
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -681
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1289
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -725
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -1040
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -685
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1774
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -793
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- 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/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1519
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -745
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1433
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -701
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
- 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 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
- 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/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 -383
- 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 -596
- 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 -104
- 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/Amount.sol/AmountLib.dbg.json +0 -4
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -209
- 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/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -179
- 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 -288
- 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 -166
- 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/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -209
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
- 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/Seconds.sol/SecondsLib.dbg.json +0 -4
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
- 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/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/Component.sol +0 -253
- package/contracts/components/Distribution.sol +0 -284
- package/contracts/components/IComponent.sol +0 -76
- package/contracts/components/IDistributionComponent.sol +0 -71
- package/contracts/components/IPoolComponent.sol +0 -113
- package/contracts/components/IProductComponent.sol +0 -40
- package/contracts/components/Pool.sol +0 -302
- package/contracts/components/Product.sol +0 -371
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
- package/contracts/instance/BundleManager.sol +0 -126
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -527
- package/contracts/instance/ObjectManager.sol +0 -82
- package/contracts/instance/base/ComponentService.sol +0 -121
- package/contracts/instance/base/KeyValueStore.sol +0 -180
- package/contracts/instance/base/Lifecycle.sol +0 -117
- package/contracts/instance/module/IAccess.sol +0 -54
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -355
- package/contracts/instance/service/BundleService.sol +0 -443
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -239
- package/contracts/instance/service/DistributionService.sol +0 -431
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IClaimService.sol +0 -92
- package/contracts/instance/service/IDistributionService.sol +0 -99
- package/contracts/instance/service/IPolicyService.sol +0 -137
- package/contracts/instance/service/IPoolService.sol +0 -102
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -545
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -336
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -210
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -324
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- 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 -25
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/Amount.sol +0 -70
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -157
- package/contracts/types/RiskId.sol +0 -43
- package/contracts/types/RoleId.sol +0 -97
- package/contracts/types/Seconds.sol +0 -54
- package/contracts/types/UFixed.sol +0 -326
- /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -0,0 +1,1487 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "ComponentService",
|
4
|
+
"sourceName": "contracts/shared/ComponentService.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "authority",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorAuthorityInvalid",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "caller",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorComponentServiceCallerNotInstance",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
68
|
+
{
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "caller",
|
71
|
+
"type": "address"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorComponentServiceCallerNotProduct",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [
|
79
|
+
{
|
80
|
+
"internalType": "address",
|
81
|
+
"name": "component",
|
82
|
+
"type": "address"
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"name": "ErrorComponentServiceComponentAlreadyRegistered",
|
86
|
+
"type": "error"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"inputs": [
|
90
|
+
{
|
91
|
+
"internalType": "address",
|
92
|
+
"name": "component",
|
93
|
+
"type": "address"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
"internalType": "NftId",
|
97
|
+
"name": "required",
|
98
|
+
"type": "uint96"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"internalType": "NftId",
|
102
|
+
"name": "actual",
|
103
|
+
"type": "uint96"
|
104
|
+
}
|
105
|
+
],
|
106
|
+
"name": "ErrorComponentServiceComponentParentInvalid",
|
107
|
+
"type": "error"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"inputs": [
|
111
|
+
{
|
112
|
+
"internalType": "address",
|
113
|
+
"name": "component",
|
114
|
+
"type": "address"
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"internalType": "VersionPart",
|
118
|
+
"name": "serviceRelease",
|
119
|
+
"type": "uint8"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"internalType": "VersionPart",
|
123
|
+
"name": "componentRelease",
|
124
|
+
"type": "uint8"
|
125
|
+
}
|
126
|
+
],
|
127
|
+
"name": "ErrorComponentServiceComponentReleaseMismatch",
|
128
|
+
"type": "error"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"inputs": [
|
132
|
+
{
|
133
|
+
"internalType": "address",
|
134
|
+
"name": "component",
|
135
|
+
"type": "address"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"internalType": "ObjectType",
|
139
|
+
"name": "invalid",
|
140
|
+
"type": "uint8"
|
141
|
+
}
|
142
|
+
],
|
143
|
+
"name": "ErrorComponentServiceComponentTypeNotSupported",
|
144
|
+
"type": "error"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"inputs": [],
|
148
|
+
"name": "ErrorComponentServiceNewWalletAddressZero",
|
149
|
+
"type": "error"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"inputs": [
|
153
|
+
{
|
154
|
+
"internalType": "address",
|
155
|
+
"name": "component",
|
156
|
+
"type": "address"
|
157
|
+
}
|
158
|
+
],
|
159
|
+
"name": "ErrorComponentServiceNotComponent",
|
160
|
+
"type": "error"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"inputs": [
|
164
|
+
{
|
165
|
+
"internalType": "address",
|
166
|
+
"name": "component",
|
167
|
+
"type": "address"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"name": "ErrorComponentServiceNotInstanceLinkedComponent",
|
171
|
+
"type": "error"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [
|
175
|
+
{
|
176
|
+
"internalType": "address",
|
177
|
+
"name": "product",
|
178
|
+
"type": "address"
|
179
|
+
}
|
180
|
+
],
|
181
|
+
"name": "ErrorComponentServiceNotProduct",
|
182
|
+
"type": "error"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"inputs": [
|
186
|
+
{
|
187
|
+
"internalType": "address",
|
188
|
+
"name": "token",
|
189
|
+
"type": "address"
|
190
|
+
}
|
191
|
+
],
|
192
|
+
"name": "ErrorComponentServiceTokenInvalid",
|
193
|
+
"type": "error"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"inputs": [],
|
197
|
+
"name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
|
198
|
+
"type": "error"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"inputs": [],
|
202
|
+
"name": "ErrorComponentServiceWalletAddressZero",
|
203
|
+
"type": "error"
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"inputs": [
|
207
|
+
{
|
208
|
+
"internalType": "address",
|
209
|
+
"name": "wallet",
|
210
|
+
"type": "address"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"internalType": "address",
|
214
|
+
"name": "spender",
|
215
|
+
"type": "address"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"internalType": "uint256",
|
219
|
+
"name": "allowance",
|
220
|
+
"type": "uint256"
|
221
|
+
},
|
222
|
+
{
|
223
|
+
"internalType": "uint256",
|
224
|
+
"name": "amount",
|
225
|
+
"type": "uint256"
|
226
|
+
}
|
227
|
+
],
|
228
|
+
"name": "ErrorComponentServiceWalletAllowanceTooSmall",
|
229
|
+
"type": "error"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"inputs": [
|
233
|
+
{
|
234
|
+
"internalType": "Amount",
|
235
|
+
"name": "withdrawnAmount",
|
236
|
+
"type": "uint96"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"internalType": "Amount",
|
240
|
+
"name": "withdrawLimit",
|
241
|
+
"type": "uint96"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
"name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
|
245
|
+
"type": "error"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"inputs": [],
|
249
|
+
"name": "ErrorComponentServiceWithdrawAmountIsZero",
|
250
|
+
"type": "error"
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"inputs": [
|
254
|
+
{
|
255
|
+
"internalType": "NftId",
|
256
|
+
"name": "nftId",
|
257
|
+
"type": "uint96"
|
258
|
+
}
|
259
|
+
],
|
260
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
261
|
+
"type": "error"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"inputs": [
|
265
|
+
{
|
266
|
+
"internalType": "address",
|
267
|
+
"name": "contractAddress",
|
268
|
+
"type": "address"
|
269
|
+
}
|
270
|
+
],
|
271
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
272
|
+
"type": "error"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"inputs": [],
|
276
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
277
|
+
"type": "error"
|
278
|
+
},
|
279
|
+
{
|
280
|
+
"inputs": [
|
281
|
+
{
|
282
|
+
"internalType": "NftId",
|
283
|
+
"name": "nftId",
|
284
|
+
"type": "uint96"
|
285
|
+
},
|
286
|
+
{
|
287
|
+
"internalType": "ObjectType",
|
288
|
+
"name": "expectedObjectType",
|
289
|
+
"type": "uint8"
|
290
|
+
}
|
291
|
+
],
|
292
|
+
"name": "ErrorNftOwnableInvalidType",
|
293
|
+
"type": "error"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"inputs": [
|
297
|
+
{
|
298
|
+
"internalType": "address",
|
299
|
+
"name": "account",
|
300
|
+
"type": "address"
|
301
|
+
}
|
302
|
+
],
|
303
|
+
"name": "ErrorNftOwnableNotOwner",
|
304
|
+
"type": "error"
|
305
|
+
},
|
306
|
+
{
|
307
|
+
"inputs": [
|
308
|
+
{
|
309
|
+
"internalType": "address",
|
310
|
+
"name": "registryAddress",
|
311
|
+
"type": "address"
|
312
|
+
}
|
313
|
+
],
|
314
|
+
"name": "ErrorNotRegistry",
|
315
|
+
"type": "error"
|
316
|
+
},
|
317
|
+
{
|
318
|
+
"inputs": [
|
319
|
+
{
|
320
|
+
"internalType": "NftId",
|
321
|
+
"name": "productNftId",
|
322
|
+
"type": "uint96"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"internalType": "NftId",
|
326
|
+
"name": "distributionNftId",
|
327
|
+
"type": "uint96"
|
328
|
+
}
|
329
|
+
],
|
330
|
+
"name": "ErrorProductServiceDistributionAlreadyRegistered",
|
331
|
+
"type": "error"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"inputs": [
|
335
|
+
{
|
336
|
+
"internalType": "NftId",
|
337
|
+
"name": "productNftId",
|
338
|
+
"type": "uint96"
|
339
|
+
}
|
340
|
+
],
|
341
|
+
"name": "ErrorProductServiceNoDistributionExpected",
|
342
|
+
"type": "error"
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"inputs": [
|
346
|
+
{
|
347
|
+
"internalType": "NftId",
|
348
|
+
"name": "productNftId",
|
349
|
+
"type": "uint96"
|
350
|
+
}
|
351
|
+
],
|
352
|
+
"name": "ErrorProductServiceNoOraclesExpected",
|
353
|
+
"type": "error"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"inputs": [
|
357
|
+
{
|
358
|
+
"internalType": "NftId",
|
359
|
+
"name": "productNftId",
|
360
|
+
"type": "uint96"
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"internalType": "uint8",
|
364
|
+
"name": "expectedOracles",
|
365
|
+
"type": "uint8"
|
366
|
+
}
|
367
|
+
],
|
368
|
+
"name": "ErrorProductServiceOraclesAlreadyRegistered",
|
369
|
+
"type": "error"
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"inputs": [
|
373
|
+
{
|
374
|
+
"internalType": "NftId",
|
375
|
+
"name": "productNftId",
|
376
|
+
"type": "uint96"
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"internalType": "NftId",
|
380
|
+
"name": "poolNftId",
|
381
|
+
"type": "uint96"
|
382
|
+
}
|
383
|
+
],
|
384
|
+
"name": "ErrorProductServicePoolAlreadyRegistered",
|
385
|
+
"type": "error"
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"inputs": [],
|
389
|
+
"name": "ErrorRegisterableNotActive",
|
390
|
+
"type": "error"
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"inputs": [],
|
394
|
+
"name": "InvalidInitialization",
|
395
|
+
"type": "error"
|
396
|
+
},
|
397
|
+
{
|
398
|
+
"inputs": [],
|
399
|
+
"name": "NotInitializing",
|
400
|
+
"type": "error"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"inputs": [],
|
404
|
+
"name": "ReentrancyGuardReentrantCall",
|
405
|
+
"type": "error"
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"anonymous": false,
|
409
|
+
"inputs": [
|
410
|
+
{
|
411
|
+
"indexed": false,
|
412
|
+
"internalType": "address",
|
413
|
+
"name": "authority",
|
414
|
+
"type": "address"
|
415
|
+
}
|
416
|
+
],
|
417
|
+
"name": "AuthorityUpdated",
|
418
|
+
"type": "event"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"anonymous": false,
|
422
|
+
"inputs": [
|
423
|
+
{
|
424
|
+
"indexed": false,
|
425
|
+
"internalType": "uint64",
|
426
|
+
"name": "version",
|
427
|
+
"type": "uint64"
|
428
|
+
}
|
429
|
+
],
|
430
|
+
"name": "Initialized",
|
431
|
+
"type": "event"
|
432
|
+
},
|
433
|
+
{
|
434
|
+
"anonymous": false,
|
435
|
+
"inputs": [
|
436
|
+
{
|
437
|
+
"indexed": false,
|
438
|
+
"internalType": "NftId",
|
439
|
+
"name": "componentNftId",
|
440
|
+
"type": "uint96"
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"indexed": false,
|
444
|
+
"internalType": "address",
|
445
|
+
"name": "recipient",
|
446
|
+
"type": "address"
|
447
|
+
},
|
448
|
+
{
|
449
|
+
"indexed": false,
|
450
|
+
"internalType": "address",
|
451
|
+
"name": "token",
|
452
|
+
"type": "address"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"indexed": false,
|
456
|
+
"internalType": "Amount",
|
457
|
+
"name": "withdrawnAmount",
|
458
|
+
"type": "uint96"
|
459
|
+
}
|
460
|
+
],
|
461
|
+
"name": "LogComponentServiceComponentFeesWithdrawn",
|
462
|
+
"type": "event"
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"anonymous": false,
|
466
|
+
"inputs": [
|
467
|
+
{
|
468
|
+
"indexed": false,
|
469
|
+
"internalType": "NftId",
|
470
|
+
"name": "distributionNftId",
|
471
|
+
"type": "uint96"
|
472
|
+
}
|
473
|
+
],
|
474
|
+
"name": "LogComponentServiceDistributionFeesUpdated",
|
475
|
+
"type": "event"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"anonymous": false,
|
479
|
+
"inputs": [
|
480
|
+
{
|
481
|
+
"indexed": false,
|
482
|
+
"internalType": "NftId",
|
483
|
+
"name": "poolNftId",
|
484
|
+
"type": "uint96"
|
485
|
+
}
|
486
|
+
],
|
487
|
+
"name": "LogComponentServicePoolFeesUpdated",
|
488
|
+
"type": "event"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"anonymous": false,
|
492
|
+
"inputs": [
|
493
|
+
{
|
494
|
+
"indexed": false,
|
495
|
+
"internalType": "NftId",
|
496
|
+
"name": "productNftId",
|
497
|
+
"type": "uint96"
|
498
|
+
}
|
499
|
+
],
|
500
|
+
"name": "LogComponentServiceProductFeesUpdated",
|
501
|
+
"type": "event"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"anonymous": false,
|
505
|
+
"inputs": [
|
506
|
+
{
|
507
|
+
"indexed": false,
|
508
|
+
"internalType": "NftId",
|
509
|
+
"name": "instanceNftId",
|
510
|
+
"type": "uint96"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"indexed": false,
|
514
|
+
"internalType": "NftId",
|
515
|
+
"name": "componentNftId",
|
516
|
+
"type": "uint96"
|
517
|
+
},
|
518
|
+
{
|
519
|
+
"indexed": false,
|
520
|
+
"internalType": "ObjectType",
|
521
|
+
"name": "componentType",
|
522
|
+
"type": "uint8"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"indexed": false,
|
526
|
+
"internalType": "address",
|
527
|
+
"name": "component",
|
528
|
+
"type": "address"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"indexed": false,
|
532
|
+
"internalType": "address",
|
533
|
+
"name": "token",
|
534
|
+
"type": "address"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"indexed": false,
|
538
|
+
"internalType": "address",
|
539
|
+
"name": "initialOwner",
|
540
|
+
"type": "address"
|
541
|
+
}
|
542
|
+
],
|
543
|
+
"name": "LogComponentServiceRegistered",
|
544
|
+
"type": "event"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"anonymous": false,
|
548
|
+
"inputs": [
|
549
|
+
{
|
550
|
+
"indexed": false,
|
551
|
+
"internalType": "NftId",
|
552
|
+
"name": "nftId",
|
553
|
+
"type": "uint96"
|
554
|
+
},
|
555
|
+
{
|
556
|
+
"indexed": false,
|
557
|
+
"internalType": "string",
|
558
|
+
"name": "feeName",
|
559
|
+
"type": "string"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"indexed": false,
|
563
|
+
"internalType": "UFixed",
|
564
|
+
"name": "previousFractionalFee",
|
565
|
+
"type": "uint160"
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"indexed": false,
|
569
|
+
"internalType": "Amount",
|
570
|
+
"name": "previousFixedFee",
|
571
|
+
"type": "uint96"
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"indexed": false,
|
575
|
+
"internalType": "UFixed",
|
576
|
+
"name": "newFractionalFee",
|
577
|
+
"type": "uint160"
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"indexed": false,
|
581
|
+
"internalType": "Amount",
|
582
|
+
"name": "newFixedFee",
|
583
|
+
"type": "uint96"
|
584
|
+
}
|
585
|
+
],
|
586
|
+
"name": "LogComponentServiceUpdateFee",
|
587
|
+
"type": "event"
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"anonymous": false,
|
591
|
+
"inputs": [
|
592
|
+
{
|
593
|
+
"indexed": false,
|
594
|
+
"internalType": "NftId",
|
595
|
+
"name": "componentNftId",
|
596
|
+
"type": "uint96"
|
597
|
+
},
|
598
|
+
{
|
599
|
+
"indexed": false,
|
600
|
+
"internalType": "address",
|
601
|
+
"name": "currentWallet",
|
602
|
+
"type": "address"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"indexed": false,
|
606
|
+
"internalType": "address",
|
607
|
+
"name": "newWallet",
|
608
|
+
"type": "address"
|
609
|
+
}
|
610
|
+
],
|
611
|
+
"name": "LogComponentServiceWalletAddressChanged",
|
612
|
+
"type": "event"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"anonymous": false,
|
616
|
+
"inputs": [
|
617
|
+
{
|
618
|
+
"indexed": false,
|
619
|
+
"internalType": "NftId",
|
620
|
+
"name": "componentNftId",
|
621
|
+
"type": "uint96"
|
622
|
+
},
|
623
|
+
{
|
624
|
+
"indexed": false,
|
625
|
+
"internalType": "address",
|
626
|
+
"name": "currentWallet",
|
627
|
+
"type": "address"
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"indexed": false,
|
631
|
+
"internalType": "address",
|
632
|
+
"name": "newWallet",
|
633
|
+
"type": "address"
|
634
|
+
},
|
635
|
+
{
|
636
|
+
"indexed": false,
|
637
|
+
"internalType": "uint256",
|
638
|
+
"name": "currentBalance",
|
639
|
+
"type": "uint256"
|
640
|
+
}
|
641
|
+
],
|
642
|
+
"name": "LogComponentServiceWalletTokensTransferred",
|
643
|
+
"type": "event"
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"inputs": [],
|
647
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
648
|
+
"outputs": [
|
649
|
+
{
|
650
|
+
"internalType": "bytes32",
|
651
|
+
"name": "",
|
652
|
+
"type": "bytes32"
|
653
|
+
}
|
654
|
+
],
|
655
|
+
"stateMutability": "view",
|
656
|
+
"type": "function"
|
657
|
+
},
|
658
|
+
{
|
659
|
+
"inputs": [],
|
660
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
661
|
+
"outputs": [
|
662
|
+
{
|
663
|
+
"internalType": "bytes32",
|
664
|
+
"name": "",
|
665
|
+
"type": "bytes32"
|
666
|
+
}
|
667
|
+
],
|
668
|
+
"stateMutability": "view",
|
669
|
+
"type": "function"
|
670
|
+
},
|
671
|
+
{
|
672
|
+
"inputs": [
|
673
|
+
{
|
674
|
+
"internalType": "contract IERC20Metadata",
|
675
|
+
"name": "token",
|
676
|
+
"type": "address"
|
677
|
+
},
|
678
|
+
{
|
679
|
+
"internalType": "Amount",
|
680
|
+
"name": "amount",
|
681
|
+
"type": "uint96"
|
682
|
+
}
|
683
|
+
],
|
684
|
+
"name": "approveTokenHandler",
|
685
|
+
"outputs": [],
|
686
|
+
"stateMutability": "nonpayable",
|
687
|
+
"type": "function"
|
688
|
+
},
|
689
|
+
{
|
690
|
+
"inputs": [],
|
691
|
+
"name": "authority",
|
692
|
+
"outputs": [
|
693
|
+
{
|
694
|
+
"internalType": "address",
|
695
|
+
"name": "",
|
696
|
+
"type": "address"
|
697
|
+
}
|
698
|
+
],
|
699
|
+
"stateMutability": "view",
|
700
|
+
"type": "function"
|
701
|
+
},
|
702
|
+
{
|
703
|
+
"inputs": [],
|
704
|
+
"name": "getDomain",
|
705
|
+
"outputs": [
|
706
|
+
{
|
707
|
+
"internalType": "ObjectType",
|
708
|
+
"name": "serviceDomain",
|
709
|
+
"type": "uint8"
|
710
|
+
}
|
711
|
+
],
|
712
|
+
"stateMutability": "pure",
|
713
|
+
"type": "function"
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"inputs": [],
|
717
|
+
"name": "getInitialInfo",
|
718
|
+
"outputs": [
|
719
|
+
{
|
720
|
+
"components": [
|
721
|
+
{
|
722
|
+
"internalType": "NftId",
|
723
|
+
"name": "nftId",
|
724
|
+
"type": "uint96"
|
725
|
+
},
|
726
|
+
{
|
727
|
+
"internalType": "NftId",
|
728
|
+
"name": "parentNftId",
|
729
|
+
"type": "uint96"
|
730
|
+
},
|
731
|
+
{
|
732
|
+
"internalType": "ObjectType",
|
733
|
+
"name": "objectType",
|
734
|
+
"type": "uint8"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"internalType": "bool",
|
738
|
+
"name": "isInterceptor",
|
739
|
+
"type": "bool"
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"internalType": "address",
|
743
|
+
"name": "objectAddress",
|
744
|
+
"type": "address"
|
745
|
+
},
|
746
|
+
{
|
747
|
+
"internalType": "address",
|
748
|
+
"name": "initialOwner",
|
749
|
+
"type": "address"
|
750
|
+
},
|
751
|
+
{
|
752
|
+
"internalType": "bytes",
|
753
|
+
"name": "data",
|
754
|
+
"type": "bytes"
|
755
|
+
}
|
756
|
+
],
|
757
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
758
|
+
"name": "info",
|
759
|
+
"type": "tuple"
|
760
|
+
}
|
761
|
+
],
|
762
|
+
"stateMutability": "view",
|
763
|
+
"type": "function"
|
764
|
+
},
|
765
|
+
{
|
766
|
+
"inputs": [],
|
767
|
+
"name": "getNftId",
|
768
|
+
"outputs": [
|
769
|
+
{
|
770
|
+
"internalType": "NftId",
|
771
|
+
"name": "",
|
772
|
+
"type": "uint96"
|
773
|
+
}
|
774
|
+
],
|
775
|
+
"stateMutability": "view",
|
776
|
+
"type": "function"
|
777
|
+
},
|
778
|
+
{
|
779
|
+
"inputs": [],
|
780
|
+
"name": "getOwner",
|
781
|
+
"outputs": [
|
782
|
+
{
|
783
|
+
"internalType": "address",
|
784
|
+
"name": "",
|
785
|
+
"type": "address"
|
786
|
+
}
|
787
|
+
],
|
788
|
+
"stateMutability": "view",
|
789
|
+
"type": "function"
|
790
|
+
},
|
791
|
+
{
|
792
|
+
"inputs": [],
|
793
|
+
"name": "getRegistry",
|
794
|
+
"outputs": [
|
795
|
+
{
|
796
|
+
"internalType": "contract IRegistry",
|
797
|
+
"name": "",
|
798
|
+
"type": "address"
|
799
|
+
}
|
800
|
+
],
|
801
|
+
"stateMutability": "view",
|
802
|
+
"type": "function"
|
803
|
+
},
|
804
|
+
{
|
805
|
+
"inputs": [],
|
806
|
+
"name": "getRelease",
|
807
|
+
"outputs": [
|
808
|
+
{
|
809
|
+
"internalType": "VersionPart",
|
810
|
+
"name": "release",
|
811
|
+
"type": "uint8"
|
812
|
+
}
|
813
|
+
],
|
814
|
+
"stateMutability": "view",
|
815
|
+
"type": "function"
|
816
|
+
},
|
817
|
+
{
|
818
|
+
"inputs": [],
|
819
|
+
"name": "getRoleId",
|
820
|
+
"outputs": [
|
821
|
+
{
|
822
|
+
"internalType": "RoleId",
|
823
|
+
"name": "serviceRoleId",
|
824
|
+
"type": "uint64"
|
825
|
+
}
|
826
|
+
],
|
827
|
+
"stateMutability": "view",
|
828
|
+
"type": "function"
|
829
|
+
},
|
830
|
+
{
|
831
|
+
"inputs": [],
|
832
|
+
"name": "getVersion",
|
833
|
+
"outputs": [
|
834
|
+
{
|
835
|
+
"internalType": "Version",
|
836
|
+
"name": "",
|
837
|
+
"type": "uint24"
|
838
|
+
}
|
839
|
+
],
|
840
|
+
"stateMutability": "pure",
|
841
|
+
"type": "function"
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"inputs": [
|
845
|
+
{
|
846
|
+
"internalType": "address",
|
847
|
+
"name": "activatedBy",
|
848
|
+
"type": "address"
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"internalType": "bytes",
|
852
|
+
"name": "data",
|
853
|
+
"type": "bytes"
|
854
|
+
}
|
855
|
+
],
|
856
|
+
"name": "initializeVersionable",
|
857
|
+
"outputs": [],
|
858
|
+
"stateMutability": "nonpayable",
|
859
|
+
"type": "function"
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"inputs": [],
|
863
|
+
"name": "isActive",
|
864
|
+
"outputs": [
|
865
|
+
{
|
866
|
+
"internalType": "bool",
|
867
|
+
"name": "active",
|
868
|
+
"type": "bool"
|
869
|
+
}
|
870
|
+
],
|
871
|
+
"stateMutability": "view",
|
872
|
+
"type": "function"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
"inputs": [],
|
876
|
+
"name": "isConsumingScheduledOp",
|
877
|
+
"outputs": [
|
878
|
+
{
|
879
|
+
"internalType": "bytes4",
|
880
|
+
"name": "",
|
881
|
+
"type": "bytes4"
|
882
|
+
}
|
883
|
+
],
|
884
|
+
"stateMutability": "view",
|
885
|
+
"type": "function"
|
886
|
+
},
|
887
|
+
{
|
888
|
+
"inputs": [],
|
889
|
+
"name": "linkToRegisteredNftId",
|
890
|
+
"outputs": [
|
891
|
+
{
|
892
|
+
"internalType": "NftId",
|
893
|
+
"name": "nftId",
|
894
|
+
"type": "uint96"
|
895
|
+
}
|
896
|
+
],
|
897
|
+
"stateMutability": "nonpayable",
|
898
|
+
"type": "function"
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"inputs": [
|
902
|
+
{
|
903
|
+
"internalType": "address",
|
904
|
+
"name": "componentAddress",
|
905
|
+
"type": "address"
|
906
|
+
}
|
907
|
+
],
|
908
|
+
"name": "registerComponent",
|
909
|
+
"outputs": [
|
910
|
+
{
|
911
|
+
"internalType": "NftId",
|
912
|
+
"name": "componentNftId",
|
913
|
+
"type": "uint96"
|
914
|
+
}
|
915
|
+
],
|
916
|
+
"stateMutability": "nonpayable",
|
917
|
+
"type": "function"
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"inputs": [
|
921
|
+
{
|
922
|
+
"internalType": "address",
|
923
|
+
"name": "productAddress",
|
924
|
+
"type": "address"
|
925
|
+
},
|
926
|
+
{
|
927
|
+
"internalType": "address",
|
928
|
+
"name": "token",
|
929
|
+
"type": "address"
|
930
|
+
}
|
931
|
+
],
|
932
|
+
"name": "registerProduct",
|
933
|
+
"outputs": [
|
934
|
+
{
|
935
|
+
"internalType": "NftId",
|
936
|
+
"name": "productNftId",
|
937
|
+
"type": "uint96"
|
938
|
+
}
|
939
|
+
],
|
940
|
+
"stateMutability": "nonpayable",
|
941
|
+
"type": "function"
|
942
|
+
},
|
943
|
+
{
|
944
|
+
"inputs": [
|
945
|
+
{
|
946
|
+
"internalType": "address",
|
947
|
+
"name": "newAuthority",
|
948
|
+
"type": "address"
|
949
|
+
}
|
950
|
+
],
|
951
|
+
"name": "setAuthority",
|
952
|
+
"outputs": [],
|
953
|
+
"stateMutability": "nonpayable",
|
954
|
+
"type": "function"
|
955
|
+
},
|
956
|
+
{
|
957
|
+
"inputs": [
|
958
|
+
{
|
959
|
+
"components": [
|
960
|
+
{
|
961
|
+
"internalType": "UFixed",
|
962
|
+
"name": "fractionalFee",
|
963
|
+
"type": "uint160"
|
964
|
+
},
|
965
|
+
{
|
966
|
+
"internalType": "Amount",
|
967
|
+
"name": "fixedFee",
|
968
|
+
"type": "uint96"
|
969
|
+
}
|
970
|
+
],
|
971
|
+
"internalType": "struct Fee",
|
972
|
+
"name": "distributionFee",
|
973
|
+
"type": "tuple"
|
974
|
+
},
|
975
|
+
{
|
976
|
+
"components": [
|
977
|
+
{
|
978
|
+
"internalType": "UFixed",
|
979
|
+
"name": "fractionalFee",
|
980
|
+
"type": "uint160"
|
981
|
+
},
|
982
|
+
{
|
983
|
+
"internalType": "Amount",
|
984
|
+
"name": "fixedFee",
|
985
|
+
"type": "uint96"
|
986
|
+
}
|
987
|
+
],
|
988
|
+
"internalType": "struct Fee",
|
989
|
+
"name": "minDistributionOwnerFee",
|
990
|
+
"type": "tuple"
|
991
|
+
}
|
992
|
+
],
|
993
|
+
"name": "setDistributionFees",
|
994
|
+
"outputs": [],
|
995
|
+
"stateMutability": "nonpayable",
|
996
|
+
"type": "function"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"inputs": [
|
1000
|
+
{
|
1001
|
+
"internalType": "bool",
|
1002
|
+
"name": "locked",
|
1003
|
+
"type": "bool"
|
1004
|
+
}
|
1005
|
+
],
|
1006
|
+
"name": "setLocked",
|
1007
|
+
"outputs": [],
|
1008
|
+
"stateMutability": "nonpayable",
|
1009
|
+
"type": "function"
|
1010
|
+
},
|
1011
|
+
{
|
1012
|
+
"inputs": [
|
1013
|
+
{
|
1014
|
+
"components": [
|
1015
|
+
{
|
1016
|
+
"internalType": "UFixed",
|
1017
|
+
"name": "fractionalFee",
|
1018
|
+
"type": "uint160"
|
1019
|
+
},
|
1020
|
+
{
|
1021
|
+
"internalType": "Amount",
|
1022
|
+
"name": "fixedFee",
|
1023
|
+
"type": "uint96"
|
1024
|
+
}
|
1025
|
+
],
|
1026
|
+
"internalType": "struct Fee",
|
1027
|
+
"name": "poolFee",
|
1028
|
+
"type": "tuple"
|
1029
|
+
},
|
1030
|
+
{
|
1031
|
+
"components": [
|
1032
|
+
{
|
1033
|
+
"internalType": "UFixed",
|
1034
|
+
"name": "fractionalFee",
|
1035
|
+
"type": "uint160"
|
1036
|
+
},
|
1037
|
+
{
|
1038
|
+
"internalType": "Amount",
|
1039
|
+
"name": "fixedFee",
|
1040
|
+
"type": "uint96"
|
1041
|
+
}
|
1042
|
+
],
|
1043
|
+
"internalType": "struct Fee",
|
1044
|
+
"name": "stakingFee",
|
1045
|
+
"type": "tuple"
|
1046
|
+
},
|
1047
|
+
{
|
1048
|
+
"components": [
|
1049
|
+
{
|
1050
|
+
"internalType": "UFixed",
|
1051
|
+
"name": "fractionalFee",
|
1052
|
+
"type": "uint160"
|
1053
|
+
},
|
1054
|
+
{
|
1055
|
+
"internalType": "Amount",
|
1056
|
+
"name": "fixedFee",
|
1057
|
+
"type": "uint96"
|
1058
|
+
}
|
1059
|
+
],
|
1060
|
+
"internalType": "struct Fee",
|
1061
|
+
"name": "performanceFee",
|
1062
|
+
"type": "tuple"
|
1063
|
+
}
|
1064
|
+
],
|
1065
|
+
"name": "setPoolFees",
|
1066
|
+
"outputs": [],
|
1067
|
+
"stateMutability": "nonpayable",
|
1068
|
+
"type": "function"
|
1069
|
+
},
|
1070
|
+
{
|
1071
|
+
"inputs": [
|
1072
|
+
{
|
1073
|
+
"components": [
|
1074
|
+
{
|
1075
|
+
"internalType": "UFixed",
|
1076
|
+
"name": "fractionalFee",
|
1077
|
+
"type": "uint160"
|
1078
|
+
},
|
1079
|
+
{
|
1080
|
+
"internalType": "Amount",
|
1081
|
+
"name": "fixedFee",
|
1082
|
+
"type": "uint96"
|
1083
|
+
}
|
1084
|
+
],
|
1085
|
+
"internalType": "struct Fee",
|
1086
|
+
"name": "productFee",
|
1087
|
+
"type": "tuple"
|
1088
|
+
},
|
1089
|
+
{
|
1090
|
+
"components": [
|
1091
|
+
{
|
1092
|
+
"internalType": "UFixed",
|
1093
|
+
"name": "fractionalFee",
|
1094
|
+
"type": "uint160"
|
1095
|
+
},
|
1096
|
+
{
|
1097
|
+
"internalType": "Amount",
|
1098
|
+
"name": "fixedFee",
|
1099
|
+
"type": "uint96"
|
1100
|
+
}
|
1101
|
+
],
|
1102
|
+
"internalType": "struct Fee",
|
1103
|
+
"name": "processingFee",
|
1104
|
+
"type": "tuple"
|
1105
|
+
}
|
1106
|
+
],
|
1107
|
+
"name": "setProductFees",
|
1108
|
+
"outputs": [],
|
1109
|
+
"stateMutability": "nonpayable",
|
1110
|
+
"type": "function"
|
1111
|
+
},
|
1112
|
+
{
|
1113
|
+
"inputs": [
|
1114
|
+
{
|
1115
|
+
"internalType": "address",
|
1116
|
+
"name": "newWallet",
|
1117
|
+
"type": "address"
|
1118
|
+
}
|
1119
|
+
],
|
1120
|
+
"name": "setWallet",
|
1121
|
+
"outputs": [],
|
1122
|
+
"stateMutability": "nonpayable",
|
1123
|
+
"type": "function"
|
1124
|
+
},
|
1125
|
+
{
|
1126
|
+
"inputs": [
|
1127
|
+
{
|
1128
|
+
"internalType": "bytes4",
|
1129
|
+
"name": "interfaceId",
|
1130
|
+
"type": "bytes4"
|
1131
|
+
}
|
1132
|
+
],
|
1133
|
+
"name": "supportsInterface",
|
1134
|
+
"outputs": [
|
1135
|
+
{
|
1136
|
+
"internalType": "bool",
|
1137
|
+
"name": "",
|
1138
|
+
"type": "bool"
|
1139
|
+
}
|
1140
|
+
],
|
1141
|
+
"stateMutability": "view",
|
1142
|
+
"type": "function"
|
1143
|
+
},
|
1144
|
+
{
|
1145
|
+
"inputs": [
|
1146
|
+
{
|
1147
|
+
"internalType": "bytes",
|
1148
|
+
"name": "data",
|
1149
|
+
"type": "bytes"
|
1150
|
+
}
|
1151
|
+
],
|
1152
|
+
"name": "upgradeVersionable",
|
1153
|
+
"outputs": [],
|
1154
|
+
"stateMutability": "nonpayable",
|
1155
|
+
"type": "function"
|
1156
|
+
},
|
1157
|
+
{
|
1158
|
+
"inputs": [
|
1159
|
+
{
|
1160
|
+
"internalType": "Amount",
|
1161
|
+
"name": "amount",
|
1162
|
+
"type": "uint96"
|
1163
|
+
}
|
1164
|
+
],
|
1165
|
+
"name": "withdrawFees",
|
1166
|
+
"outputs": [
|
1167
|
+
{
|
1168
|
+
"internalType": "Amount",
|
1169
|
+
"name": "withdrawnAmount",
|
1170
|
+
"type": "uint96"
|
1171
|
+
}
|
1172
|
+
],
|
1173
|
+
"stateMutability": "nonpayable",
|
1174
|
+
"type": "function"
|
1175
|
+
}
|
1176
|
+
],
|
1177
|
+
"bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6157f7806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635d966289116100f35780638fb3603711610093578063bf7e214f1161006e578063bf7e214f146103e1578063cf2f3365146103e9578063deaa59df146103fc578063feff0c911461040f575f80fd5b80638fb36037146103a5578063ada9652e146103c6578063b68d1809146103da575f80fd5b80636c741e78116100ce5780636c741e781461035057806376b707b7146103705780637a9e5e4b1461038a578063893d20e81461039d575f80fd5b80635d9662891461030d5780636078a3b214610320578063644c45e014610333575f80fd5b8063211e28b61161015e578063419197fe11610139578063419197fe146102af5780634698bf11146102c257806349bb9e4b146102d55780635ab1bd53146102e8575f80fd5b8063211e28b61461027f57806322f3e2d414610294578063329d6e741461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b3366004614724565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614779565b61021f610635565b6040516001600160601b0390911681526020016101dd565b61021f610245366004614821565b61063f565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d366004614849565b610ba5565b005b6101d1610c86565b6102926102aa3660046149af565b610cfd565b6102926102bd3660046149f4565b610e47565b6102926102d0366004614a6b565b610f99565b6102926102e3366004614a95565b611318565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61031b366004614ae1565b611413565b61021f61032e366004614b0d565b611609565b5f80516020615742833981519152546001600160601b031661021f565b6103586118c9565b6040516001600160401b0390911681526020016101dd565b610378611955565b60405160ff90911681526020016101dd565b610292610398366004614b0d565b6119bd565b6102f5611a3f565b6103ad611b70565b6040516001600160e01b031990911681526020016101dd565b6102715f8051602061574283398151915281565b600b610378565b6102f5611ba5565b6102926103f7366004614b28565b611bc0565b61029261040a366004614b0d565b611f7e565b61029261041d366004614a6b565b6120b7565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614b6b565b905090565b6104b161460f565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061054b9190614b9d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610593611a3f565b6001600160a01b031681526020018260010180546105b090614bb8565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc90614bb8565b80156106275780601f106105fe57610100808354040283529160200191610627565b820191905f5260205f20905b81548152906001019060200180831161060a57829003601f168201915b505050505081525091505090565b5f6104a430612398565b5f61064c335b5f36612591565b5f8061065b600b5b600161268f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561069c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c09190614bf0565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa158015610710573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107349190614b9d565b90508594506107ad8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610784573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a89190614b9d565b61281b565b156107b6578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561080c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108309190614c16565b1561084e5760405163b079ec2b60e01b815260040160405180910390fd5b61085885826128a7565b1561088e5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109119190614bf0565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610966575f80fd5b505af1158015610978573d5f803e3d5ffd5b505050505f61098f6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156109dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a009190614bf0565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a749190614bf0565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af99190614bf0565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610b84575f80fd5b505af1158015610b96573d5f803e3d5ffd5b50505050505050505050919050565b610bae33610645565b5f610bba600b5f61268f565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c219190614bf0565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c6b575f80fd5b505af1158015610c7d573d5f803e3d5ffd5b50505050505050565b5f610c8f611ba5565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610cd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf79190614c16565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d1f610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d819190614c50565b5f805160206157a28339815191528054600160401b900460ff1680610db3575080546001600160401b03808416911610155b15610dd15760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610dfb836128f1565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80610e53600b610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eb89190614bf0565b60405163a310e2a360e01b81526001600160601b03851660048201526001600160a01b03919091169063a310e2a390602401602060405180830381865afa158015610f05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f299190614bf0565b60405163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b158015610f7c575f80fd5b505af1158015610f8e573d5f803e3d5ffd5b505050505050505050565b610fa16128f9565b5f80610fad600c610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110129190614bf0565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611060573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110849190614ca0565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916110c291908a90600401614d5e565b602060405180830381865af41580156110dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111019190614c16565b61113d57611136846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f015189612930565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161117991908990600401614d5e565b602060405180830381865af4158015611194573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b89190614c16565b6111fc576111f1846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846020015188612930565b506020810184905260015b80156112fa57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561123e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112629190614bf0565b6001600160a01b031663ebb41c0c85846040518363ffffffff1660e01b815260040161128f929190614d79565b5f604051808303815f87803b1580156112a6575f80fd5b505af11580156112b8573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b5050505061131460015f8051602061578283398151915255565b5050565b5f805160206157a28339815191528054600160401b810460ff1615906001600160401b03165f811580156113495750825b90505f826001600160401b031660011480156113645750303b155b905081158015611372575080155b156113905760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113ba57845460ff60401b1916600160401b1785555b6113c48787612996565b8315610c7d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a150505050505050565b5f61141c6128f9565b5f61142f6001546001600160a01b031690565b90506001600160a01b038116635c0e626433600a6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260ff166024820152604401602060405180830381865afa15801561148d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114b19190614c16565b6114d057604051630cfc489360e01b8152336004820152602401610885565b6040516343af726160e01b81526001600160a01b0380831660048301528516602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__906343af726190604401602060405180830381865af415801561152e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115529190614c16565b61157a57604051633d5ad29b60e01b81526001600160a01b0385166004820152602401610885565b5f3390506115e98186836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115e39190614b9d565b87612b2e565b9250505061160360015f8051602061578283398151915255565b92915050565b5f8061161d6001546001600160a01b031690565b90506001600160a01b038116635c0e626433600c6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260ff166024820152604401602060405180830381865afa15801561167b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061169f9190614c16565b6116be57604051633606d55160e01b8152336004820152602401610885565b60405163e851b22d60e01b81526001600160a01b0380831660048301528416602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063e851b22d90604401602060405180830381865af415801561171c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117409190614c16565b611768576040516359bff0e360e11b81526001600160a01b0384166004820152602401610885565b604051632f2a35f760e11b81523360048201525f906001600160a01b03831690635e546bee90602401602060405180830381865afa1580156117ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117d09190614b9d565b60405163677d3feb60e11b81526001600160601b03821660048201529091505f906001600160a01b0384169063bf8e179790829063cefa7fd690602401602060405180830381865afa158015611828573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184c9190614b9d565b6040516001600160e01b031960e084901b1681526001600160601b039091166004820152602401602060405180830381865afa15801561188e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118b29190614bf0565b90506118c08186845f612b2e565b95945050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b6118ee611955565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611931573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614c50565b5f61195e611ba5565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611999573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614e30565b336119c6611ba5565b6001600160a01b0316816001600160a01b031614611a015760405162d1953b60e31b81526001600160a01b0382166004820152602401610885565b816001600160a01b03163b5f03611a36576040516361798f2f60e11b81526001600160a01b0383166004820152602401610885565b611314826132d8565b5f805f8051602061574283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611aab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611acf9190614c16565b15611b5a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b549190614bf0565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061576283398151915280545f9190600160a01b900460ff16611b97575f611b54565b638fb3603760e01b91505090565b5f80516020615762833981519152546001600160a01b031690565b5f80611bcc600f610654565b915091505f80611c3b836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c359190614bf0565b85613338565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611c7d929190614d5e565b602060405180830381865af4158015611c98573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cbc9190614c16565b611cfa57611cef8360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b612930565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611d3691908b90600401614d5e565b602060405180830381865af4158015611d51573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d759190614c16565b611db657611dab836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a612930565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611df291908a90600401614d5e565b602060405180830381865af4158015611e0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e319190614c16565b611e7657611e6b836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c0015189612930565b5060c0810185905260015b8015611f7457836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611edc9190614bf0565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b8152600401611f09929190614d79565b5f604051808303815f87803b158015611f20575f80fd5b505af1158015611f32573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b5f80611f8a600b610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fef9190614bf0565b60405163a310e2a360e01b81526001600160601b03851660048201526001600160a01b03919091169063a310e2a390602401602060405180830381865afa15801561203c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120609190614bf0565b60405163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015b5f604051808303815f87803b1580156120a5575f80fd5b505af1158015611f74573d5f803e3d5ffd5b5f806120c3600e610654565b915091505f80612108836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c11573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b815260040161214a929190614d5e565b602060405180830381865af4158015612165573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121899190614c16565b6121cf576121c4836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a612930565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161220b91908a90600401614d5e565b602060405180830381865af4158015612226573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224a9190614c16565b61229e57612293836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e6572466565000000000000000000815250846060015189612930565b506060810185905260015b8015610c7d57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123049190614bf0565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b8152600401612331929190614d79565b5f604051808303815f87803b158015612348575f80fd5b505af115801561235a573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b92506020019050611402565b5f805f8051602061574283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612404573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124289190614c16565b156124545780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610885565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156124a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124ca9190614c16565b6124f25760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612544573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125689190614b9d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206157628339815191525f806125c96125ac611ba5565b87306125bb60045f8a8c614e4b565b6125c491614e72565b61343a565b91509150816126875763ffffffff81161561266457825460ff60a01b1916600160a01b1783556125f7611ba5565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161262693929190614eaa565b5f604051808303815f87803b15801561263d575f80fd5b505af115801561264f573d5f803e3d5ffd5b5050845460ff60a01b19168555506126879050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610885565b505050505050565b5f8061269961460f565b5f6126ad86600b5b60ff9081169116141590565b156127675773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36126de6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612736573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261275d9190810190614fe7565b909250905061280f565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886127936001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af41580156127e2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526128099190810190614fe7565b90925090505b90519590945092505050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af415801561287c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128a09190614c16565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401612861565b6101a1613542565b5f8051602061578283398151915280546001190161292a57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b81516020808401518351918401516040517f17326f60f251bc425d57bf37b0630491536a1e7231c46d08b25915a90c59ee7c94612975948a948a94929390929061502a565b60405180910390a150505050565b60015f8051602061578283398151915255565b5f805160206157a28339815191528054600160401b810460ff1615906001600160401b03165f811580156129c75750825b90505f826001600160401b031660011480156129e25750303b155b9050811580156129f0575080155b15612a0e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612a3857845460ff60401b1916600160401b1785555b5f8087806020019051810190612a4e9190615086565b91509150612a5d82828b61357a565b612a67602861361c565b600280546001600160a01b0319166001600160a01b0392909216919091178155612a909061361c565b600380546001600160a01b0319166001600160a01b0392909216919091179055612aba600a61361c565b600480546001600160a01b0319166001600160a01b0392909216919091179055612aea63e8e886d960e01b6136ad565b50508315610c7d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611402565b5f805f612b3b86866136e0565b915091505f876001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ba09190614bf0565b90505f886001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bdf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c039190614bf0565b90505f896001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c669190614bf0565b604085015190915060ff8116600c03612d085760035460a0860151604051635d96628960e01b81526001600160a01b0389811660048301529182166024820152911690635d966289906044015f604051808303815f875af1158015612ccd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612cf491908101906150b3565b519650612d0383888c8b6139d3565b612f59565b60035460408681015160a08801519151631fa14e4960e11b81526001600160a01b038a8116600483015260ff9092166024820152918116604483015290911690633f429c92906064015f604051808303815f875af1158015612d6c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d9391908101906150b3565b516040516302d764c760e21b81526001600160601b038b16600482015290975089905f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015612de5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e0c919081019061516c565b905060ff8316600f03612e2b57612e2685838b8f85613ca1565b612e86565b60ff8316600e03612e4257612e2685838b84613e56565b60ff8316600d03612e5957612e2685838b84613fcb565b60405163f0b751ab60e01b81526001600160a01b038d16600482015260ff84166024820152604401610885565b60405163a310e2a360e01b81526001600160601b03831660048201526001600160a01b0385169063a310e2a390602401602060405180830381865afa158015612ed1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ef59190614bf0565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f549190614bf0565b995050505b612f638b896140c8565b5f866001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612f9f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612fc6919081019061524e565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612ff46001546001600160a01b031690565b898c896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613032573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130569190614bf0565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af41580156130b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130d49190614bf0565b6001600160a01b039081166020830152604051631c4b0d8b60e31b81529085169063e2586c589061310b908b908590600401615308565b5f604051808303815f87803b158015613122575f80fd5b505af1158015613134573d5f803e3d5ffd5b50505050866001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015613175573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131999190614b9d565b506040516366704a7d60e01b81526001600160a01b038c8116600483015260ff841660248301528616906366704a7d906044015f604051808303815f87803b1580156131e3575f80fd5b505af11580156131f5573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c68c6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613256573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327a9190614b9d565b60a080890151604080516001600160601b039485168152938d16602085015260ff8716908401526001600160a01b03808c166060850152808e166080850152169082015260c00160405180910390a150505050505050949350505050565b5f8051602061576283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f61334161464c565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa15801561339a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133be9190614b9d565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa15801561340d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134319190614ca0565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516134a89190615363565b5f60405180830381855afa9150503d805f81146134e0576040519150601f19603f3d011682016040523d82523d5f602084013e6134e5565b606091505b50915091508115613537576040815110613517578080602001905181019061350d9190615379565b9094509250613537565b602081511061353757808060200190518101906135349190614c16565b93505b505094509492505050565b5f805160206157a283398151915254600160401b900460ff1661357857604051631afcd79f60e31b815260040160405180910390fd5b565b613582613542565b61358a6142c4565b6136078383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ef9190614b9d565b60085f8660405180602001604052805f8152506142d4565b61361763daf9067160e01b6136ad565b505050565b5f61362f6001546001600160a01b031690565b6001600160a01b031663d39e604383613646611955565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613689573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116039190614bf0565b6136b5613542565b6136dd816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b5f6136e961460f565b839150816001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613727573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261374e91908101906150b3565b905061375e816020015184614411565b156137a457602081015160405163953133f160e01b81526001600160a01b03861660048201526001600160601b0380861660248301529091166044820152606401610885565b61380f826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138079190614e30565b6126a1611955565b156138b2578361381d611955565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613859573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387d9190614e30565b60405163459d07b760e11b81526001600160a01b03909316600484015260ff9182166024840152166044820152606401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa158015613904573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139289190614b9d565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561397f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139a39190614c16565b156139cc57604051632176772160e11b81526001600160a01b0385166004820152602401610885565b9250929050565b5f8290505f816001600160a01b031663c108bd4c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613a13573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a3a919081019061516c565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613a83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613aa79190614b9d565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015613b03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b279190614b9d565b6001600160601b031660c0820152606081015160ff166001600160401b03811115613b5457613b54614864565b604051908082528060200260200182016040528015613b7d578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0387169063fe2ee79290613bb19088908590600401615493565b5f604051808303815f87803b158015613bc8575f80fd5b505af1158015613bda573d5f803e3d5ffd5b50505050856001600160a01b0316631aa4116386846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa158015613c2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c4f9190614ca0565b6040518363ffffffff1660e01b8152600401613c6c929190614d79565b5f604051808303815f87803b158015613c83575f80fd5b505af1158015613c95573d5f803e3d5ffd5b50505050505050505050565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d219190614c16565b15613d585760a08101516040516397f129bf60e01b81526001600160601b0380871660048301529091166024820152604401610885565b5f829050856001600160a01b031663490840b485836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613da8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613dcc91906154b4565b6040518363ffffffff1660e01b8152600401613de9929190615542565b5f604051808303815f87803b158015613e00575f80fd5b505af1158015613e12573d5f803e3d5ffd5b505050506001600160601b03841660a083015260405163659743e960e11b81526001600160a01b0387169063cb2e87d290613c6c908890869060ff906004016155ca565b613e5e6128f9565b8060400151613e8b5760405163931d421760e01b81526001600160601b0384166004820152602401610885565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613ee7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f0b9190614c16565b15613f425760c08101516040516323a0cc7160e11b81526001600160601b0380861660048301529091166024820152604401610885565b6001600160601b03821660c082015260405163659743e960e11b81526001600160a01b0385169063cb2e87d290613f82908690859060ff906004016155ca565b5f604051808303815f87803b158015613f99575f80fd5b505af1158015613fab573d5f803e3d5ffd5b50505050613fc560015f8051602061578283398151915255565b50505050565b806060015160ff165f03613ffd57604051634435e56b60e01b81526001600160601b0384166004820152602401610885565b806060015160ff16816080015160ff16036140455760608101516040516379060d1360e11b81526001600160601b038516600482015260ff9091166024820152604401610885565b818160e00151826080015160ff1681518110614063576140636155fe565b6001600160601b03909216602092830291909101909101526080810180519061408b82615612565b60ff169052506001600160a01b03841663cb2e87d284836140aa60ff90565b6040518463ffffffff1660e01b815260040161208e939291906155ca565b816001600160a01b031663398e3d4c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614104573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141289190614c16565b6113145773__$fb599632d08395912d9d70eb2f0f93b5e2$__637d482da16141586001546001600160a01b031690565b6001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015614193573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141b79190614bf0565b83466141c1611ba5565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142209190614e30565b6040516001600160e01b031960e087901b1681526001600160a01b039485166004820152939092166024840152604483015260ff166064820152608401602060405180830381865af4158015614278573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061429c9190614c16565b61131457604051633acbdd6160e01b81526001600160a01b0382166004820152602401610885565b6142cc613542565b61357861445b565b6142dc613542565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614332573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143569190614c16565b61437e5760405163cf6935e560e01b81526001600160a01b0388166004820152602401610885565b61438787614463565b6143918683614474565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016144008382615687565b50611f74634a531f3360e01b6136ad565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612861565b612983613542565b61446b613542565b6136dd816144ea565b61447c613542565b6144846144fb565b61448d82614543565b6001600160a01b0381166144b45760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061574283398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6144f2613542565b6136dd816132d8565b614503613542565b6135786301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61454b613542565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156145a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145c59190614c16565b6145ed5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610885565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040805161012081019091525f60e0820181815261010083019190915281908152602001614689604080518082019091525f808252602082015290565b81526020016146a7604080518082019091525f808252602082015290565b81526020016146c5604080518082019091525f808252602082015290565b81526020016146e3604080518082019091525f808252602082015290565b8152602001614701604080518082019091525f808252602082015290565b815260200161471f604080518082019091525f808252602082015290565b905290565b5f60208284031215614734575f80fd5b81356001600160e01b0319811681146128a0575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516147c1608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261480561010084018261474b565b949350505050565b6001600160601b03811681146136dd575f80fd5b5f60208284031215614831575f80fd5b81356128a08161480d565b80151581146136dd575f80fd5b5f60208284031215614859575f80fd5b81356128a08161483c565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561489a5761489a614864565b60405290565b60405160e081016001600160401b038111828210171561489a5761489a614864565b60405161010081016001600160401b038111828210171561489a5761489a614864565b604051606081016001600160401b038111828210171561489a5761489a614864565b604051601f8201601f191681016001600160401b038111828210171561492f5761492f614864565b604052919050565b5f6001600160401b0382111561494f5761494f614864565b50601f01601f191660200190565b5f82601f83011261496c575f80fd5b813561497f61497a82614937565b614907565b818152846020838601011115614993575f80fd5b816020850160208301375f918101602001919091529392505050565b5f602082840312156149bf575f80fd5b81356001600160401b038111156149d4575f80fd5b6148058482850161495d565b6001600160a01b03811681146136dd575f80fd5b5f8060408385031215614a05575f80fd5b8235614a10816149e0565b91506020830135614a208161480d565b809150509250929050565b5f60408284031215614a3b575f80fd5b614a43614878565b90508135614a50816149e0565b81526020820135614a608161480d565b602082015292915050565b5f8060808385031215614a7c575f80fd5b614a868484614a2b565b91506134318460408501614a2b565b5f8060408385031215614aa6575f80fd5b8235614ab1816149e0565b915060208301356001600160401b03811115614acb575f80fd5b614ad78582860161495d565b9150509250929050565b5f8060408385031215614af2575f80fd5b8235614afd816149e0565b91506020830135614a20816149e0565b5f60208284031215614b1d575f80fd5b81356128a0816149e0565b5f805f60c08486031215614b3a575f80fd5b614b448585614a2b565b9250614b538560408601614a2b565b9150614b628560808601614a2b565b90509250925092565b5f60208284031215614b7b575f80fd5b815162ffffff811681146128a0575f80fd5b8051614b988161480d565b919050565b5f60208284031215614bad575f80fd5b81516128a08161480d565b600181811c90821680614bcc57607f821691505b602082108103614bea57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614c00575f80fd5b81516128a0816149e0565b8051614b988161483c565b5f60208284031215614c26575f80fd5b81516128a08161483c565b8051614b98816149e0565b6001600160401b03811681146136dd575f80fd5b5f60208284031215614c60575f80fd5b81516128a081614c3c565b5f60408284031215614c7b575f80fd5b614c83614878565b90508151614c90816149e0565b81526020820151614a608161480d565b5f6101c0828403128015614cb2575f80fd5b50614cbb6148a0565b614cc58484614c6b565b8152614cd48460408501614c6b565b6020820152614ce68460808501614c6b565b6040820152614cf88460c08501614c6b565b6060820152614d0b846101008501614c6b565b6080820152614d1e846101408501614c6b565b60a0820152614d31846101808501614c6b565b60c08201529392505050565b80516001600160a01b031682526020908101516001600160601b0316910152565b60808101614d6c8285614d3d565b6128a06040830184614d3d565b5f6101e0820190506001600160601b0384168252614d9b602083018451614d3d565b6020830151614dad6060840182614d3d565b506040830151614dc060a0840182614d3d565b506060830151614dd360e0840182614d3d565b506080830151614de7610120840182614d3d565b5060a0830151614dfb610160840182614d3d565b5060c0830151614e0f6101a0840182614d3d565b509392505050565b60ff811681146136dd575f80fd5b8051614b9881614e17565b5f60208284031215614e40575f80fd5b81516128a081614e17565b5f8085851115614e59575f80fd5b83861115614e65575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015614ea3576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f614ef661497a84614937565b9050828152838383011115614f09575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112614f2e575f80fd5b6128a083835160208501614ee9565b5f60e08284031215614f4d575f80fd5b614f556148a0565b9050614f6082614b8d565b8152614f6e60208301614b8d565b6020820152614f7f60408301614e25565b6040820152614f9060608301614c0b565b6060820152614fa160808301614c31565b6080820152614fb260a08301614c31565b60a082015260c08201516001600160401b03811115614fcf575f80fd5b614fdb84828501614f1f565b60c08301525092915050565b5f8060408385031215614ff8575f80fd5b82516001600160401b0381111561500d575f80fd5b61501985828601614f3d565b9250506020830151614a20816149e0565b6001600160601b038716815260c060208201525f61504b60c083018861474b565b6001600160a01b0396871660408401526001600160601b039586166060840152939095166080820152921660a0909201919091529392505050565b5f8060408385031215615097575f80fd5b82516150a2816149e0565b6020840151909250614a20816149e0565b5f602082840312156150c3575f80fd5b81516001600160401b038111156150d8575f80fd5b61480584828501614f3d565b5f82601f8301126150f3575f80fd5b81516001600160401b0381111561510c5761510c614864565b8060051b61511c60208201614907565b91825260208185018101929081019086841115615137575f80fd5b6020860192505b838310156151625782516151518161480d565b82526020928301929091019061513e565b9695505050505050565b5f6020828403121561517c575f80fd5b81516001600160401b03811115615191575f80fd5b820161010081850312156151a3575f80fd5b6151ab6148c2565b6151b482614c0b565b81526151c260208301614c0b565b60208201526151d360408301614c0b565b60408201526151e460608301614e25565b60608201526151f560808301614e25565b608082015261520660a08301614b8d565b60a082015261521760c08301614b8d565b60c082015260e08201516001600160401b03811115615234575f80fd5b615240868285016150e4565b60e083015250949350505050565b5f6020828403121561525e575f80fd5b81516001600160401b03811115615273575f80fd5b820160608185031215615284575f80fd5b61528c6148e5565b81516001600160401b038111156152a1575f80fd5b8201601f810186136152b1575f80fd5b6152c086825160208401614ee9565b82525060208201516152d1816149e0565b602082015260408201516001600160401b038111156152ee575f80fd5b6152fa86828501614f1f565b604083015250949350505050565b6001600160601b0383168152604060208201525f82516060604084015261533260a084018261474b565b60208501516001600160a01b031660608501526040850151848203603f19016080860152909150615162828261474b565b5f82518060208501845e5f920191825250919050565b5f806040838503121561538a575f80fd5b82516153958161483c565b602084015190925063ffffffff81168114614a20575f80fd5b5f8151808452602084019350602083015f5b828110156153e75781516001600160601b03168652602095860195909101906001016153c0565b5093949350505050565b8051151582526020810151151560208301525f6040820151615417604085018215159052565b50606082015161542c606085018260ff169052565b506080820151615441608085018260ff169052565b5060a082015161545c60a08501826001600160601b03169052565b5060c082015161547760c08501826001600160601b03169052565b5060e082015161010060e08501526148056101008501826153ae565b6001600160601b0383168152604060208201525f61480560408301846153f1565b5f60e08284031280156154c5575f80fd5b506154ce6148a0565b82516154d98161480d565b815260208301516154e9816149e0565b602082015260408301516154fc816149e0565b6040820152606083015161550f8161483c565b606082015261552060808401614c0b565b608082015261553160a08401614c0b565b60a0820152614d3160c08401614c0b565b5f610100820190506001600160601b03841682526001600160601b03835116602083015260018060a01b03602084015116604083015260018060a01b03604084015116606083015260608301511515608083015260808301516155a960a084018215159052565b5060a083015180151560c08401525060c083015180151560e0840152614e0f565b6001600160601b0384168152606060208201525f6155eb60608301856153f1565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff810361563357634e487b7160e01b5f52601160045260245ffd5b60010192915050565b601f82111561361757805f5260205f20601f840160051c810160208510156156615750805b601f840160051c820191505b81811015615680575f815560010161566d565b5050505050565b81516001600160401b038111156156a0576156a0614864565b6156b4816156ae8454614bb8565b8461563c565b6020601f8211600181146156e6575f83156156cf5750848201515b5f19600385901b1c1916600184901b178455615680565b5f84815260208120601f198516915b8281101561571557878501518255602094850194600190920191016156f5565b508482101561573257868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212201c4cdb6fffe40618cc0b3e454ba959c88c32e7d48d9868677094722b75efc9ca64736f6c634300081a0033",
|
1178
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635d966289116100f35780638fb3603711610093578063bf7e214f1161006e578063bf7e214f146103e1578063cf2f3365146103e9578063deaa59df146103fc578063feff0c911461040f575f80fd5b80638fb36037146103a5578063ada9652e146103c6578063b68d1809146103da575f80fd5b80636c741e78116100ce5780636c741e781461035057806376b707b7146103705780637a9e5e4b1461038a578063893d20e81461039d575f80fd5b80635d9662891461030d5780636078a3b214610320578063644c45e014610333575f80fd5b8063211e28b61161015e578063419197fe11610139578063419197fe146102af5780634698bf11146102c257806349bb9e4b146102d55780635ab1bd53146102e8575f80fd5b8063211e28b61461027f57806322f3e2d414610294578063329d6e741461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b3366004614724565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614779565b61021f610635565b6040516001600160601b0390911681526020016101dd565b61021f610245366004614821565b61063f565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d366004614849565b610ba5565b005b6101d1610c86565b6102926102aa3660046149af565b610cfd565b6102926102bd3660046149f4565b610e47565b6102926102d0366004614a6b565b610f99565b6102926102e3366004614a95565b611318565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61031b366004614ae1565b611413565b61021f61032e366004614b0d565b611609565b5f80516020615742833981519152546001600160601b031661021f565b6103586118c9565b6040516001600160401b0390911681526020016101dd565b610378611955565b60405160ff90911681526020016101dd565b610292610398366004614b0d565b6119bd565b6102f5611a3f565b6103ad611b70565b6040516001600160e01b031990911681526020016101dd565b6102715f8051602061574283398151915281565b600b610378565b6102f5611ba5565b6102926103f7366004614b28565b611bc0565b61029261040a366004614b0d565b611f7e565b61029261041d366004614a6b565b6120b7565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614b6b565b905090565b6104b161460f565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061054b9190614b9d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610593611a3f565b6001600160a01b031681526020018260010180546105b090614bb8565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc90614bb8565b80156106275780601f106105fe57610100808354040283529160200191610627565b820191905f5260205f20905b81548152906001019060200180831161060a57829003601f168201915b505050505081525091505090565b5f6104a430612398565b5f61064c335b5f36612591565b5f8061065b600b5b600161268f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561069c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c09190614bf0565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa158015610710573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107349190614b9d565b90508594506107ad8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610784573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a89190614b9d565b61281b565b156107b6578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561080c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108309190614c16565b1561084e5760405163b079ec2b60e01b815260040160405180910390fd5b61085885826128a7565b1561088e5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109119190614bf0565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610966575f80fd5b505af1158015610978573d5f803e3d5ffd5b505050505f61098f6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156109dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a009190614bf0565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a749190614bf0565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af99190614bf0565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610b84575f80fd5b505af1158015610b96573d5f803e3d5ffd5b50505050505050505050919050565b610bae33610645565b5f610bba600b5f61268f565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c219190614bf0565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c6b575f80fd5b505af1158015610c7d573d5f803e3d5ffd5b50505050505050565b5f610c8f611ba5565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610cd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf79190614c16565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d1f610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d819190614c50565b5f805160206157a28339815191528054600160401b900460ff1680610db3575080546001600160401b03808416911610155b15610dd15760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610dfb836128f1565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80610e53600b610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eb89190614bf0565b60405163a310e2a360e01b81526001600160601b03851660048201526001600160a01b03919091169063a310e2a390602401602060405180830381865afa158015610f05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f299190614bf0565b60405163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b158015610f7c575f80fd5b505af1158015610f8e573d5f803e3d5ffd5b505050505050505050565b610fa16128f9565b5f80610fad600c610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110129190614bf0565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611060573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110849190614ca0565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916110c291908a90600401614d5e565b602060405180830381865af41580156110dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111019190614c16565b61113d57611136846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f015189612930565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161117991908990600401614d5e565b602060405180830381865af4158015611194573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b89190614c16565b6111fc576111f1846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846020015188612930565b506020810184905260015b80156112fa57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561123e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112629190614bf0565b6001600160a01b031663ebb41c0c85846040518363ffffffff1660e01b815260040161128f929190614d79565b5f604051808303815f87803b1580156112a6575f80fd5b505af11580156112b8573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b5050505061131460015f8051602061578283398151915255565b5050565b5f805160206157a28339815191528054600160401b810460ff1615906001600160401b03165f811580156113495750825b90505f826001600160401b031660011480156113645750303b155b905081158015611372575080155b156113905760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113ba57845460ff60401b1916600160401b1785555b6113c48787612996565b8315610c7d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a150505050505050565b5f61141c6128f9565b5f61142f6001546001600160a01b031690565b90506001600160a01b038116635c0e626433600a6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260ff166024820152604401602060405180830381865afa15801561148d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114b19190614c16565b6114d057604051630cfc489360e01b8152336004820152602401610885565b6040516343af726160e01b81526001600160a01b0380831660048301528516602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__906343af726190604401602060405180830381865af415801561152e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115529190614c16565b61157a57604051633d5ad29b60e01b81526001600160a01b0385166004820152602401610885565b5f3390506115e98186836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115e39190614b9d565b87612b2e565b9250505061160360015f8051602061578283398151915255565b92915050565b5f8061161d6001546001600160a01b031690565b90506001600160a01b038116635c0e626433600c6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260ff166024820152604401602060405180830381865afa15801561167b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061169f9190614c16565b6116be57604051633606d55160e01b8152336004820152602401610885565b60405163e851b22d60e01b81526001600160a01b0380831660048301528416602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063e851b22d90604401602060405180830381865af415801561171c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117409190614c16565b611768576040516359bff0e360e11b81526001600160a01b0384166004820152602401610885565b604051632f2a35f760e11b81523360048201525f906001600160a01b03831690635e546bee90602401602060405180830381865afa1580156117ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117d09190614b9d565b60405163677d3feb60e11b81526001600160601b03821660048201529091505f906001600160a01b0384169063bf8e179790829063cefa7fd690602401602060405180830381865afa158015611828573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184c9190614b9d565b6040516001600160e01b031960e084901b1681526001600160601b039091166004820152602401602060405180830381865afa15801561188e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118b29190614bf0565b90506118c08186845f612b2e565b95945050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b6118ee611955565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611931573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614c50565b5f61195e611ba5565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611999573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614e30565b336119c6611ba5565b6001600160a01b0316816001600160a01b031614611a015760405162d1953b60e31b81526001600160a01b0382166004820152602401610885565b816001600160a01b03163b5f03611a36576040516361798f2f60e11b81526001600160a01b0383166004820152602401610885565b611314826132d8565b5f805f8051602061574283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611aab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611acf9190614c16565b15611b5a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b549190614bf0565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061576283398151915280545f9190600160a01b900460ff16611b97575f611b54565b638fb3603760e01b91505090565b5f80516020615762833981519152546001600160a01b031690565b5f80611bcc600f610654565b915091505f80611c3b836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c359190614bf0565b85613338565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611c7d929190614d5e565b602060405180830381865af4158015611c98573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cbc9190614c16565b611cfa57611cef8360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b612930565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611d3691908b90600401614d5e565b602060405180830381865af4158015611d51573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d759190614c16565b611db657611dab836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a612930565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611df291908a90600401614d5e565b602060405180830381865af4158015611e0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e319190614c16565b611e7657611e6b836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c0015189612930565b5060c0810185905260015b8015611f7457836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611edc9190614bf0565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b8152600401611f09929190614d79565b5f604051808303815f87803b158015611f20575f80fd5b505af1158015611f32573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b5f80611f8a600b610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fef9190614bf0565b60405163a310e2a360e01b81526001600160601b03851660048201526001600160a01b03919091169063a310e2a390602401602060405180830381865afa15801561203c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120609190614bf0565b60405163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015b5f604051808303815f87803b1580156120a5575f80fd5b505af1158015611f74573d5f803e3d5ffd5b5f806120c3600e610654565b915091505f80612108836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c11573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b815260040161214a929190614d5e565b602060405180830381865af4158015612165573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121899190614c16565b6121cf576121c4836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a612930565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161220b91908a90600401614d5e565b602060405180830381865af4158015612226573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224a9190614c16565b61229e57612293836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e6572466565000000000000000000815250846060015189612930565b506060810185905260015b8015610c7d57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123049190614bf0565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b8152600401612331929190614d79565b5f604051808303815f87803b158015612348575f80fd5b505af115801561235a573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b92506020019050611402565b5f805f8051602061574283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612404573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124289190614c16565b156124545780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610885565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156124a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124ca9190614c16565b6124f25760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612544573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125689190614b9d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206157628339815191525f806125c96125ac611ba5565b87306125bb60045f8a8c614e4b565b6125c491614e72565b61343a565b91509150816126875763ffffffff81161561266457825460ff60a01b1916600160a01b1783556125f7611ba5565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161262693929190614eaa565b5f604051808303815f87803b15801561263d575f80fd5b505af115801561264f573d5f803e3d5ffd5b5050845460ff60a01b19168555506126879050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610885565b505050505050565b5f8061269961460f565b5f6126ad86600b5b60ff9081169116141590565b156127675773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36126de6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612736573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261275d9190810190614fe7565b909250905061280f565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886127936001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af41580156127e2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526128099190810190614fe7565b90925090505b90519590945092505050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af415801561287c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128a09190614c16565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401612861565b6101a1613542565b5f8051602061578283398151915280546001190161292a57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b81516020808401518351918401516040517f17326f60f251bc425d57bf37b0630491536a1e7231c46d08b25915a90c59ee7c94612975948a948a94929390929061502a565b60405180910390a150505050565b60015f8051602061578283398151915255565b5f805160206157a28339815191528054600160401b810460ff1615906001600160401b03165f811580156129c75750825b90505f826001600160401b031660011480156129e25750303b155b9050811580156129f0575080155b15612a0e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612a3857845460ff60401b1916600160401b1785555b5f8087806020019051810190612a4e9190615086565b91509150612a5d82828b61357a565b612a67602861361c565b600280546001600160a01b0319166001600160a01b0392909216919091178155612a909061361c565b600380546001600160a01b0319166001600160a01b0392909216919091179055612aba600a61361c565b600480546001600160a01b0319166001600160a01b0392909216919091179055612aea63e8e886d960e01b6136ad565b50508315610c7d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611402565b5f805f612b3b86866136e0565b915091505f876001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ba09190614bf0565b90505f886001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bdf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c039190614bf0565b90505f896001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c669190614bf0565b604085015190915060ff8116600c03612d085760035460a0860151604051635d96628960e01b81526001600160a01b0389811660048301529182166024820152911690635d966289906044015f604051808303815f875af1158015612ccd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612cf491908101906150b3565b519650612d0383888c8b6139d3565b612f59565b60035460408681015160a08801519151631fa14e4960e11b81526001600160a01b038a8116600483015260ff9092166024820152918116604483015290911690633f429c92906064015f604051808303815f875af1158015612d6c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d9391908101906150b3565b516040516302d764c760e21b81526001600160601b038b16600482015290975089905f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015612de5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e0c919081019061516c565b905060ff8316600f03612e2b57612e2685838b8f85613ca1565b612e86565b60ff8316600e03612e4257612e2685838b84613e56565b60ff8316600d03612e5957612e2685838b84613fcb565b60405163f0b751ab60e01b81526001600160a01b038d16600482015260ff84166024820152604401610885565b60405163a310e2a360e01b81526001600160601b03831660048201526001600160a01b0385169063a310e2a390602401602060405180830381865afa158015612ed1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ef59190614bf0565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f549190614bf0565b995050505b612f638b896140c8565b5f866001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612f9f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612fc6919081019061524e565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612ff46001546001600160a01b031690565b898c896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613032573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130569190614bf0565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af41580156130b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130d49190614bf0565b6001600160a01b039081166020830152604051631c4b0d8b60e31b81529085169063e2586c589061310b908b908590600401615308565b5f604051808303815f87803b158015613122575f80fd5b505af1158015613134573d5f803e3d5ffd5b50505050866001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015613175573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131999190614b9d565b506040516366704a7d60e01b81526001600160a01b038c8116600483015260ff841660248301528616906366704a7d906044015f604051808303815f87803b1580156131e3575f80fd5b505af11580156131f5573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c68c6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613256573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327a9190614b9d565b60a080890151604080516001600160601b039485168152938d16602085015260ff8716908401526001600160a01b03808c166060850152808e166080850152169082015260c00160405180910390a150505050505050949350505050565b5f8051602061576283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f61334161464c565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa15801561339a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133be9190614b9d565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa15801561340d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134319190614ca0565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516134a89190615363565b5f60405180830381855afa9150503d805f81146134e0576040519150601f19603f3d011682016040523d82523d5f602084013e6134e5565b606091505b50915091508115613537576040815110613517578080602001905181019061350d9190615379565b9094509250613537565b602081511061353757808060200190518101906135349190614c16565b93505b505094509492505050565b5f805160206157a283398151915254600160401b900460ff1661357857604051631afcd79f60e31b815260040160405180910390fd5b565b613582613542565b61358a6142c4565b6136078383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ef9190614b9d565b60085f8660405180602001604052805f8152506142d4565b61361763daf9067160e01b6136ad565b505050565b5f61362f6001546001600160a01b031690565b6001600160a01b031663d39e604383613646611955565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613689573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116039190614bf0565b6136b5613542565b6136dd816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b5f6136e961460f565b839150816001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613727573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261374e91908101906150b3565b905061375e816020015184614411565b156137a457602081015160405163953133f160e01b81526001600160a01b03861660048201526001600160601b0380861660248301529091166044820152606401610885565b61380f826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138079190614e30565b6126a1611955565b156138b2578361381d611955565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613859573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387d9190614e30565b60405163459d07b760e11b81526001600160a01b03909316600484015260ff9182166024840152166044820152606401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa158015613904573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139289190614b9d565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561397f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139a39190614c16565b156139cc57604051632176772160e11b81526001600160a01b0385166004820152602401610885565b9250929050565b5f8290505f816001600160a01b031663c108bd4c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613a13573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a3a919081019061516c565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613a83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613aa79190614b9d565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015613b03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b279190614b9d565b6001600160601b031660c0820152606081015160ff166001600160401b03811115613b5457613b54614864565b604051908082528060200260200182016040528015613b7d578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0387169063fe2ee79290613bb19088908590600401615493565b5f604051808303815f87803b158015613bc8575f80fd5b505af1158015613bda573d5f803e3d5ffd5b50505050856001600160a01b0316631aa4116386846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa158015613c2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c4f9190614ca0565b6040518363ffffffff1660e01b8152600401613c6c929190614d79565b5f604051808303815f87803b158015613c83575f80fd5b505af1158015613c95573d5f803e3d5ffd5b50505050505050505050565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d219190614c16565b15613d585760a08101516040516397f129bf60e01b81526001600160601b0380871660048301529091166024820152604401610885565b5f829050856001600160a01b031663490840b485836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613da8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613dcc91906154b4565b6040518363ffffffff1660e01b8152600401613de9929190615542565b5f604051808303815f87803b158015613e00575f80fd5b505af1158015613e12573d5f803e3d5ffd5b505050506001600160601b03841660a083015260405163659743e960e11b81526001600160a01b0387169063cb2e87d290613c6c908890869060ff906004016155ca565b613e5e6128f9565b8060400151613e8b5760405163931d421760e01b81526001600160601b0384166004820152602401610885565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613ee7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f0b9190614c16565b15613f425760c08101516040516323a0cc7160e11b81526001600160601b0380861660048301529091166024820152604401610885565b6001600160601b03821660c082015260405163659743e960e11b81526001600160a01b0385169063cb2e87d290613f82908690859060ff906004016155ca565b5f604051808303815f87803b158015613f99575f80fd5b505af1158015613fab573d5f803e3d5ffd5b50505050613fc560015f8051602061578283398151915255565b50505050565b806060015160ff165f03613ffd57604051634435e56b60e01b81526001600160601b0384166004820152602401610885565b806060015160ff16816080015160ff16036140455760608101516040516379060d1360e11b81526001600160601b038516600482015260ff9091166024820152604401610885565b818160e00151826080015160ff1681518110614063576140636155fe565b6001600160601b03909216602092830291909101909101526080810180519061408b82615612565b60ff169052506001600160a01b03841663cb2e87d284836140aa60ff90565b6040518463ffffffff1660e01b815260040161208e939291906155ca565b816001600160a01b031663398e3d4c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614104573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141289190614c16565b6113145773__$fb599632d08395912d9d70eb2f0f93b5e2$__637d482da16141586001546001600160a01b031690565b6001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015614193573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141b79190614bf0565b83466141c1611ba5565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142209190614e30565b6040516001600160e01b031960e087901b1681526001600160a01b039485166004820152939092166024840152604483015260ff166064820152608401602060405180830381865af4158015614278573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061429c9190614c16565b61131457604051633acbdd6160e01b81526001600160a01b0382166004820152602401610885565b6142cc613542565b61357861445b565b6142dc613542565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614332573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143569190614c16565b61437e5760405163cf6935e560e01b81526001600160a01b0388166004820152602401610885565b61438787614463565b6143918683614474565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016144008382615687565b50611f74634a531f3360e01b6136ad565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612861565b612983613542565b61446b613542565b6136dd816144ea565b61447c613542565b6144846144fb565b61448d82614543565b6001600160a01b0381166144b45760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061574283398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6144f2613542565b6136dd816132d8565b614503613542565b6135786301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61454b613542565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156145a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145c59190614c16565b6145ed5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610885565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040805161012081019091525f60e0820181815261010083019190915281908152602001614689604080518082019091525f808252602082015290565b81526020016146a7604080518082019091525f808252602082015290565b81526020016146c5604080518082019091525f808252602082015290565b81526020016146e3604080518082019091525f808252602082015290565b8152602001614701604080518082019091525f808252602082015290565b815260200161471f604080518082019091525f808252602082015290565b905290565b5f60208284031215614734575f80fd5b81356001600160e01b0319811681146128a0575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516147c1608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261480561010084018261474b565b949350505050565b6001600160601b03811681146136dd575f80fd5b5f60208284031215614831575f80fd5b81356128a08161480d565b80151581146136dd575f80fd5b5f60208284031215614859575f80fd5b81356128a08161483c565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561489a5761489a614864565b60405290565b60405160e081016001600160401b038111828210171561489a5761489a614864565b60405161010081016001600160401b038111828210171561489a5761489a614864565b604051606081016001600160401b038111828210171561489a5761489a614864565b604051601f8201601f191681016001600160401b038111828210171561492f5761492f614864565b604052919050565b5f6001600160401b0382111561494f5761494f614864565b50601f01601f191660200190565b5f82601f83011261496c575f80fd5b813561497f61497a82614937565b614907565b818152846020838601011115614993575f80fd5b816020850160208301375f918101602001919091529392505050565b5f602082840312156149bf575f80fd5b81356001600160401b038111156149d4575f80fd5b6148058482850161495d565b6001600160a01b03811681146136dd575f80fd5b5f8060408385031215614a05575f80fd5b8235614a10816149e0565b91506020830135614a208161480d565b809150509250929050565b5f60408284031215614a3b575f80fd5b614a43614878565b90508135614a50816149e0565b81526020820135614a608161480d565b602082015292915050565b5f8060808385031215614a7c575f80fd5b614a868484614a2b565b91506134318460408501614a2b565b5f8060408385031215614aa6575f80fd5b8235614ab1816149e0565b915060208301356001600160401b03811115614acb575f80fd5b614ad78582860161495d565b9150509250929050565b5f8060408385031215614af2575f80fd5b8235614afd816149e0565b91506020830135614a20816149e0565b5f60208284031215614b1d575f80fd5b81356128a0816149e0565b5f805f60c08486031215614b3a575f80fd5b614b448585614a2b565b9250614b538560408601614a2b565b9150614b628560808601614a2b565b90509250925092565b5f60208284031215614b7b575f80fd5b815162ffffff811681146128a0575f80fd5b8051614b988161480d565b919050565b5f60208284031215614bad575f80fd5b81516128a08161480d565b600181811c90821680614bcc57607f821691505b602082108103614bea57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614c00575f80fd5b81516128a0816149e0565b8051614b988161483c565b5f60208284031215614c26575f80fd5b81516128a08161483c565b8051614b98816149e0565b6001600160401b03811681146136dd575f80fd5b5f60208284031215614c60575f80fd5b81516128a081614c3c565b5f60408284031215614c7b575f80fd5b614c83614878565b90508151614c90816149e0565b81526020820151614a608161480d565b5f6101c0828403128015614cb2575f80fd5b50614cbb6148a0565b614cc58484614c6b565b8152614cd48460408501614c6b565b6020820152614ce68460808501614c6b565b6040820152614cf88460c08501614c6b565b6060820152614d0b846101008501614c6b565b6080820152614d1e846101408501614c6b565b60a0820152614d31846101808501614c6b565b60c08201529392505050565b80516001600160a01b031682526020908101516001600160601b0316910152565b60808101614d6c8285614d3d565b6128a06040830184614d3d565b5f6101e0820190506001600160601b0384168252614d9b602083018451614d3d565b6020830151614dad6060840182614d3d565b506040830151614dc060a0840182614d3d565b506060830151614dd360e0840182614d3d565b506080830151614de7610120840182614d3d565b5060a0830151614dfb610160840182614d3d565b5060c0830151614e0f6101a0840182614d3d565b509392505050565b60ff811681146136dd575f80fd5b8051614b9881614e17565b5f60208284031215614e40575f80fd5b81516128a081614e17565b5f8085851115614e59575f80fd5b83861115614e65575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015614ea3576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f614ef661497a84614937565b9050828152838383011115614f09575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112614f2e575f80fd5b6128a083835160208501614ee9565b5f60e08284031215614f4d575f80fd5b614f556148a0565b9050614f6082614b8d565b8152614f6e60208301614b8d565b6020820152614f7f60408301614e25565b6040820152614f9060608301614c0b565b6060820152614fa160808301614c31565b6080820152614fb260a08301614c31565b60a082015260c08201516001600160401b03811115614fcf575f80fd5b614fdb84828501614f1f565b60c08301525092915050565b5f8060408385031215614ff8575f80fd5b82516001600160401b0381111561500d575f80fd5b61501985828601614f3d565b9250506020830151614a20816149e0565b6001600160601b038716815260c060208201525f61504b60c083018861474b565b6001600160a01b0396871660408401526001600160601b039586166060840152939095166080820152921660a0909201919091529392505050565b5f8060408385031215615097575f80fd5b82516150a2816149e0565b6020840151909250614a20816149e0565b5f602082840312156150c3575f80fd5b81516001600160401b038111156150d8575f80fd5b61480584828501614f3d565b5f82601f8301126150f3575f80fd5b81516001600160401b0381111561510c5761510c614864565b8060051b61511c60208201614907565b91825260208185018101929081019086841115615137575f80fd5b6020860192505b838310156151625782516151518161480d565b82526020928301929091019061513e565b9695505050505050565b5f6020828403121561517c575f80fd5b81516001600160401b03811115615191575f80fd5b820161010081850312156151a3575f80fd5b6151ab6148c2565b6151b482614c0b565b81526151c260208301614c0b565b60208201526151d360408301614c0b565b60408201526151e460608301614e25565b60608201526151f560808301614e25565b608082015261520660a08301614b8d565b60a082015261521760c08301614b8d565b60c082015260e08201516001600160401b03811115615234575f80fd5b615240868285016150e4565b60e083015250949350505050565b5f6020828403121561525e575f80fd5b81516001600160401b03811115615273575f80fd5b820160608185031215615284575f80fd5b61528c6148e5565b81516001600160401b038111156152a1575f80fd5b8201601f810186136152b1575f80fd5b6152c086825160208401614ee9565b82525060208201516152d1816149e0565b602082015260408201516001600160401b038111156152ee575f80fd5b6152fa86828501614f1f565b604083015250949350505050565b6001600160601b0383168152604060208201525f82516060604084015261533260a084018261474b565b60208501516001600160a01b031660608501526040850151848203603f19016080860152909150615162828261474b565b5f82518060208501845e5f920191825250919050565b5f806040838503121561538a575f80fd5b82516153958161483c565b602084015190925063ffffffff81168114614a20575f80fd5b5f8151808452602084019350602083015f5b828110156153e75781516001600160601b03168652602095860195909101906001016153c0565b5093949350505050565b8051151582526020810151151560208301525f6040820151615417604085018215159052565b50606082015161542c606085018260ff169052565b506080820151615441608085018260ff169052565b5060a082015161545c60a08501826001600160601b03169052565b5060c082015161547760c08501826001600160601b03169052565b5060e082015161010060e08501526148056101008501826153ae565b6001600160601b0383168152604060208201525f61480560408301846153f1565b5f60e08284031280156154c5575f80fd5b506154ce6148a0565b82516154d98161480d565b815260208301516154e9816149e0565b602082015260408301516154fc816149e0565b6040820152606083015161550f8161483c565b606082015261552060808401614c0b565b608082015261553160a08401614c0b565b60a0820152614d3160c08401614c0b565b5f610100820190506001600160601b03841682526001600160601b03835116602083015260018060a01b03602084015116604083015260018060a01b03604084015116606083015260608301511515608083015260808301516155a960a084018215159052565b5060a083015180151560c08401525060c083015180151560e0840152614e0f565b6001600160601b0384168152606060208201525f6155eb60608301856153f1565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff810361563357634e487b7160e01b5f52601160045260245ffd5b60010192915050565b601f82111561361757805f5260205f20601f840160051c810160208510156156615750805b601f840160051c820191505b81811015615680575f815560010161566d565b5050505050565b81516001600160401b038111156156a0576156a0614864565b6156b4816156ae8454614bb8565b8461563c565b6020601f8211600181146156e6575f83156156cf5750848201515b5f19600385901b1c1916600184901b178455615680565b5f84815260208120601f198516915b8281101561571557878501518255602094850194600190920191016156f5565b508482101561573257868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212201c4cdb6fffe40618cc0b3e454ba959c88c32e7d48d9868677094722b75efc9ca64736f6c634300081a0033",
|
1179
|
+
"linkReferences": {
|
1180
|
+
"contracts/shared/ContractLib.sol": {
|
1181
|
+
"ContractLib": [
|
1182
|
+
{
|
1183
|
+
"length": 20,
|
1184
|
+
"start": 5580
|
1185
|
+
},
|
1186
|
+
{
|
1187
|
+
"length": 20,
|
1188
|
+
"start": 6074
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"length": 20,
|
1192
|
+
"start": 10122
|
1193
|
+
},
|
1194
|
+
{
|
1195
|
+
"length": 20,
|
1196
|
+
"start": 10303
|
1197
|
+
},
|
1198
|
+
{
|
1199
|
+
"length": 20,
|
1200
|
+
"start": 16900
|
1201
|
+
},
|
1202
|
+
{
|
1203
|
+
"length": 20,
|
1204
|
+
"start": 17360
|
1205
|
+
},
|
1206
|
+
{
|
1207
|
+
"length": 20,
|
1208
|
+
"start": 17983
|
1209
|
+
}
|
1210
|
+
]
|
1211
|
+
},
|
1212
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
1213
|
+
"TokenHandlerDeployerLib": [
|
1214
|
+
{
|
1215
|
+
"length": 20,
|
1216
|
+
"start": 12448
|
1217
|
+
}
|
1218
|
+
]
|
1219
|
+
},
|
1220
|
+
"contracts/type/Amount.sol": {
|
1221
|
+
"AmountLib": [
|
1222
|
+
{
|
1223
|
+
"length": 20,
|
1224
|
+
"start": 2069
|
1225
|
+
},
|
1226
|
+
{
|
1227
|
+
"length": 20,
|
1228
|
+
"start": 2218
|
1229
|
+
},
|
1230
|
+
{
|
1231
|
+
"length": 20,
|
1232
|
+
"start": 10521
|
1233
|
+
},
|
1234
|
+
{
|
1235
|
+
"length": 20,
|
1236
|
+
"start": 10661
|
1237
|
+
}
|
1238
|
+
]
|
1239
|
+
},
|
1240
|
+
"contracts/type/Fee.sol": {
|
1241
|
+
"FeeLib": [
|
1242
|
+
{
|
1243
|
+
"length": 20,
|
1244
|
+
"start": 4463
|
1245
|
+
},
|
1246
|
+
{
|
1247
|
+
"length": 20,
|
1248
|
+
"start": 4646
|
1249
|
+
},
|
1250
|
+
{
|
1251
|
+
"length": 20,
|
1252
|
+
"start": 7448
|
1253
|
+
},
|
1254
|
+
{
|
1255
|
+
"length": 20,
|
1256
|
+
"start": 7651
|
1257
|
+
},
|
1258
|
+
{
|
1259
|
+
"length": 20,
|
1260
|
+
"start": 7839
|
1261
|
+
},
|
1262
|
+
{
|
1263
|
+
"length": 20,
|
1264
|
+
"start": 8677
|
1265
|
+
},
|
1266
|
+
{
|
1267
|
+
"length": 20,
|
1268
|
+
"start": 8888
|
1269
|
+
}
|
1270
|
+
]
|
1271
|
+
},
|
1272
|
+
"contracts/type/NftId.sol": {
|
1273
|
+
"NftIdLib": [
|
1274
|
+
{
|
1275
|
+
"length": 20,
|
1276
|
+
"start": 1464
|
1277
|
+
},
|
1278
|
+
{
|
1279
|
+
"length": 20,
|
1280
|
+
"start": 6985
|
1281
|
+
},
|
1282
|
+
{
|
1283
|
+
"length": 20,
|
1284
|
+
"start": 9378
|
1285
|
+
},
|
1286
|
+
{
|
1287
|
+
"length": 20,
|
1288
|
+
"start": 14877
|
1289
|
+
},
|
1290
|
+
{
|
1291
|
+
"length": 20,
|
1292
|
+
"start": 15124
|
1293
|
+
},
|
1294
|
+
{
|
1295
|
+
"length": 20,
|
1296
|
+
"start": 15261
|
1297
|
+
},
|
1298
|
+
{
|
1299
|
+
"length": 20,
|
1300
|
+
"start": 15771
|
1301
|
+
},
|
1302
|
+
{
|
1303
|
+
"length": 20,
|
1304
|
+
"start": 16261
|
1305
|
+
},
|
1306
|
+
{
|
1307
|
+
"length": 20,
|
1308
|
+
"start": 17679
|
1309
|
+
}
|
1310
|
+
]
|
1311
|
+
},
|
1312
|
+
"contracts/type/RoleId.sol": {
|
1313
|
+
"RoleIdLib": [
|
1314
|
+
{
|
1315
|
+
"length": 20,
|
1316
|
+
"start": 6562
|
1317
|
+
}
|
1318
|
+
]
|
1319
|
+
},
|
1320
|
+
"contracts/type/Version.sol": {
|
1321
|
+
"VersionLib": [
|
1322
|
+
{
|
1323
|
+
"length": 20,
|
1324
|
+
"start": 1310
|
1325
|
+
},
|
1326
|
+
{
|
1327
|
+
"length": 20,
|
1328
|
+
"start": 3541
|
1329
|
+
}
|
1330
|
+
]
|
1331
|
+
}
|
1332
|
+
},
|
1333
|
+
"deployedLinkReferences": {
|
1334
|
+
"contracts/shared/ContractLib.sol": {
|
1335
|
+
"ContractLib": [
|
1336
|
+
{
|
1337
|
+
"length": 20,
|
1338
|
+
"start": 5366
|
1339
|
+
},
|
1340
|
+
{
|
1341
|
+
"length": 20,
|
1342
|
+
"start": 5860
|
1343
|
+
},
|
1344
|
+
{
|
1345
|
+
"length": 20,
|
1346
|
+
"start": 9908
|
1347
|
+
},
|
1348
|
+
{
|
1349
|
+
"length": 20,
|
1350
|
+
"start": 10089
|
1351
|
+
},
|
1352
|
+
{
|
1353
|
+
"length": 20,
|
1354
|
+
"start": 16686
|
1355
|
+
},
|
1356
|
+
{
|
1357
|
+
"length": 20,
|
1358
|
+
"start": 17146
|
1359
|
+
},
|
1360
|
+
{
|
1361
|
+
"length": 20,
|
1362
|
+
"start": 17769
|
1363
|
+
}
|
1364
|
+
]
|
1365
|
+
},
|
1366
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
1367
|
+
"TokenHandlerDeployerLib": [
|
1368
|
+
{
|
1369
|
+
"length": 20,
|
1370
|
+
"start": 12234
|
1371
|
+
}
|
1372
|
+
]
|
1373
|
+
},
|
1374
|
+
"contracts/type/Amount.sol": {
|
1375
|
+
"AmountLib": [
|
1376
|
+
{
|
1377
|
+
"length": 20,
|
1378
|
+
"start": 1855
|
1379
|
+
},
|
1380
|
+
{
|
1381
|
+
"length": 20,
|
1382
|
+
"start": 2004
|
1383
|
+
},
|
1384
|
+
{
|
1385
|
+
"length": 20,
|
1386
|
+
"start": 10307
|
1387
|
+
},
|
1388
|
+
{
|
1389
|
+
"length": 20,
|
1390
|
+
"start": 10447
|
1391
|
+
}
|
1392
|
+
]
|
1393
|
+
},
|
1394
|
+
"contracts/type/Fee.sol": {
|
1395
|
+
"FeeLib": [
|
1396
|
+
{
|
1397
|
+
"length": 20,
|
1398
|
+
"start": 4249
|
1399
|
+
},
|
1400
|
+
{
|
1401
|
+
"length": 20,
|
1402
|
+
"start": 4432
|
1403
|
+
},
|
1404
|
+
{
|
1405
|
+
"length": 20,
|
1406
|
+
"start": 7234
|
1407
|
+
},
|
1408
|
+
{
|
1409
|
+
"length": 20,
|
1410
|
+
"start": 7437
|
1411
|
+
},
|
1412
|
+
{
|
1413
|
+
"length": 20,
|
1414
|
+
"start": 7625
|
1415
|
+
},
|
1416
|
+
{
|
1417
|
+
"length": 20,
|
1418
|
+
"start": 8463
|
1419
|
+
},
|
1420
|
+
{
|
1421
|
+
"length": 20,
|
1422
|
+
"start": 8674
|
1423
|
+
}
|
1424
|
+
]
|
1425
|
+
},
|
1426
|
+
"contracts/type/NftId.sol": {
|
1427
|
+
"NftIdLib": [
|
1428
|
+
{
|
1429
|
+
"length": 20,
|
1430
|
+
"start": 1250
|
1431
|
+
},
|
1432
|
+
{
|
1433
|
+
"length": 20,
|
1434
|
+
"start": 6771
|
1435
|
+
},
|
1436
|
+
{
|
1437
|
+
"length": 20,
|
1438
|
+
"start": 9164
|
1439
|
+
},
|
1440
|
+
{
|
1441
|
+
"length": 20,
|
1442
|
+
"start": 14663
|
1443
|
+
},
|
1444
|
+
{
|
1445
|
+
"length": 20,
|
1446
|
+
"start": 14910
|
1447
|
+
},
|
1448
|
+
{
|
1449
|
+
"length": 20,
|
1450
|
+
"start": 15047
|
1451
|
+
},
|
1452
|
+
{
|
1453
|
+
"length": 20,
|
1454
|
+
"start": 15557
|
1455
|
+
},
|
1456
|
+
{
|
1457
|
+
"length": 20,
|
1458
|
+
"start": 16047
|
1459
|
+
},
|
1460
|
+
{
|
1461
|
+
"length": 20,
|
1462
|
+
"start": 17465
|
1463
|
+
}
|
1464
|
+
]
|
1465
|
+
},
|
1466
|
+
"contracts/type/RoleId.sol": {
|
1467
|
+
"RoleIdLib": [
|
1468
|
+
{
|
1469
|
+
"length": 20,
|
1470
|
+
"start": 6348
|
1471
|
+
}
|
1472
|
+
]
|
1473
|
+
},
|
1474
|
+
"contracts/type/Version.sol": {
|
1475
|
+
"VersionLib": [
|
1476
|
+
{
|
1477
|
+
"length": 20,
|
1478
|
+
"start": 1096
|
1479
|
+
},
|
1480
|
+
{
|
1481
|
+
"length": 20,
|
1482
|
+
"start": 3327
|
1483
|
+
}
|
1484
|
+
]
|
1485
|
+
}
|
1486
|
+
}
|
1487
|
+
}
|