@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f36fd21-685
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 +38 -86
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/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 +1032 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1548 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +233 -318
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1557 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +854 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +282 -208
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +233 -301
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +272 -1967
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +269 -79
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +397 -2762
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +783 -332
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +352 -225
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +115 -82
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3581 -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 +182 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +10 -118
- 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 +1185 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +802 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1093 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1520 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1300 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +786 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +314 -139
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +299 -251
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/Pool.sol/Pool.json +270 -314
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1318 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +174 -202
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +733 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +146 -153
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +985 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +80 -64
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1196 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/{components → product}/Product.sol/Product.json +357 -238
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +182 -28
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +443 -43
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -97
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +105 -54
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/Component.sol/Component.json +144 -80
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1696 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +100 -113
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +180 -54
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +205 -198
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +87 -9
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
- 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 +96 -19
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1015 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -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 +15 -22
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +98 -26
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +23 -22
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +103 -21
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +60 -6
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +470 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +33 -7
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -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 +617 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
- package/contracts/authorization/AccessAdmin.sol +591 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +218 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +136 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +90 -0
- package/contracts/distribution/BasicDistribution.sol +138 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/{components → distribution}/Distribution.sol +177 -162
- package/contracts/distribution/DistributionService.sol +337 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/{instance/service → distribution}/IDistributionService.sol +37 -38
- package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
- package/contracts/instance/IInstance.sol +55 -67
- package/contracts/instance/IInstanceService.sol +50 -30
- package/contracts/instance/Instance.sol +160 -233
- package/contracts/instance/InstanceAdmin.sol +266 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +173 -58
- package/contracts/instance/InstanceService.sol +281 -333
- package/contracts/instance/InstanceServiceManager.sol +12 -26
- package/contracts/instance/InstanceStore.sol +277 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +106 -0
- package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
- package/contracts/instance/module/IAccess.sol +5 -13
- package/contracts/instance/module/IBundle.sol +8 -9
- package/contracts/instance/module/IComponents.sol +21 -5
- package/contracts/instance/module/IDistribution.sol +6 -6
- package/contracts/instance/module/IPolicy.sol +28 -16
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +166 -0
- package/contracts/oracle/OracleService.sol +278 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +164 -0
- package/contracts/pool/BasicPoolAuthorization.sol +55 -0
- package/contracts/pool/BundleService.sol +341 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +120 -0
- package/contracts/pool/IPoolComponent.sol +58 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +328 -0
- package/contracts/pool/PoolService.sol +434 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +230 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +11 -8
- package/contracts/product/BasicProduct.sol +52 -0
- package/contracts/product/BasicProductAuthorization.sol +43 -0
- package/contracts/product/ClaimService.sol +417 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +11 -8
- package/contracts/{instance/service → product}/IApplicationService.sol +15 -35
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/{instance/service → product}/IPolicyService.sol +38 -30
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +40 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +499 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/{components → product}/Product.sol +218 -110
- package/contracts/product/ProductService.sol +99 -0
- package/contracts/product/ProductServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +8 -1
- package/contracts/registry/IRegistry.sol +59 -26
- package/contracts/registry/IRegistryService.sol +44 -42
- package/contracts/registry/Registry.sol +234 -125
- package/contracts/registry/RegistryAdmin.sol +365 -0
- package/contracts/registry/RegistryService.sol +70 -101
- package/contracts/registry/RegistryServiceManager.sol +23 -32
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseRegistry.sol +485 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +261 -62
- package/contracts/shared/Component.sol +280 -0
- package/contracts/shared/ComponentService.sol +651 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/{components → shared}/IComponent.sol +23 -27
- package/contracts/shared/IComponentService.sol +108 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +56 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
- package/contracts/shared/INftOwnable.sol +2 -2
- package/contracts/shared/IPolicyHolder.sol +29 -10
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +15 -8
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +2 -2
- package/contracts/shared/InstanceLinkedComponent.sol +172 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +5 -18
- package/contracts/shared/PolicyHolder.sol +41 -23
- package/contracts/shared/Registerable.sol +13 -12
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/Service.sol +47 -23
- package/contracts/shared/TokenHandler.sol +27 -2
- package/contracts/staking/IStaking.sol +167 -0
- package/contracts/staking/IStakingService.sol +160 -0
- package/contracts/staking/StakeManagerLib.sol +231 -0
- package/contracts/staking/Staking.sol +516 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +50 -0
- package/contracts/staking/StakingReader.sol +183 -0
- package/contracts/staking/StakingService.sol +411 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +135 -0
- package/contracts/{types → type}/Blocknumber.sol +20 -3
- package/contracts/{types → type}/ClaimId.sol +25 -2
- package/contracts/{types → type}/Fee.sol +33 -24
- package/contracts/{types → type}/NftId.sol +14 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +271 -0
- package/contracts/{types → type}/PayoutId.sol +33 -5
- package/contracts/{types → type}/Referral.sol +2 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +1 -1
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/{types → type}/Seconds.sol +27 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +33 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +10 -1
- package/contracts/{types → type}/UFixed.sol +34 -9
- package/contracts/{types → type}/Version.sol +4 -2
- package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +36 -7
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/{shared → upgradeability}/Versionable.sol +1 -1
- package/package.json +8 -5
- 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 -1311
- 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/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 -968
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1093
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1732
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
- 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/IClaimService.sol/IClaimService.json +0 -409
- 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/IPoolService.sol/IPoolService.json +0 -428
- 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 -1021
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -824
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -657
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
- 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 -547
- 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 -521
- 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/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 -100
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -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 -100
- 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/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 -251
- 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 -299
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -522
- package/contracts/instance/base/ComponentService.sol +0 -134
- package/contracts/instance/base/KeyValueStore.sol +0 -175
- package/contracts/instance/base/Lifecycle.sol +0 -109
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -350
- package/contracts/instance/service/BundleService.sol +0 -336
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -151
- package/contracts/instance/service/DistributionService.sol +0 -467
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IBundleService.sol +0 -62
- package/contracts/instance/service/IClaimService.sol +0 -61
- package/contracts/instance/service/IPoolService.sol +0 -35
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -403
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -220
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -241
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -322
- 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/ChainId.sol +0 -38
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -157
- package/contracts/types/RoleId.sol +0 -97
- /package/contracts/{types → type}/DistributorType.sol +0 -0
- /package/contracts/{types → type}/Key32.sol +0 -0
| @@ -0,0 +1,1548 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "BasicDistribution",
         | 
| 4 | 
            +
              "sourceName": "contracts/distribution/BasicDistribution.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": "target",
         | 
| 49 | 
            +
                      "type": "address"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "AddressEmptyCode",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                {
         | 
| 56 | 
            +
                  "inputs": [
         | 
| 57 | 
            +
                    {
         | 
| 58 | 
            +
                      "internalType": "address",
         | 
| 59 | 
            +
                      "name": "account",
         | 
| 60 | 
            +
                      "type": "address"
         | 
| 61 | 
            +
                    }
         | 
| 62 | 
            +
                  ],
         | 
| 63 | 
            +
                  "name": "AddressInsufficientBalance",
         | 
| 64 | 
            +
                  "type": "error"
         | 
| 65 | 
            +
                },
         | 
| 66 | 
            +
                {
         | 
| 67 | 
            +
                  "inputs": [],
         | 
| 68 | 
            +
                  "name": "ErrorComponentNameLengthZero",
         | 
| 69 | 
            +
                  "type": "error"
         | 
| 70 | 
            +
                },
         | 
| 71 | 
            +
                {
         | 
| 72 | 
            +
                  "inputs": [
         | 
| 73 | 
            +
                    {
         | 
| 74 | 
            +
                      "internalType": "address",
         | 
| 75 | 
            +
                      "name": "caller",
         | 
| 76 | 
            +
                      "type": "address"
         | 
| 77 | 
            +
                    }
         | 
| 78 | 
            +
                  ],
         | 
| 79 | 
            +
                  "name": "ErrorComponentNotChainNft",
         | 
| 80 | 
            +
                  "type": "error"
         | 
| 81 | 
            +
                },
         | 
| 82 | 
            +
                {
         | 
| 83 | 
            +
                  "inputs": [
         | 
| 84 | 
            +
                    {
         | 
| 85 | 
            +
                      "internalType": "NftId",
         | 
| 86 | 
            +
                      "name": "instanceNftId",
         | 
| 87 | 
            +
                      "type": "uint96"
         | 
| 88 | 
            +
                    }
         | 
| 89 | 
            +
                  ],
         | 
| 90 | 
            +
                  "name": "ErrorComponentNotInstance",
         | 
| 91 | 
            +
                  "type": "error"
         | 
| 92 | 
            +
                },
         | 
| 93 | 
            +
                {
         | 
| 94 | 
            +
                  "inputs": [
         | 
| 95 | 
            +
                    {
         | 
| 96 | 
            +
                      "internalType": "address",
         | 
| 97 | 
            +
                      "name": "caller",
         | 
| 98 | 
            +
                      "type": "address"
         | 
| 99 | 
            +
                    }
         | 
| 100 | 
            +
                  ],
         | 
| 101 | 
            +
                  "name": "ErrorComponentNotProductService",
         | 
| 102 | 
            +
                  "type": "error"
         | 
| 103 | 
            +
                },
         | 
| 104 | 
            +
                {
         | 
| 105 | 
            +
                  "inputs": [],
         | 
| 106 | 
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         | 
| 107 | 
            +
                  "type": "error"
         | 
| 108 | 
            +
                },
         | 
| 109 | 
            +
                {
         | 
| 110 | 
            +
                  "inputs": [],
         | 
| 111 | 
            +
                  "name": "ErrorComponentTokenAddressZero",
         | 
| 112 | 
            +
                  "type": "error"
         | 
| 113 | 
            +
                },
         | 
| 114 | 
            +
                {
         | 
| 115 | 
            +
                  "inputs": [],
         | 
| 116 | 
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         | 
| 117 | 
            +
                  "type": "error"
         | 
| 118 | 
            +
                },
         | 
| 119 | 
            +
                {
         | 
| 120 | 
            +
                  "inputs": [],
         | 
| 121 | 
            +
                  "name": "ErrorComponentWalletAddressZero",
         | 
| 122 | 
            +
                  "type": "error"
         | 
| 123 | 
            +
                },
         | 
| 124 | 
            +
                {
         | 
| 125 | 
            +
                  "inputs": [
         | 
| 126 | 
            +
                    {
         | 
| 127 | 
            +
                      "internalType": "address",
         | 
| 128 | 
            +
                      "name": "oldWallet",
         | 
| 129 | 
            +
                      "type": "address"
         | 
| 130 | 
            +
                    },
         | 
| 131 | 
            +
                    {
         | 
| 132 | 
            +
                      "internalType": "address",
         | 
| 133 | 
            +
                      "name": "newWallet",
         | 
| 134 | 
            +
                      "type": "address"
         | 
| 135 | 
            +
                    },
         | 
| 136 | 
            +
                    {
         | 
| 137 | 
            +
                      "internalType": "uint256",
         | 
| 138 | 
            +
                      "name": "allowance",
         | 
| 139 | 
            +
                      "type": "uint256"
         | 
| 140 | 
            +
                    },
         | 
| 141 | 
            +
                    {
         | 
| 142 | 
            +
                      "internalType": "uint256",
         | 
| 143 | 
            +
                      "name": "balance",
         | 
| 144 | 
            +
                      "type": "uint256"
         | 
| 145 | 
            +
                    }
         | 
| 146 | 
            +
                  ],
         | 
| 147 | 
            +
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         | 
| 148 | 
            +
                  "type": "error"
         | 
| 149 | 
            +
                },
         | 
| 150 | 
            +
                {
         | 
| 151 | 
            +
                  "inputs": [],
         | 
| 152 | 
            +
                  "name": "ErrorComponentWalletNotComponent",
         | 
| 153 | 
            +
                  "type": "error"
         | 
| 154 | 
            +
                },
         | 
| 155 | 
            +
                {
         | 
| 156 | 
            +
                  "inputs": [
         | 
| 157 | 
            +
                    {
         | 
| 158 | 
            +
                      "internalType": "address",
         | 
| 159 | 
            +
                      "name": "distributor",
         | 
| 160 | 
            +
                      "type": "address"
         | 
| 161 | 
            +
                    },
         | 
| 162 | 
            +
                    {
         | 
| 163 | 
            +
                      "internalType": "NftId",
         | 
| 164 | 
            +
                      "name": "distributorNftId",
         | 
| 165 | 
            +
                      "type": "uint96"
         | 
| 166 | 
            +
                    }
         | 
| 167 | 
            +
                  ],
         | 
| 168 | 
            +
                  "name": "ErrorDistributionAlreadyDistributor",
         | 
| 169 | 
            +
                  "type": "error"
         | 
| 170 | 
            +
                },
         | 
| 171 | 
            +
                {
         | 
| 172 | 
            +
                  "inputs": [
         | 
| 173 | 
            +
                    {
         | 
| 174 | 
            +
                      "internalType": "address",
         | 
| 175 | 
            +
                      "name": "distributor",
         | 
| 176 | 
            +
                      "type": "address"
         | 
| 177 | 
            +
                    }
         | 
| 178 | 
            +
                  ],
         | 
| 179 | 
            +
                  "name": "ErrorDistributionNotDistributor",
         | 
| 180 | 
            +
                  "type": "error"
         | 
| 181 | 
            +
                },
         | 
| 182 | 
            +
                {
         | 
| 183 | 
            +
                  "inputs": [
         | 
| 184 | 
            +
                    {
         | 
| 185 | 
            +
                      "internalType": "NftId",
         | 
| 186 | 
            +
                      "name": "nftId",
         | 
| 187 | 
            +
                      "type": "uint96"
         | 
| 188 | 
            +
                    }
         | 
| 189 | 
            +
                  ],
         | 
| 190 | 
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         | 
| 191 | 
            +
                  "type": "error"
         | 
| 192 | 
            +
                },
         | 
| 193 | 
            +
                {
         | 
| 194 | 
            +
                  "inputs": [
         | 
| 195 | 
            +
                    {
         | 
| 196 | 
            +
                      "internalType": "address",
         | 
| 197 | 
            +
                      "name": "contractAddress",
         | 
| 198 | 
            +
                      "type": "address"
         | 
| 199 | 
            +
                    }
         | 
| 200 | 
            +
                  ],
         | 
| 201 | 
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         | 
| 202 | 
            +
                  "type": "error"
         | 
| 203 | 
            +
                },
         | 
| 204 | 
            +
                {
         | 
| 205 | 
            +
                  "inputs": [],
         | 
| 206 | 
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 207 | 
            +
                  "type": "error"
         | 
| 208 | 
            +
                },
         | 
| 209 | 
            +
                {
         | 
| 210 | 
            +
                  "inputs": [
         | 
| 211 | 
            +
                    {
         | 
| 212 | 
            +
                      "internalType": "address",
         | 
| 213 | 
            +
                      "name": "account",
         | 
| 214 | 
            +
                      "type": "address"
         | 
| 215 | 
            +
                    }
         | 
| 216 | 
            +
                  ],
         | 
| 217 | 
            +
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 218 | 
            +
                  "type": "error"
         | 
| 219 | 
            +
                },
         | 
| 220 | 
            +
                {
         | 
| 221 | 
            +
                  "inputs": [
         | 
| 222 | 
            +
                    {
         | 
| 223 | 
            +
                      "internalType": "address",
         | 
| 224 | 
            +
                      "name": "registryAddress",
         | 
| 225 | 
            +
                      "type": "address"
         | 
| 226 | 
            +
                    }
         | 
| 227 | 
            +
                  ],
         | 
| 228 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 229 | 
            +
                  "type": "error"
         | 
| 230 | 
            +
                },
         | 
| 231 | 
            +
                {
         | 
| 232 | 
            +
                  "inputs": [],
         | 
| 233 | 
            +
                  "name": "FailedInnerCall",
         | 
| 234 | 
            +
                  "type": "error"
         | 
| 235 | 
            +
                },
         | 
| 236 | 
            +
                {
         | 
| 237 | 
            +
                  "inputs": [],
         | 
| 238 | 
            +
                  "name": "InvalidInitialization",
         | 
| 239 | 
            +
                  "type": "error"
         | 
| 240 | 
            +
                },
         | 
| 241 | 
            +
                {
         | 
| 242 | 
            +
                  "inputs": [],
         | 
| 243 | 
            +
                  "name": "NotInitializing",
         | 
| 244 | 
            +
                  "type": "error"
         | 
| 245 | 
            +
                },
         | 
| 246 | 
            +
                {
         | 
| 247 | 
            +
                  "inputs": [
         | 
| 248 | 
            +
                    {
         | 
| 249 | 
            +
                      "internalType": "address",
         | 
| 250 | 
            +
                      "name": "token",
         | 
| 251 | 
            +
                      "type": "address"
         | 
| 252 | 
            +
                    }
         | 
| 253 | 
            +
                  ],
         | 
| 254 | 
            +
                  "name": "SafeERC20FailedOperation",
         | 
| 255 | 
            +
                  "type": "error"
         | 
| 256 | 
            +
                },
         | 
| 257 | 
            +
                {
         | 
| 258 | 
            +
                  "anonymous": false,
         | 
| 259 | 
            +
                  "inputs": [
         | 
| 260 | 
            +
                    {
         | 
| 261 | 
            +
                      "indexed": false,
         | 
| 262 | 
            +
                      "internalType": "address",
         | 
| 263 | 
            +
                      "name": "authority",
         | 
| 264 | 
            +
                      "type": "address"
         | 
| 265 | 
            +
                    }
         | 
| 266 | 
            +
                  ],
         | 
| 267 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 268 | 
            +
                  "type": "event"
         | 
| 269 | 
            +
                },
         | 
| 270 | 
            +
                {
         | 
| 271 | 
            +
                  "anonymous": false,
         | 
| 272 | 
            +
                  "inputs": [
         | 
| 273 | 
            +
                    {
         | 
| 274 | 
            +
                      "indexed": false,
         | 
| 275 | 
            +
                      "internalType": "uint64",
         | 
| 276 | 
            +
                      "name": "version",
         | 
| 277 | 
            +
                      "type": "uint64"
         | 
| 278 | 
            +
                    }
         | 
| 279 | 
            +
                  ],
         | 
| 280 | 
            +
                  "name": "Initialized",
         | 
| 281 | 
            +
                  "type": "event"
         | 
| 282 | 
            +
                },
         | 
| 283 | 
            +
                {
         | 
| 284 | 
            +
                  "anonymous": false,
         | 
| 285 | 
            +
                  "inputs": [
         | 
| 286 | 
            +
                    {
         | 
| 287 | 
            +
                      "indexed": false,
         | 
| 288 | 
            +
                      "internalType": "address",
         | 
| 289 | 
            +
                      "name": "token",
         | 
| 290 | 
            +
                      "type": "address"
         | 
| 291 | 
            +
                    },
         | 
| 292 | 
            +
                    {
         | 
| 293 | 
            +
                      "indexed": false,
         | 
| 294 | 
            +
                      "internalType": "Amount",
         | 
| 295 | 
            +
                      "name": "limit",
         | 
| 296 | 
            +
                      "type": "uint96"
         | 
| 297 | 
            +
                    }
         | 
| 298 | 
            +
                  ],
         | 
| 299 | 
            +
                  "name": "LogComponentTokenHandlerApproved",
         | 
| 300 | 
            +
                  "type": "event"
         | 
| 301 | 
            +
                },
         | 
| 302 | 
            +
                {
         | 
| 303 | 
            +
                  "anonymous": false,
         | 
| 304 | 
            +
                  "inputs": [
         | 
| 305 | 
            +
                    {
         | 
| 306 | 
            +
                      "indexed": false,
         | 
| 307 | 
            +
                      "internalType": "address",
         | 
| 308 | 
            +
                      "name": "oldWallet",
         | 
| 309 | 
            +
                      "type": "address"
         | 
| 310 | 
            +
                    },
         | 
| 311 | 
            +
                    {
         | 
| 312 | 
            +
                      "indexed": false,
         | 
| 313 | 
            +
                      "internalType": "address",
         | 
| 314 | 
            +
                      "name": "newWallet",
         | 
| 315 | 
            +
                      "type": "address"
         | 
| 316 | 
            +
                    }
         | 
| 317 | 
            +
                  ],
         | 
| 318 | 
            +
                  "name": "LogComponentWalletAddressChanged",
         | 
| 319 | 
            +
                  "type": "event"
         | 
| 320 | 
            +
                },
         | 
| 321 | 
            +
                {
         | 
| 322 | 
            +
                  "anonymous": false,
         | 
| 323 | 
            +
                  "inputs": [
         | 
| 324 | 
            +
                    {
         | 
| 325 | 
            +
                      "indexed": false,
         | 
| 326 | 
            +
                      "internalType": "address",
         | 
| 327 | 
            +
                      "name": "from",
         | 
| 328 | 
            +
                      "type": "address"
         | 
| 329 | 
            +
                    },
         | 
| 330 | 
            +
                    {
         | 
| 331 | 
            +
                      "indexed": false,
         | 
| 332 | 
            +
                      "internalType": "address",
         | 
| 333 | 
            +
                      "name": "to",
         | 
| 334 | 
            +
                      "type": "address"
         | 
| 335 | 
            +
                    },
         | 
| 336 | 
            +
                    {
         | 
| 337 | 
            +
                      "indexed": false,
         | 
| 338 | 
            +
                      "internalType": "uint256",
         | 
| 339 | 
            +
                      "name": "amount",
         | 
| 340 | 
            +
                      "type": "uint256"
         | 
| 341 | 
            +
                    }
         | 
| 342 | 
            +
                  ],
         | 
| 343 | 
            +
                  "name": "LogComponentWalletTokensTransferred",
         | 
| 344 | 
            +
                  "type": "event"
         | 
| 345 | 
            +
                },
         | 
| 346 | 
            +
                {
         | 
| 347 | 
            +
                  "anonymous": false,
         | 
| 348 | 
            +
                  "inputs": [
         | 
| 349 | 
            +
                    {
         | 
| 350 | 
            +
                      "indexed": false,
         | 
| 351 | 
            +
                      "internalType": "address",
         | 
| 352 | 
            +
                      "name": "to",
         | 
| 353 | 
            +
                      "type": "address"
         | 
| 354 | 
            +
                    },
         | 
| 355 | 
            +
                    {
         | 
| 356 | 
            +
                      "indexed": false,
         | 
| 357 | 
            +
                      "internalType": "address",
         | 
| 358 | 
            +
                      "name": "caller",
         | 
| 359 | 
            +
                      "type": "address"
         | 
| 360 | 
            +
                    }
         | 
| 361 | 
            +
                  ],
         | 
| 362 | 
            +
                  "name": "LogDistributorUpdated",
         | 
| 363 | 
            +
                  "type": "event"
         | 
| 364 | 
            +
                },
         | 
| 365 | 
            +
                {
         | 
| 366 | 
            +
                  "inputs": [],
         | 
| 367 | 
            +
                  "name": "COMPONENT_LOCATION_V1",
         | 
| 368 | 
            +
                  "outputs": [
         | 
| 369 | 
            +
                    {
         | 
| 370 | 
            +
                      "internalType": "bytes32",
         | 
| 371 | 
            +
                      "name": "",
         | 
| 372 | 
            +
                      "type": "bytes32"
         | 
| 373 | 
            +
                    }
         | 
| 374 | 
            +
                  ],
         | 
| 375 | 
            +
                  "stateMutability": "view",
         | 
| 376 | 
            +
                  "type": "function"
         | 
| 377 | 
            +
                },
         | 
| 378 | 
            +
                {
         | 
| 379 | 
            +
                  "inputs": [],
         | 
| 380 | 
            +
                  "name": "DISTRIBUTION_STORAGE_LOCATION_V1",
         | 
| 381 | 
            +
                  "outputs": [
         | 
| 382 | 
            +
                    {
         | 
| 383 | 
            +
                      "internalType": "bytes32",
         | 
| 384 | 
            +
                      "name": "",
         | 
| 385 | 
            +
                      "type": "bytes32"
         | 
| 386 | 
            +
                    }
         | 
| 387 | 
            +
                  ],
         | 
| 388 | 
            +
                  "stateMutability": "view",
         | 
| 389 | 
            +
                  "type": "function"
         | 
| 390 | 
            +
                },
         | 
| 391 | 
            +
                {
         | 
| 392 | 
            +
                  "inputs": [],
         | 
| 393 | 
            +
                  "name": "INSTANCE_LINKED_COMPONENT_LOCATION_V1",
         | 
| 394 | 
            +
                  "outputs": [
         | 
| 395 | 
            +
                    {
         | 
| 396 | 
            +
                      "internalType": "bytes32",
         | 
| 397 | 
            +
                      "name": "",
         | 
| 398 | 
            +
                      "type": "bytes32"
         | 
| 399 | 
            +
                    }
         | 
| 400 | 
            +
                  ],
         | 
| 401 | 
            +
                  "stateMutability": "view",
         | 
| 402 | 
            +
                  "type": "function"
         | 
| 403 | 
            +
                },
         | 
| 404 | 
            +
                {
         | 
| 405 | 
            +
                  "inputs": [],
         | 
| 406 | 
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         | 
| 407 | 
            +
                  "outputs": [
         | 
| 408 | 
            +
                    {
         | 
| 409 | 
            +
                      "internalType": "bytes32",
         | 
| 410 | 
            +
                      "name": "",
         | 
| 411 | 
            +
                      "type": "bytes32"
         | 
| 412 | 
            +
                    }
         | 
| 413 | 
            +
                  ],
         | 
| 414 | 
            +
                  "stateMutability": "view",
         | 
| 415 | 
            +
                  "type": "function"
         | 
| 416 | 
            +
                },
         | 
| 417 | 
            +
                {
         | 
| 418 | 
            +
                  "inputs": [],
         | 
| 419 | 
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         | 
| 420 | 
            +
                  "outputs": [
         | 
| 421 | 
            +
                    {
         | 
| 422 | 
            +
                      "internalType": "bytes32",
         | 
| 423 | 
            +
                      "name": "",
         | 
| 424 | 
            +
                      "type": "bytes32"
         | 
| 425 | 
            +
                    }
         | 
| 426 | 
            +
                  ],
         | 
| 427 | 
            +
                  "stateMutability": "view",
         | 
| 428 | 
            +
                  "type": "function"
         | 
| 429 | 
            +
                },
         | 
| 430 | 
            +
                {
         | 
| 431 | 
            +
                  "inputs": [
         | 
| 432 | 
            +
                    {
         | 
| 433 | 
            +
                      "internalType": "address",
         | 
| 434 | 
            +
                      "name": "token",
         | 
| 435 | 
            +
                      "type": "address"
         | 
| 436 | 
            +
                    },
         | 
| 437 | 
            +
                    {
         | 
| 438 | 
            +
                      "internalType": "Amount",
         | 
| 439 | 
            +
                      "name": "spendingLimitAmount",
         | 
| 440 | 
            +
                      "type": "uint96"
         | 
| 441 | 
            +
                    }
         | 
| 442 | 
            +
                  ],
         | 
| 443 | 
            +
                  "name": "approveTokenHandler",
         | 
| 444 | 
            +
                  "outputs": [],
         | 
| 445 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 446 | 
            +
                  "type": "function"
         | 
| 447 | 
            +
                },
         | 
| 448 | 
            +
                {
         | 
| 449 | 
            +
                  "inputs": [
         | 
| 450 | 
            +
                    {
         | 
| 451 | 
            +
                      "internalType": "Amount",
         | 
| 452 | 
            +
                      "name": "spendingLimitAmount",
         | 
| 453 | 
            +
                      "type": "uint96"
         | 
| 454 | 
            +
                    }
         | 
| 455 | 
            +
                  ],
         | 
| 456 | 
            +
                  "name": "approveTokenHandler",
         | 
| 457 | 
            +
                  "outputs": [],
         | 
| 458 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 459 | 
            +
                  "type": "function"
         | 
| 460 | 
            +
                },
         | 
| 461 | 
            +
                {
         | 
| 462 | 
            +
                  "inputs": [],
         | 
| 463 | 
            +
                  "name": "authority",
         | 
| 464 | 
            +
                  "outputs": [
         | 
| 465 | 
            +
                    {
         | 
| 466 | 
            +
                      "internalType": "address",
         | 
| 467 | 
            +
                      "name": "",
         | 
| 468 | 
            +
                      "type": "address"
         | 
| 469 | 
            +
                    }
         | 
| 470 | 
            +
                  ],
         | 
| 471 | 
            +
                  "stateMutability": "view",
         | 
| 472 | 
            +
                  "type": "function"
         | 
| 473 | 
            +
                },
         | 
| 474 | 
            +
                {
         | 
| 475 | 
            +
                  "inputs": [
         | 
| 476 | 
            +
                    {
         | 
| 477 | 
            +
                      "internalType": "ReferralId",
         | 
| 478 | 
            +
                      "name": "referralId",
         | 
| 479 | 
            +
                      "type": "bytes8"
         | 
| 480 | 
            +
                    },
         | 
| 481 | 
            +
                    {
         | 
| 482 | 
            +
                      "internalType": "uint256",
         | 
| 483 | 
            +
                      "name": "netPremiumAmount",
         | 
| 484 | 
            +
                      "type": "uint256"
         | 
| 485 | 
            +
                    }
         | 
| 486 | 
            +
                  ],
         | 
| 487 | 
            +
                  "name": "calculateRenewalFeeAmount",
         | 
| 488 | 
            +
                  "outputs": [
         | 
| 489 | 
            +
                    {
         | 
| 490 | 
            +
                      "internalType": "uint256",
         | 
| 491 | 
            +
                      "name": "feeAmount",
         | 
| 492 | 
            +
                      "type": "uint256"
         | 
| 493 | 
            +
                    }
         | 
| 494 | 
            +
                  ],
         | 
| 495 | 
            +
                  "stateMutability": "view",
         | 
| 496 | 
            +
                  "type": "function"
         | 
| 497 | 
            +
                },
         | 
| 498 | 
            +
                {
         | 
| 499 | 
            +
                  "inputs": [
         | 
| 500 | 
            +
                    {
         | 
| 501 | 
            +
                      "internalType": "address",
         | 
| 502 | 
            +
                      "name": "distributor",
         | 
| 503 | 
            +
                      "type": "address"
         | 
| 504 | 
            +
                    },
         | 
| 505 | 
            +
                    {
         | 
| 506 | 
            +
                      "internalType": "DistributorType",
         | 
| 507 | 
            +
                      "name": "distributorType",
         | 
| 508 | 
            +
                      "type": "bytes8"
         | 
| 509 | 
            +
                    },
         | 
| 510 | 
            +
                    {
         | 
| 511 | 
            +
                      "internalType": "bytes",
         | 
| 512 | 
            +
                      "name": "data",
         | 
| 513 | 
            +
                      "type": "bytes"
         | 
| 514 | 
            +
                    }
         | 
| 515 | 
            +
                  ],
         | 
| 516 | 
            +
                  "name": "createDistributor",
         | 
| 517 | 
            +
                  "outputs": [
         | 
| 518 | 
            +
                    {
         | 
| 519 | 
            +
                      "internalType": "NftId",
         | 
| 520 | 
            +
                      "name": "distributorNftId",
         | 
| 521 | 
            +
                      "type": "uint96"
         | 
| 522 | 
            +
                    }
         | 
| 523 | 
            +
                  ],
         | 
| 524 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 525 | 
            +
                  "type": "function"
         | 
| 526 | 
            +
                },
         | 
| 527 | 
            +
                {
         | 
| 528 | 
            +
                  "inputs": [
         | 
| 529 | 
            +
                    {
         | 
| 530 | 
            +
                      "internalType": "string",
         | 
| 531 | 
            +
                      "name": "name",
         | 
| 532 | 
            +
                      "type": "string"
         | 
| 533 | 
            +
                    },
         | 
| 534 | 
            +
                    {
         | 
| 535 | 
            +
                      "internalType": "UFixed",
         | 
| 536 | 
            +
                      "name": "minDiscountPercentage",
         | 
| 537 | 
            +
                      "type": "uint256"
         | 
| 538 | 
            +
                    },
         | 
| 539 | 
            +
                    {
         | 
| 540 | 
            +
                      "internalType": "UFixed",
         | 
| 541 | 
            +
                      "name": "maxDiscountPercentage",
         | 
| 542 | 
            +
                      "type": "uint256"
         | 
| 543 | 
            +
                    },
         | 
| 544 | 
            +
                    {
         | 
| 545 | 
            +
                      "internalType": "UFixed",
         | 
| 546 | 
            +
                      "name": "commissionPercentage",
         | 
| 547 | 
            +
                      "type": "uint256"
         | 
| 548 | 
            +
                    },
         | 
| 549 | 
            +
                    {
         | 
| 550 | 
            +
                      "internalType": "uint32",
         | 
| 551 | 
            +
                      "name": "maxReferralCount",
         | 
| 552 | 
            +
                      "type": "uint32"
         | 
| 553 | 
            +
                    },
         | 
| 554 | 
            +
                    {
         | 
| 555 | 
            +
                      "internalType": "uint32",
         | 
| 556 | 
            +
                      "name": "maxReferralLifetime",
         | 
| 557 | 
            +
                      "type": "uint32"
         | 
| 558 | 
            +
                    },
         | 
| 559 | 
            +
                    {
         | 
| 560 | 
            +
                      "internalType": "bool",
         | 
| 561 | 
            +
                      "name": "allowSelfReferrals",
         | 
| 562 | 
            +
                      "type": "bool"
         | 
| 563 | 
            +
                    },
         | 
| 564 | 
            +
                    {
         | 
| 565 | 
            +
                      "internalType": "bool",
         | 
| 566 | 
            +
                      "name": "allowRenewals",
         | 
| 567 | 
            +
                      "type": "bool"
         | 
| 568 | 
            +
                    },
         | 
| 569 | 
            +
                    {
         | 
| 570 | 
            +
                      "internalType": "bytes",
         | 
| 571 | 
            +
                      "name": "data",
         | 
| 572 | 
            +
                      "type": "bytes"
         | 
| 573 | 
            +
                    }
         | 
| 574 | 
            +
                  ],
         | 
| 575 | 
            +
                  "name": "createDistributorType",
         | 
| 576 | 
            +
                  "outputs": [
         | 
| 577 | 
            +
                    {
         | 
| 578 | 
            +
                      "internalType": "DistributorType",
         | 
| 579 | 
            +
                      "name": "distributorType",
         | 
| 580 | 
            +
                      "type": "bytes8"
         | 
| 581 | 
            +
                    }
         | 
| 582 | 
            +
                  ],
         | 
| 583 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 584 | 
            +
                  "type": "function"
         | 
| 585 | 
            +
                },
         | 
| 586 | 
            +
                {
         | 
| 587 | 
            +
                  "inputs": [
         | 
| 588 | 
            +
                    {
         | 
| 589 | 
            +
                      "internalType": "string",
         | 
| 590 | 
            +
                      "name": "code",
         | 
| 591 | 
            +
                      "type": "string"
         | 
| 592 | 
            +
                    },
         | 
| 593 | 
            +
                    {
         | 
| 594 | 
            +
                      "internalType": "UFixed",
         | 
| 595 | 
            +
                      "name": "discountPercentage",
         | 
| 596 | 
            +
                      "type": "uint256"
         | 
| 597 | 
            +
                    },
         | 
| 598 | 
            +
                    {
         | 
| 599 | 
            +
                      "internalType": "uint32",
         | 
| 600 | 
            +
                      "name": "maxReferrals",
         | 
| 601 | 
            +
                      "type": "uint32"
         | 
| 602 | 
            +
                    },
         | 
| 603 | 
            +
                    {
         | 
| 604 | 
            +
                      "internalType": "Timestamp",
         | 
| 605 | 
            +
                      "name": "expiryAt",
         | 
| 606 | 
            +
                      "type": "uint40"
         | 
| 607 | 
            +
                    },
         | 
| 608 | 
            +
                    {
         | 
| 609 | 
            +
                      "internalType": "bytes",
         | 
| 610 | 
            +
                      "name": "data",
         | 
| 611 | 
            +
                      "type": "bytes"
         | 
| 612 | 
            +
                    }
         | 
| 613 | 
            +
                  ],
         | 
| 614 | 
            +
                  "name": "createReferral",
         | 
| 615 | 
            +
                  "outputs": [
         | 
| 616 | 
            +
                    {
         | 
| 617 | 
            +
                      "internalType": "ReferralId",
         | 
| 618 | 
            +
                      "name": "referralId",
         | 
| 619 | 
            +
                      "type": "bytes8"
         | 
| 620 | 
            +
                    }
         | 
| 621 | 
            +
                  ],
         | 
| 622 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 623 | 
            +
                  "type": "function"
         | 
| 624 | 
            +
                },
         | 
| 625 | 
            +
                {
         | 
| 626 | 
            +
                  "inputs": [],
         | 
| 627 | 
            +
                  "name": "getAuthorization",
         | 
| 628 | 
            +
                  "outputs": [
         | 
| 629 | 
            +
                    {
         | 
| 630 | 
            +
                      "internalType": "contract IAuthorization",
         | 
| 631 | 
            +
                      "name": "authorization",
         | 
| 632 | 
            +
                      "type": "address"
         | 
| 633 | 
            +
                    }
         | 
| 634 | 
            +
                  ],
         | 
| 635 | 
            +
                  "stateMutability": "view",
         | 
| 636 | 
            +
                  "type": "function"
         | 
| 637 | 
            +
                },
         | 
| 638 | 
            +
                {
         | 
| 639 | 
            +
                  "inputs": [],
         | 
| 640 | 
            +
                  "name": "getComponentInfo",
         | 
| 641 | 
            +
                  "outputs": [
         | 
| 642 | 
            +
                    {
         | 
| 643 | 
            +
                      "components": [
         | 
| 644 | 
            +
                        {
         | 
| 645 | 
            +
                          "internalType": "string",
         | 
| 646 | 
            +
                          "name": "name",
         | 
| 647 | 
            +
                          "type": "string"
         | 
| 648 | 
            +
                        },
         | 
| 649 | 
            +
                        {
         | 
| 650 | 
            +
                          "internalType": "NftId",
         | 
| 651 | 
            +
                          "name": "productNftId",
         | 
| 652 | 
            +
                          "type": "uint96"
         | 
| 653 | 
            +
                        },
         | 
| 654 | 
            +
                        {
         | 
| 655 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 656 | 
            +
                          "name": "token",
         | 
| 657 | 
            +
                          "type": "address"
         | 
| 658 | 
            +
                        },
         | 
| 659 | 
            +
                        {
         | 
| 660 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 661 | 
            +
                          "name": "tokenHandler",
         | 
| 662 | 
            +
                          "type": "address"
         | 
| 663 | 
            +
                        },
         | 
| 664 | 
            +
                        {
         | 
| 665 | 
            +
                          "internalType": "address",
         | 
| 666 | 
            +
                          "name": "wallet",
         | 
| 667 | 
            +
                          "type": "address"
         | 
| 668 | 
            +
                        },
         | 
| 669 | 
            +
                        {
         | 
| 670 | 
            +
                          "internalType": "bytes",
         | 
| 671 | 
            +
                          "name": "data",
         | 
| 672 | 
            +
                          "type": "bytes"
         | 
| 673 | 
            +
                        }
         | 
| 674 | 
            +
                      ],
         | 
| 675 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 676 | 
            +
                      "name": "info",
         | 
| 677 | 
            +
                      "type": "tuple"
         | 
| 678 | 
            +
                    }
         | 
| 679 | 
            +
                  ],
         | 
| 680 | 
            +
                  "stateMutability": "view",
         | 
| 681 | 
            +
                  "type": "function"
         | 
| 682 | 
            +
                },
         | 
| 683 | 
            +
                {
         | 
| 684 | 
            +
                  "inputs": [
         | 
| 685 | 
            +
                    {
         | 
| 686 | 
            +
                      "internalType": "string",
         | 
| 687 | 
            +
                      "name": "referralCode",
         | 
| 688 | 
            +
                      "type": "string"
         | 
| 689 | 
            +
                    }
         | 
| 690 | 
            +
                  ],
         | 
| 691 | 
            +
                  "name": "getDiscountPercentage",
         | 
| 692 | 
            +
                  "outputs": [
         | 
| 693 | 
            +
                    {
         | 
| 694 | 
            +
                      "internalType": "UFixed",
         | 
| 695 | 
            +
                      "name": "discountPercentage",
         | 
| 696 | 
            +
                      "type": "uint256"
         | 
| 697 | 
            +
                    },
         | 
| 698 | 
            +
                    {
         | 
| 699 | 
            +
                      "internalType": "ReferralStatus",
         | 
| 700 | 
            +
                      "name": "status",
         | 
| 701 | 
            +
                      "type": "uint8"
         | 
| 702 | 
            +
                    }
         | 
| 703 | 
            +
                  ],
         | 
| 704 | 
            +
                  "stateMutability": "view",
         | 
| 705 | 
            +
                  "type": "function"
         | 
| 706 | 
            +
                },
         | 
| 707 | 
            +
                {
         | 
| 708 | 
            +
                  "inputs": [
         | 
| 709 | 
            +
                    {
         | 
| 710 | 
            +
                      "internalType": "address",
         | 
| 711 | 
            +
                      "name": "distributor",
         | 
| 712 | 
            +
                      "type": "address"
         | 
| 713 | 
            +
                    }
         | 
| 714 | 
            +
                  ],
         | 
| 715 | 
            +
                  "name": "getDistributorNftId",
         | 
| 716 | 
            +
                  "outputs": [
         | 
| 717 | 
            +
                    {
         | 
| 718 | 
            +
                      "internalType": "NftId",
         | 
| 719 | 
            +
                      "name": "distributorNftId",
         | 
| 720 | 
            +
                      "type": "uint96"
         | 
| 721 | 
            +
                    }
         | 
| 722 | 
            +
                  ],
         | 
| 723 | 
            +
                  "stateMutability": "view",
         | 
| 724 | 
            +
                  "type": "function"
         | 
| 725 | 
            +
                },
         | 
| 726 | 
            +
                {
         | 
| 727 | 
            +
                  "inputs": [],
         | 
| 728 | 
            +
                  "name": "getInitialComponentInfo",
         | 
| 729 | 
            +
                  "outputs": [
         | 
| 730 | 
            +
                    {
         | 
| 731 | 
            +
                      "components": [
         | 
| 732 | 
            +
                        {
         | 
| 733 | 
            +
                          "internalType": "string",
         | 
| 734 | 
            +
                          "name": "name",
         | 
| 735 | 
            +
                          "type": "string"
         | 
| 736 | 
            +
                        },
         | 
| 737 | 
            +
                        {
         | 
| 738 | 
            +
                          "internalType": "NftId",
         | 
| 739 | 
            +
                          "name": "productNftId",
         | 
| 740 | 
            +
                          "type": "uint96"
         | 
| 741 | 
            +
                        },
         | 
| 742 | 
            +
                        {
         | 
| 743 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 744 | 
            +
                          "name": "token",
         | 
| 745 | 
            +
                          "type": "address"
         | 
| 746 | 
            +
                        },
         | 
| 747 | 
            +
                        {
         | 
| 748 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 749 | 
            +
                          "name": "tokenHandler",
         | 
| 750 | 
            +
                          "type": "address"
         | 
| 751 | 
            +
                        },
         | 
| 752 | 
            +
                        {
         | 
| 753 | 
            +
                          "internalType": "address",
         | 
| 754 | 
            +
                          "name": "wallet",
         | 
| 755 | 
            +
                          "type": "address"
         | 
| 756 | 
            +
                        },
         | 
| 757 | 
            +
                        {
         | 
| 758 | 
            +
                          "internalType": "bytes",
         | 
| 759 | 
            +
                          "name": "data",
         | 
| 760 | 
            +
                          "type": "bytes"
         | 
| 761 | 
            +
                        }
         | 
| 762 | 
            +
                      ],
         | 
| 763 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 764 | 
            +
                      "name": "info",
         | 
| 765 | 
            +
                      "type": "tuple"
         | 
| 766 | 
            +
                    }
         | 
| 767 | 
            +
                  ],
         | 
| 768 | 
            +
                  "stateMutability": "view",
         | 
| 769 | 
            +
                  "type": "function"
         | 
| 770 | 
            +
                },
         | 
| 771 | 
            +
                {
         | 
| 772 | 
            +
                  "inputs": [],
         | 
| 773 | 
            +
                  "name": "getInitialInfo",
         | 
| 774 | 
            +
                  "outputs": [
         | 
| 775 | 
            +
                    {
         | 
| 776 | 
            +
                      "components": [
         | 
| 777 | 
            +
                        {
         | 
| 778 | 
            +
                          "internalType": "NftId",
         | 
| 779 | 
            +
                          "name": "nftId",
         | 
| 780 | 
            +
                          "type": "uint96"
         | 
| 781 | 
            +
                        },
         | 
| 782 | 
            +
                        {
         | 
| 783 | 
            +
                          "internalType": "NftId",
         | 
| 784 | 
            +
                          "name": "parentNftId",
         | 
| 785 | 
            +
                          "type": "uint96"
         | 
| 786 | 
            +
                        },
         | 
| 787 | 
            +
                        {
         | 
| 788 | 
            +
                          "internalType": "ObjectType",
         | 
| 789 | 
            +
                          "name": "objectType",
         | 
| 790 | 
            +
                          "type": "uint8"
         | 
| 791 | 
            +
                        },
         | 
| 792 | 
            +
                        {
         | 
| 793 | 
            +
                          "internalType": "bool",
         | 
| 794 | 
            +
                          "name": "isInterceptor",
         | 
| 795 | 
            +
                          "type": "bool"
         | 
| 796 | 
            +
                        },
         | 
| 797 | 
            +
                        {
         | 
| 798 | 
            +
                          "internalType": "address",
         | 
| 799 | 
            +
                          "name": "objectAddress",
         | 
| 800 | 
            +
                          "type": "address"
         | 
| 801 | 
            +
                        },
         | 
| 802 | 
            +
                        {
         | 
| 803 | 
            +
                          "internalType": "address",
         | 
| 804 | 
            +
                          "name": "initialOwner",
         | 
| 805 | 
            +
                          "type": "address"
         | 
| 806 | 
            +
                        },
         | 
| 807 | 
            +
                        {
         | 
| 808 | 
            +
                          "internalType": "bytes",
         | 
| 809 | 
            +
                          "name": "data",
         | 
| 810 | 
            +
                          "type": "bytes"
         | 
| 811 | 
            +
                        }
         | 
| 812 | 
            +
                      ],
         | 
| 813 | 
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 814 | 
            +
                      "name": "info",
         | 
| 815 | 
            +
                      "type": "tuple"
         | 
| 816 | 
            +
                    }
         | 
| 817 | 
            +
                  ],
         | 
| 818 | 
            +
                  "stateMutability": "view",
         | 
| 819 | 
            +
                  "type": "function"
         | 
| 820 | 
            +
                },
         | 
| 821 | 
            +
                {
         | 
| 822 | 
            +
                  "inputs": [],
         | 
| 823 | 
            +
                  "name": "getInstance",
         | 
| 824 | 
            +
                  "outputs": [
         | 
| 825 | 
            +
                    {
         | 
| 826 | 
            +
                      "internalType": "contract IInstance",
         | 
| 827 | 
            +
                      "name": "instance",
         | 
| 828 | 
            +
                      "type": "address"
         | 
| 829 | 
            +
                    }
         | 
| 830 | 
            +
                  ],
         | 
| 831 | 
            +
                  "stateMutability": "view",
         | 
| 832 | 
            +
                  "type": "function"
         | 
| 833 | 
            +
                },
         | 
| 834 | 
            +
                {
         | 
| 835 | 
            +
                  "inputs": [],
         | 
| 836 | 
            +
                  "name": "getName",
         | 
| 837 | 
            +
                  "outputs": [
         | 
| 838 | 
            +
                    {
         | 
| 839 | 
            +
                      "internalType": "string",
         | 
| 840 | 
            +
                      "name": "name",
         | 
| 841 | 
            +
                      "type": "string"
         | 
| 842 | 
            +
                    }
         | 
| 843 | 
            +
                  ],
         | 
| 844 | 
            +
                  "stateMutability": "view",
         | 
| 845 | 
            +
                  "type": "function"
         | 
| 846 | 
            +
                },
         | 
| 847 | 
            +
                {
         | 
| 848 | 
            +
                  "inputs": [],
         | 
| 849 | 
            +
                  "name": "getNftId",
         | 
| 850 | 
            +
                  "outputs": [
         | 
| 851 | 
            +
                    {
         | 
| 852 | 
            +
                      "internalType": "NftId",
         | 
| 853 | 
            +
                      "name": "",
         | 
| 854 | 
            +
                      "type": "uint96"
         | 
| 855 | 
            +
                    }
         | 
| 856 | 
            +
                  ],
         | 
| 857 | 
            +
                  "stateMutability": "view",
         | 
| 858 | 
            +
                  "type": "function"
         | 
| 859 | 
            +
                },
         | 
| 860 | 
            +
                {
         | 
| 861 | 
            +
                  "inputs": [],
         | 
| 862 | 
            +
                  "name": "getOwner",
         | 
| 863 | 
            +
                  "outputs": [
         | 
| 864 | 
            +
                    {
         | 
| 865 | 
            +
                      "internalType": "address",
         | 
| 866 | 
            +
                      "name": "",
         | 
| 867 | 
            +
                      "type": "address"
         | 
| 868 | 
            +
                    }
         | 
| 869 | 
            +
                  ],
         | 
| 870 | 
            +
                  "stateMutability": "view",
         | 
| 871 | 
            +
                  "type": "function"
         | 
| 872 | 
            +
                },
         | 
| 873 | 
            +
                {
         | 
| 874 | 
            +
                  "inputs": [],
         | 
| 875 | 
            +
                  "name": "getProductNftId",
         | 
| 876 | 
            +
                  "outputs": [
         | 
| 877 | 
            +
                    {
         | 
| 878 | 
            +
                      "internalType": "NftId",
         | 
| 879 | 
            +
                      "name": "productNftId",
         | 
| 880 | 
            +
                      "type": "uint96"
         | 
| 881 | 
            +
                    }
         | 
| 882 | 
            +
                  ],
         | 
| 883 | 
            +
                  "stateMutability": "view",
         | 
| 884 | 
            +
                  "type": "function"
         | 
| 885 | 
            +
                },
         | 
| 886 | 
            +
                {
         | 
| 887 | 
            +
                  "inputs": [
         | 
| 888 | 
            +
                    {
         | 
| 889 | 
            +
                      "internalType": "string",
         | 
| 890 | 
            +
                      "name": "referralCode",
         | 
| 891 | 
            +
                      "type": "string"
         | 
| 892 | 
            +
                    }
         | 
| 893 | 
            +
                  ],
         | 
| 894 | 
            +
                  "name": "getReferralId",
         | 
| 895 | 
            +
                  "outputs": [
         | 
| 896 | 
            +
                    {
         | 
| 897 | 
            +
                      "internalType": "ReferralId",
         | 
| 898 | 
            +
                      "name": "referralId",
         | 
| 899 | 
            +
                      "type": "bytes8"
         | 
| 900 | 
            +
                    }
         | 
| 901 | 
            +
                  ],
         | 
| 902 | 
            +
                  "stateMutability": "view",
         | 
| 903 | 
            +
                  "type": "function"
         | 
| 904 | 
            +
                },
         | 
| 905 | 
            +
                {
         | 
| 906 | 
            +
                  "inputs": [],
         | 
| 907 | 
            +
                  "name": "getRegistry",
         | 
| 908 | 
            +
                  "outputs": [
         | 
| 909 | 
            +
                    {
         | 
| 910 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 911 | 
            +
                      "name": "",
         | 
| 912 | 
            +
                      "type": "address"
         | 
| 913 | 
            +
                    }
         | 
| 914 | 
            +
                  ],
         | 
| 915 | 
            +
                  "stateMutability": "view",
         | 
| 916 | 
            +
                  "type": "function"
         | 
| 917 | 
            +
                },
         | 
| 918 | 
            +
                {
         | 
| 919 | 
            +
                  "inputs": [],
         | 
| 920 | 
            +
                  "name": "getToken",
         | 
| 921 | 
            +
                  "outputs": [
         | 
| 922 | 
            +
                    {
         | 
| 923 | 
            +
                      "internalType": "contract IERC20Metadata",
         | 
| 924 | 
            +
                      "name": "token",
         | 
| 925 | 
            +
                      "type": "address"
         | 
| 926 | 
            +
                    }
         | 
| 927 | 
            +
                  ],
         | 
| 928 | 
            +
                  "stateMutability": "view",
         | 
| 929 | 
            +
                  "type": "function"
         | 
| 930 | 
            +
                },
         | 
| 931 | 
            +
                {
         | 
| 932 | 
            +
                  "inputs": [],
         | 
| 933 | 
            +
                  "name": "getTokenHandler",
         | 
| 934 | 
            +
                  "outputs": [
         | 
| 935 | 
            +
                    {
         | 
| 936 | 
            +
                      "internalType": "contract TokenHandler",
         | 
| 937 | 
            +
                      "name": "tokenHandler",
         | 
| 938 | 
            +
                      "type": "address"
         | 
| 939 | 
            +
                    }
         | 
| 940 | 
            +
                  ],
         | 
| 941 | 
            +
                  "stateMutability": "view",
         | 
| 942 | 
            +
                  "type": "function"
         | 
| 943 | 
            +
                },
         | 
| 944 | 
            +
                {
         | 
| 945 | 
            +
                  "inputs": [],
         | 
| 946 | 
            +
                  "name": "getWallet",
         | 
| 947 | 
            +
                  "outputs": [
         | 
| 948 | 
            +
                    {
         | 
| 949 | 
            +
                      "internalType": "address",
         | 
| 950 | 
            +
                      "name": "walletAddress",
         | 
| 951 | 
            +
                      "type": "address"
         | 
| 952 | 
            +
                    }
         | 
| 953 | 
            +
                  ],
         | 
| 954 | 
            +
                  "stateMutability": "view",
         | 
| 955 | 
            +
                  "type": "function"
         | 
| 956 | 
            +
                },
         | 
| 957 | 
            +
                {
         | 
| 958 | 
            +
                  "inputs": [
         | 
| 959 | 
            +
                    {
         | 
| 960 | 
            +
                      "internalType": "address",
         | 
| 961 | 
            +
                      "name": "authority",
         | 
| 962 | 
            +
                      "type": "address"
         | 
| 963 | 
            +
                    },
         | 
| 964 | 
            +
                    {
         | 
| 965 | 
            +
                      "internalType": "address",
         | 
| 966 | 
            +
                      "name": "registry",
         | 
| 967 | 
            +
                      "type": "address"
         | 
| 968 | 
            +
                    },
         | 
| 969 | 
            +
                    {
         | 
| 970 | 
            +
                      "internalType": "NftId",
         | 
| 971 | 
            +
                      "name": "parentNftId",
         | 
| 972 | 
            +
                      "type": "uint96"
         | 
| 973 | 
            +
                    },
         | 
| 974 | 
            +
                    {
         | 
| 975 | 
            +
                      "internalType": "string",
         | 
| 976 | 
            +
                      "name": "name",
         | 
| 977 | 
            +
                      "type": "string"
         | 
| 978 | 
            +
                    },
         | 
| 979 | 
            +
                    {
         | 
| 980 | 
            +
                      "internalType": "address",
         | 
| 981 | 
            +
                      "name": "token",
         | 
| 982 | 
            +
                      "type": "address"
         | 
| 983 | 
            +
                    },
         | 
| 984 | 
            +
                    {
         | 
| 985 | 
            +
                      "internalType": "ObjectType",
         | 
| 986 | 
            +
                      "name": "componentType",
         | 
| 987 | 
            +
                      "type": "uint8"
         | 
| 988 | 
            +
                    },
         | 
| 989 | 
            +
                    {
         | 
| 990 | 
            +
                      "internalType": "bool",
         | 
| 991 | 
            +
                      "name": "isInterceptor",
         | 
| 992 | 
            +
                      "type": "bool"
         | 
| 993 | 
            +
                    },
         | 
| 994 | 
            +
                    {
         | 
| 995 | 
            +
                      "internalType": "address",
         | 
| 996 | 
            +
                      "name": "initialOwner",
         | 
| 997 | 
            +
                      "type": "address"
         | 
| 998 | 
            +
                    },
         | 
| 999 | 
            +
                    {
         | 
| 1000 | 
            +
                      "internalType": "bytes",
         | 
| 1001 | 
            +
                      "name": "registryData",
         | 
| 1002 | 
            +
                      "type": "bytes"
         | 
| 1003 | 
            +
                    },
         | 
| 1004 | 
            +
                    {
         | 
| 1005 | 
            +
                      "internalType": "bytes",
         | 
| 1006 | 
            +
                      "name": "componentData",
         | 
| 1007 | 
            +
                      "type": "bytes"
         | 
| 1008 | 
            +
                    }
         | 
| 1009 | 
            +
                  ],
         | 
| 1010 | 
            +
                  "name": "initializeComponent",
         | 
| 1011 | 
            +
                  "outputs": [],
         | 
| 1012 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1013 | 
            +
                  "type": "function"
         | 
| 1014 | 
            +
                },
         | 
| 1015 | 
            +
                {
         | 
| 1016 | 
            +
                  "inputs": [],
         | 
| 1017 | 
            +
                  "name": "initializeERC165",
         | 
| 1018 | 
            +
                  "outputs": [],
         | 
| 1019 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1020 | 
            +
                  "type": "function"
         | 
| 1021 | 
            +
                },
         | 
| 1022 | 
            +
                {
         | 
| 1023 | 
            +
                  "inputs": [
         | 
| 1024 | 
            +
                    {
         | 
| 1025 | 
            +
                      "internalType": "address",
         | 
| 1026 | 
            +
                      "name": "initialOwner",
         | 
| 1027 | 
            +
                      "type": "address"
         | 
| 1028 | 
            +
                    },
         | 
| 1029 | 
            +
                    {
         | 
| 1030 | 
            +
                      "internalType": "address",
         | 
| 1031 | 
            +
                      "name": "registryAddress",
         | 
| 1032 | 
            +
                      "type": "address"
         | 
| 1033 | 
            +
                    }
         | 
| 1034 | 
            +
                  ],
         | 
| 1035 | 
            +
                  "name": "initializeNftOwnable",
         | 
| 1036 | 
            +
                  "outputs": [],
         | 
| 1037 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1038 | 
            +
                  "type": "function"
         | 
| 1039 | 
            +
                },
         | 
| 1040 | 
            +
                {
         | 
| 1041 | 
            +
                  "inputs": [
         | 
| 1042 | 
            +
                    {
         | 
| 1043 | 
            +
                      "internalType": "address",
         | 
| 1044 | 
            +
                      "name": "registryAddress",
         | 
| 1045 | 
            +
                      "type": "address"
         | 
| 1046 | 
            +
                    },
         | 
| 1047 | 
            +
                    {
         | 
| 1048 | 
            +
                      "internalType": "NftId",
         | 
| 1049 | 
            +
                      "name": "parentNftId",
         | 
| 1050 | 
            +
                      "type": "uint96"
         | 
| 1051 | 
            +
                    },
         | 
| 1052 | 
            +
                    {
         | 
| 1053 | 
            +
                      "internalType": "ObjectType",
         | 
| 1054 | 
            +
                      "name": "objectType",
         | 
| 1055 | 
            +
                      "type": "uint8"
         | 
| 1056 | 
            +
                    },
         | 
| 1057 | 
            +
                    {
         | 
| 1058 | 
            +
                      "internalType": "bool",
         | 
| 1059 | 
            +
                      "name": "isInterceptor",
         | 
| 1060 | 
            +
                      "type": "bool"
         | 
| 1061 | 
            +
                    },
         | 
| 1062 | 
            +
                    {
         | 
| 1063 | 
            +
                      "internalType": "address",
         | 
| 1064 | 
            +
                      "name": "initialOwner",
         | 
| 1065 | 
            +
                      "type": "address"
         | 
| 1066 | 
            +
                    },
         | 
| 1067 | 
            +
                    {
         | 
| 1068 | 
            +
                      "internalType": "bytes",
         | 
| 1069 | 
            +
                      "name": "registryData",
         | 
| 1070 | 
            +
                      "type": "bytes"
         | 
| 1071 | 
            +
                    }
         | 
| 1072 | 
            +
                  ],
         | 
| 1073 | 
            +
                  "name": "initializeRegisterable",
         | 
| 1074 | 
            +
                  "outputs": [],
         | 
| 1075 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1076 | 
            +
                  "type": "function"
         | 
| 1077 | 
            +
                },
         | 
| 1078 | 
            +
                {
         | 
| 1079 | 
            +
                  "inputs": [
         | 
| 1080 | 
            +
                    {
         | 
| 1081 | 
            +
                      "internalType": "address",
         | 
| 1082 | 
            +
                      "name": "registryAddress",
         | 
| 1083 | 
            +
                      "type": "address"
         | 
| 1084 | 
            +
                    }
         | 
| 1085 | 
            +
                  ],
         | 
| 1086 | 
            +
                  "name": "initializeRegistryLinked",
         | 
| 1087 | 
            +
                  "outputs": [],
         | 
| 1088 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1089 | 
            +
                  "type": "function"
         | 
| 1090 | 
            +
                },
         | 
| 1091 | 
            +
                {
         | 
| 1092 | 
            +
                  "inputs": [],
         | 
| 1093 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 1094 | 
            +
                  "outputs": [
         | 
| 1095 | 
            +
                    {
         | 
| 1096 | 
            +
                      "internalType": "bytes4",
         | 
| 1097 | 
            +
                      "name": "",
         | 
| 1098 | 
            +
                      "type": "bytes4"
         | 
| 1099 | 
            +
                    }
         | 
| 1100 | 
            +
                  ],
         | 
| 1101 | 
            +
                  "stateMutability": "view",
         | 
| 1102 | 
            +
                  "type": "function"
         | 
| 1103 | 
            +
                },
         | 
| 1104 | 
            +
                {
         | 
| 1105 | 
            +
                  "inputs": [
         | 
| 1106 | 
            +
                    {
         | 
| 1107 | 
            +
                      "internalType": "address",
         | 
| 1108 | 
            +
                      "name": "candidate",
         | 
| 1109 | 
            +
                      "type": "address"
         | 
| 1110 | 
            +
                    }
         | 
| 1111 | 
            +
                  ],
         | 
| 1112 | 
            +
                  "name": "isDistributor",
         | 
| 1113 | 
            +
                  "outputs": [
         | 
| 1114 | 
            +
                    {
         | 
| 1115 | 
            +
                      "internalType": "bool",
         | 
| 1116 | 
            +
                      "name": "",
         | 
| 1117 | 
            +
                      "type": "bool"
         | 
| 1118 | 
            +
                    }
         | 
| 1119 | 
            +
                  ],
         | 
| 1120 | 
            +
                  "stateMutability": "view",
         | 
| 1121 | 
            +
                  "type": "function"
         | 
| 1122 | 
            +
                },
         | 
| 1123 | 
            +
                {
         | 
| 1124 | 
            +
                  "inputs": [],
         | 
| 1125 | 
            +
                  "name": "isNftInterceptor",
         | 
| 1126 | 
            +
                  "outputs": [
         | 
| 1127 | 
            +
                    {
         | 
| 1128 | 
            +
                      "internalType": "bool",
         | 
| 1129 | 
            +
                      "name": "isInterceptor",
         | 
| 1130 | 
            +
                      "type": "bool"
         | 
| 1131 | 
            +
                    }
         | 
| 1132 | 
            +
                  ],
         | 
| 1133 | 
            +
                  "stateMutability": "view",
         | 
| 1134 | 
            +
                  "type": "function"
         | 
| 1135 | 
            +
                },
         | 
| 1136 | 
            +
                {
         | 
| 1137 | 
            +
                  "inputs": [],
         | 
| 1138 | 
            +
                  "name": "isRegistered",
         | 
| 1139 | 
            +
                  "outputs": [
         | 
| 1140 | 
            +
                    {
         | 
| 1141 | 
            +
                      "internalType": "bool",
         | 
| 1142 | 
            +
                      "name": "",
         | 
| 1143 | 
            +
                      "type": "bool"
         | 
| 1144 | 
            +
                    }
         | 
| 1145 | 
            +
                  ],
         | 
| 1146 | 
            +
                  "stateMutability": "view",
         | 
| 1147 | 
            +
                  "type": "function"
         | 
| 1148 | 
            +
                },
         | 
| 1149 | 
            +
                {
         | 
| 1150 | 
            +
                  "inputs": [],
         | 
| 1151 | 
            +
                  "name": "isVerifying",
         | 
| 1152 | 
            +
                  "outputs": [
         | 
| 1153 | 
            +
                    {
         | 
| 1154 | 
            +
                      "internalType": "bool",
         | 
| 1155 | 
            +
                      "name": "verifying",
         | 
| 1156 | 
            +
                      "type": "bool"
         | 
| 1157 | 
            +
                    }
         | 
| 1158 | 
            +
                  ],
         | 
| 1159 | 
            +
                  "stateMutability": "pure",
         | 
| 1160 | 
            +
                  "type": "function"
         | 
| 1161 | 
            +
                },
         | 
| 1162 | 
            +
                {
         | 
| 1163 | 
            +
                  "inputs": [],
         | 
| 1164 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 1165 | 
            +
                  "outputs": [
         | 
| 1166 | 
            +
                    {
         | 
| 1167 | 
            +
                      "internalType": "NftId",
         | 
| 1168 | 
            +
                      "name": "nftId",
         | 
| 1169 | 
            +
                      "type": "uint96"
         | 
| 1170 | 
            +
                    }
         | 
| 1171 | 
            +
                  ],
         | 
| 1172 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1173 | 
            +
                  "type": "function"
         | 
| 1174 | 
            +
                },
         | 
| 1175 | 
            +
                {
         | 
| 1176 | 
            +
                  "inputs": [],
         | 
| 1177 | 
            +
                  "name": "lock",
         | 
| 1178 | 
            +
                  "outputs": [],
         | 
| 1179 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1180 | 
            +
                  "type": "function"
         | 
| 1181 | 
            +
                },
         | 
| 1182 | 
            +
                {
         | 
| 1183 | 
            +
                  "inputs": [
         | 
| 1184 | 
            +
                    {
         | 
| 1185 | 
            +
                      "internalType": "address",
         | 
| 1186 | 
            +
                      "name": "to",
         | 
| 1187 | 
            +
                      "type": "address"
         | 
| 1188 | 
            +
                    },
         | 
| 1189 | 
            +
                    {
         | 
| 1190 | 
            +
                      "internalType": "uint256",
         | 
| 1191 | 
            +
                      "name": "tokenId",
         | 
| 1192 | 
            +
                      "type": "uint256"
         | 
| 1193 | 
            +
                    }
         | 
| 1194 | 
            +
                  ],
         | 
| 1195 | 
            +
                  "name": "nftMint",
         | 
| 1196 | 
            +
                  "outputs": [],
         | 
| 1197 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1198 | 
            +
                  "type": "function"
         | 
| 1199 | 
            +
                },
         | 
| 1200 | 
            +
                {
         | 
| 1201 | 
            +
                  "inputs": [
         | 
| 1202 | 
            +
                    {
         | 
| 1203 | 
            +
                      "internalType": "address",
         | 
| 1204 | 
            +
                      "name": "from",
         | 
| 1205 | 
            +
                      "type": "address"
         | 
| 1206 | 
            +
                    },
         | 
| 1207 | 
            +
                    {
         | 
| 1208 | 
            +
                      "internalType": "address",
         | 
| 1209 | 
            +
                      "name": "to",
         | 
| 1210 | 
            +
                      "type": "address"
         | 
| 1211 | 
            +
                    },
         | 
| 1212 | 
            +
                    {
         | 
| 1213 | 
            +
                      "internalType": "uint256",
         | 
| 1214 | 
            +
                      "name": "tokenId",
         | 
| 1215 | 
            +
                      "type": "uint256"
         | 
| 1216 | 
            +
                    }
         | 
| 1217 | 
            +
                  ],
         | 
| 1218 | 
            +
                  "name": "nftTransferFrom",
         | 
| 1219 | 
            +
                  "outputs": [],
         | 
| 1220 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1221 | 
            +
                  "type": "function"
         | 
| 1222 | 
            +
                },
         | 
| 1223 | 
            +
                {
         | 
| 1224 | 
            +
                  "inputs": [
         | 
| 1225 | 
            +
                    {
         | 
| 1226 | 
            +
                      "internalType": "ReferralId",
         | 
| 1227 | 
            +
                      "name": "referralId",
         | 
| 1228 | 
            +
                      "type": "bytes8"
         | 
| 1229 | 
            +
                    },
         | 
| 1230 | 
            +
                    {
         | 
| 1231 | 
            +
                      "internalType": "uint256",
         | 
| 1232 | 
            +
                      "name": "feeAmount",
         | 
| 1233 | 
            +
                      "type": "uint256"
         | 
| 1234 | 
            +
                    }
         | 
| 1235 | 
            +
                  ],
         | 
| 1236 | 
            +
                  "name": "processRenewal",
         | 
| 1237 | 
            +
                  "outputs": [],
         | 
| 1238 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1239 | 
            +
                  "type": "function"
         | 
| 1240 | 
            +
                },
         | 
| 1241 | 
            +
                {
         | 
| 1242 | 
            +
                  "inputs": [],
         | 
| 1243 | 
            +
                  "name": "register",
         | 
| 1244 | 
            +
                  "outputs": [],
         | 
| 1245 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1246 | 
            +
                  "type": "function"
         | 
| 1247 | 
            +
                },
         | 
| 1248 | 
            +
                {
         | 
| 1249 | 
            +
                  "inputs": [
         | 
| 1250 | 
            +
                    {
         | 
| 1251 | 
            +
                      "internalType": "bytes4",
         | 
| 1252 | 
            +
                      "name": "interfaceId",
         | 
| 1253 | 
            +
                      "type": "bytes4"
         | 
| 1254 | 
            +
                    }
         | 
| 1255 | 
            +
                  ],
         | 
| 1256 | 
            +
                  "name": "registerInterface",
         | 
| 1257 | 
            +
                  "outputs": [],
         | 
| 1258 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1259 | 
            +
                  "type": "function"
         | 
| 1260 | 
            +
                },
         | 
| 1261 | 
            +
                {
         | 
| 1262 | 
            +
                  "inputs": [
         | 
| 1263 | 
            +
                    {
         | 
| 1264 | 
            +
                      "internalType": "address",
         | 
| 1265 | 
            +
                      "name": "newAuthority",
         | 
| 1266 | 
            +
                      "type": "address"
         | 
| 1267 | 
            +
                    }
         | 
| 1268 | 
            +
                  ],
         | 
| 1269 | 
            +
                  "name": "setAuthority",
         | 
| 1270 | 
            +
                  "outputs": [],
         | 
| 1271 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1272 | 
            +
                  "type": "function"
         | 
| 1273 | 
            +
                },
         | 
| 1274 | 
            +
                {
         | 
| 1275 | 
            +
                  "inputs": [
         | 
| 1276 | 
            +
                    {
         | 
| 1277 | 
            +
                      "components": [
         | 
| 1278 | 
            +
                        {
         | 
| 1279 | 
            +
                          "internalType": "UFixed",
         | 
| 1280 | 
            +
                          "name": "fractionalFee",
         | 
| 1281 | 
            +
                          "type": "uint256"
         | 
| 1282 | 
            +
                        },
         | 
| 1283 | 
            +
                        {
         | 
| 1284 | 
            +
                          "internalType": "uint256",
         | 
| 1285 | 
            +
                          "name": "fixedFee",
         | 
| 1286 | 
            +
                          "type": "uint256"
         | 
| 1287 | 
            +
                        }
         | 
| 1288 | 
            +
                      ],
         | 
| 1289 | 
            +
                      "internalType": "struct Fee",
         | 
| 1290 | 
            +
                      "name": "distributionFee",
         | 
| 1291 | 
            +
                      "type": "tuple"
         | 
| 1292 | 
            +
                    },
         | 
| 1293 | 
            +
                    {
         | 
| 1294 | 
            +
                      "components": [
         | 
| 1295 | 
            +
                        {
         | 
| 1296 | 
            +
                          "internalType": "UFixed",
         | 
| 1297 | 
            +
                          "name": "fractionalFee",
         | 
| 1298 | 
            +
                          "type": "uint256"
         | 
| 1299 | 
            +
                        },
         | 
| 1300 | 
            +
                        {
         | 
| 1301 | 
            +
                          "internalType": "uint256",
         | 
| 1302 | 
            +
                          "name": "fixedFee",
         | 
| 1303 | 
            +
                          "type": "uint256"
         | 
| 1304 | 
            +
                        }
         | 
| 1305 | 
            +
                      ],
         | 
| 1306 | 
            +
                      "internalType": "struct Fee",
         | 
| 1307 | 
            +
                      "name": "minDistributionOwnerFee",
         | 
| 1308 | 
            +
                      "type": "tuple"
         | 
| 1309 | 
            +
                    }
         | 
| 1310 | 
            +
                  ],
         | 
| 1311 | 
            +
                  "name": "setFees",
         | 
| 1312 | 
            +
                  "outputs": [],
         | 
| 1313 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1314 | 
            +
                  "type": "function"
         | 
| 1315 | 
            +
                },
         | 
| 1316 | 
            +
                {
         | 
| 1317 | 
            +
                  "inputs": [
         | 
| 1318 | 
            +
                    {
         | 
| 1319 | 
            +
                      "internalType": "address",
         | 
| 1320 | 
            +
                      "name": "newWallet",
         | 
| 1321 | 
            +
                      "type": "address"
         | 
| 1322 | 
            +
                    }
         | 
| 1323 | 
            +
                  ],
         | 
| 1324 | 
            +
                  "name": "setWallet",
         | 
| 1325 | 
            +
                  "outputs": [],
         | 
| 1326 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1327 | 
            +
                  "type": "function"
         | 
| 1328 | 
            +
                },
         | 
| 1329 | 
            +
                {
         | 
| 1330 | 
            +
                  "inputs": [
         | 
| 1331 | 
            +
                    {
         | 
| 1332 | 
            +
                      "internalType": "bytes4",
         | 
| 1333 | 
            +
                      "name": "interfaceId",
         | 
| 1334 | 
            +
                      "type": "bytes4"
         | 
| 1335 | 
            +
                    }
         | 
| 1336 | 
            +
                  ],
         | 
| 1337 | 
            +
                  "name": "supportsInterface",
         | 
| 1338 | 
            +
                  "outputs": [
         | 
| 1339 | 
            +
                    {
         | 
| 1340 | 
            +
                      "internalType": "bool",
         | 
| 1341 | 
            +
                      "name": "",
         | 
| 1342 | 
            +
                      "type": "bool"
         | 
| 1343 | 
            +
                    }
         | 
| 1344 | 
            +
                  ],
         | 
| 1345 | 
            +
                  "stateMutability": "view",
         | 
| 1346 | 
            +
                  "type": "function"
         | 
| 1347 | 
            +
                },
         | 
| 1348 | 
            +
                {
         | 
| 1349 | 
            +
                  "inputs": [],
         | 
| 1350 | 
            +
                  "name": "unlock",
         | 
| 1351 | 
            +
                  "outputs": [],
         | 
| 1352 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1353 | 
            +
                  "type": "function"
         | 
| 1354 | 
            +
                },
         | 
| 1355 | 
            +
                {
         | 
| 1356 | 
            +
                  "inputs": [
         | 
| 1357 | 
            +
                    {
         | 
| 1358 | 
            +
                      "internalType": "NftId",
         | 
| 1359 | 
            +
                      "name": "distributorNftId",
         | 
| 1360 | 
            +
                      "type": "uint96"
         | 
| 1361 | 
            +
                    },
         | 
| 1362 | 
            +
                    {
         | 
| 1363 | 
            +
                      "internalType": "DistributorType",
         | 
| 1364 | 
            +
                      "name": "distributorType",
         | 
| 1365 | 
            +
                      "type": "bytes8"
         | 
| 1366 | 
            +
                    },
         | 
| 1367 | 
            +
                    {
         | 
| 1368 | 
            +
                      "internalType": "bytes",
         | 
| 1369 | 
            +
                      "name": "data",
         | 
| 1370 | 
            +
                      "type": "bytes"
         | 
| 1371 | 
            +
                    }
         | 
| 1372 | 
            +
                  ],
         | 
| 1373 | 
            +
                  "name": "updateDistributorType",
         | 
| 1374 | 
            +
                  "outputs": [],
         | 
| 1375 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1376 | 
            +
                  "type": "function"
         | 
| 1377 | 
            +
                },
         | 
| 1378 | 
            +
                {
         | 
| 1379 | 
            +
                  "inputs": [
         | 
| 1380 | 
            +
                    {
         | 
| 1381 | 
            +
                      "internalType": "NftId",
         | 
| 1382 | 
            +
                      "name": "distributorNftId",
         | 
| 1383 | 
            +
                      "type": "uint96"
         | 
| 1384 | 
            +
                    },
         | 
| 1385 | 
            +
                    {
         | 
| 1386 | 
            +
                      "internalType": "Amount",
         | 
| 1387 | 
            +
                      "name": "amount",
         | 
| 1388 | 
            +
                      "type": "uint96"
         | 
| 1389 | 
            +
                    }
         | 
| 1390 | 
            +
                  ],
         | 
| 1391 | 
            +
                  "name": "withdrawCommission",
         | 
| 1392 | 
            +
                  "outputs": [
         | 
| 1393 | 
            +
                    {
         | 
| 1394 | 
            +
                      "internalType": "Amount",
         | 
| 1395 | 
            +
                      "name": "withdrawnAmount",
         | 
| 1396 | 
            +
                      "type": "uint96"
         | 
| 1397 | 
            +
                    }
         | 
| 1398 | 
            +
                  ],
         | 
| 1399 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1400 | 
            +
                  "type": "function"
         | 
| 1401 | 
            +
                },
         | 
| 1402 | 
            +
                {
         | 
| 1403 | 
            +
                  "inputs": [
         | 
| 1404 | 
            +
                    {
         | 
| 1405 | 
            +
                      "internalType": "Amount",
         | 
| 1406 | 
            +
                      "name": "amount",
         | 
| 1407 | 
            +
                      "type": "uint96"
         | 
| 1408 | 
            +
                    }
         | 
| 1409 | 
            +
                  ],
         | 
| 1410 | 
            +
                  "name": "withdrawFees",
         | 
| 1411 | 
            +
                  "outputs": [
         | 
| 1412 | 
            +
                    {
         | 
| 1413 | 
            +
                      "internalType": "Amount",
         | 
| 1414 | 
            +
                      "name": "withdrawnAmount",
         | 
| 1415 | 
            +
                      "type": "uint96"
         | 
| 1416 | 
            +
                    }
         | 
| 1417 | 
            +
                  ],
         | 
| 1418 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1419 | 
            +
                  "type": "function"
         | 
| 1420 | 
            +
                }
         | 
| 1421 | 
            +
              ],
         | 
| 1422 | 
            +
              "bytecode": "0x6080604052348015600e575f80fd5b5061407f8061001c5f395ff3fe608060405234801561000f575f80fd5b5060043610610318575f3560e01c80636bd1c0eb116101af578063bae99c99116100fe578063e7f7fb861161009e578063f7c34ee011610079578063f7c34ee014610708578063f80e20721461071b578063f83d08ba1461072e578063f8bf0d9f14610736575f80fd5b8063e7f7fb86146106cd578063ea15869f146106e0578063f5860e1a146106f4575f80fd5b8063d16d0fe8116100d9578063d16d0fe814610660578063de7b5d1414610673578063deaa59df14610690578063e145d46c146106a3575f80fd5b8063bae99c9914610632578063bb1e0e5914610645578063bf7e214f14610658575f80fd5b80638fb3603711610169578063ada9652e11610144578063ada9652e146105f0578063b2a6b42d14610604578063b423086c14610617578063b6b412ba1461061f575f80fd5b80638fb36037146105b257806390edbd35146105d3578063a69df4b5146105e8575f80fd5b80636bd1c0eb1461053a5780637427d7a81461056a5780637a9e5e4b1461057d57806387ef9ba014610590578063893d20e8146105975780638f0c86fa1461059f575f80fd5b806327bb7a331161026b57806343d752d3116102255780635ab1bd53116102005780635ab1bd53146104fb5780635dcb3bae1461050c578063644c45e01461051f578063675393bf14610527575f80fd5b806343d752d3146104d85780635741e5e9146104e057806359660bea146104e8575f80fd5b806327bb7a33146104575780632b5198b11461046a5780632eb3e6f41461049657806336fc697e146104aa5780633d683fd9146104b2578063419197fe146104c5575f80fd5b806317d7de7c116102d65780631eff4b22116102b15780631eff4b22146103ff578063214cdb801461043457806321df0da714610447578063223668441461044f575f80fd5b806317d7de7c146103cd5780631aa3a008146103e25780631c6b2190146103ec575f80fd5b806251884a1461031c57806301ffc9a71461034157806307e71a6e1461037d5780630fec111c1461039057806313299604146103a5578063138461e0146103c5575b5f80fd5b610324610749565b6040516001600160601b0390911681526020015b60405180910390f35b61036d61034f3660046130c5565b6001600160e01b0319165f9081526020819052604090205460ff1690565b6040519015158152602001610338565b61032461038b36600461310b565b61075b565b610398610860565b6040516103389190613170565b6103ad610a1e565b6040516001600160a01b039091168152602001610338565b610324610a30565b6103d5610a3f565b60405161033891906131fc565b6103ea610a4f565b005b6103246103fa36600461320e565b610afc565b6104267f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610338565b6103ea6104423660046130c5565b610b52565b6103ad610b7e565b61036d610b90565b6103ea610465366004613381565b610c86565b61047d610478366004613430565b610d2b565b6040516001600160c01b03199091168152602001610338565b6104265f8051602061402a83398151915281565b6103ea610d8f565b6103ea6104c0366004613506565b610dd4565b6103ea6104d3366004613563565b610e28565b6103ad610fe8565b61036d610ffa565b61047d6104f636600461357f565b6110ae565b6001546001600160a01b03166103ad565b61032461051a366004613618565b611105565b61032461115f565b6103ea610535366004613635565b61117a565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b03166103ad565b61047d610578366004613650565b611287565b6103ea61058b366004613635565b611307565b600161036d565b6103ad611389565b61036d6105ad366004613635565b6114ba565b6105ba61157f565b6040516001600160e01b03199091168152602001610338565b6105db6115b4565b6040516103389190613681565b6103ea6115d9565b6104265f80516020613faa83398151915281565b610324610612366004613635565b611677565b6105db6116b9565b6103ea61062d366004613760565b6116c9565b6103ea61064036600461320e565b611717565b6103ea610653366004613793565b611763565b6103ad61180a565b61042661066e3660046137bd565b611825565b5f8051602061402a833981519152546001600160a01b03166103ad565b6103ea61069e366004613635565b611839565b6106b66106b1366004613650565b611ab0565b6040805192835260ff909116602083015201610338565b6103ea6106db3660046137d9565b611b6a565b6104265f80516020613fca83398151915281565b6104265f8051602061400a83398151915281565b6103ea610716366004613817565b611c12565b6103ea6107293660046137bd565b611c88565b6103ea611c91565b6103ea610744366004613843565b611d05565b5f6107526115b4565b60200151905090565b5f610768335b5f36611e04565b610771336114ba565b6107955760405163637c41bb60e01b81523360048201526024015b60405180910390fd5b826107a86001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156107f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610819919061394d565b6001600160a01b0316336001600160a01b03161461084c5760405163086391f760e31b815233600482015260240161078c565b6108568484611f02565b91505b5092915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610910573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109349190613973565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161097c611389565b6001600160a01b031681526020018260010180546109999061398e565b80601f01602080910402602001604051908101604052809291908181526020018280546109c59061398e565b8015610a105780601f106109e757610100808354040283529160200191610a10565b820191905f5260205f20905b8154815290600101906020018083116109f357829003601f168201915b505050505081525091505090565b5f610a276115b4565b60800151905090565b5f610a3a30611f8e565b905090565b6060610a496115b4565b51919050565b610a57611389565b6001600160a01b0316336001600160a01b031614610a8a5760405163086391f760e31b815233600482015260240161078c565b5f8051602061400a833981519152546040805163be495be560e01b815290516001600160a01b039092169163be495be5916004808201925f9290919082900301818387803b158015610ada575f80fd5b505af1158015610aec573d5f803e3d5ffd5b50505050610afa5f19612182565b565b5f610b05611389565b6001600160a01b0316336001600160a01b031614610b385760405163086391f760e31b815233600482015260240161078c565b610b4133610761565b610b4a8261223b565b90505b919050565b610b5a6122bf565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f610b876115b4565b60400151905090565b5f610ba36001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015610be7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0b9190613973565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610c62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3a91906139d1565b610c8e6122bf565b610c988287611c12565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610d218382613a30565b5050505050505050565b5f610d34611389565b6001600160a01b0316336001600160a01b031614610d675760405163086391f760e31b815233600482015260240161078c565b610d7033610761565b610d818a8a8a8a8a8a8a8a8a61230d565b9a9950505050505050505050565b610d976122bf565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610ddc611389565b6001600160a01b0316336001600160a01b031614610e0f5760405163086391f760e31b815233600482015260240161078c565b610e1833610761565b610e238383836123cc565b505050565b610e30611389565b6001600160a01b0316336001600160a01b031614610e635760405163086391f760e31b815233600482015260240161078c565b30610e6c610a1e565b6001600160a01b031614610e935760405163b6d7537f60e01b815260040160405180910390fd5b816001600160a01b031663095ea7b3610eaa610fe8565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610f00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f249190613aea565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f9091906139d1565b507ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610fba610fe8565b604080516001600160a01b0390921682526001600160601b0384166020830152015b60405180910390a15050565b5f610ff16115b4565b60600151905090565b5f611003610b90565b1561107e576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015611057573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610ff19190810190613b5b565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b5f6110b8336114ba565b6110d75760405163637c41bb60e01b815233600482015260240161078c565b6110e033610761565b5f6110ea33611677565b90506110fa8188888888886123e3565b979650505050505050565b5f61110e611389565b6001600160a01b0316336001600160a01b0316146111415760405163086391f760e31b815233600482015260240161078c565b61114a33610761565b611155848484612499565b90505b9392505050565b5f80516020613faa833981519152546001600160601b031690565b6111826122bf565b806001600160a01b03163b5f036111b75760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078c565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015611231575060408051601f3d908101601f1916820190925261122e918101906139d1565b60015b6112595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078c565b806112825760405163fdeac91f60e01b81526001600160a01b038316600482015260240161078c565b505b50565b5f73__$05887d5853069c88bcd4c0a2107db45f29$__633f093cd66112aa61115f565b846040518363ffffffff1660e01b81526004016112c8929190613c2b565b602060405180830381865af41580156112e3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a9190613c4c565b3361131061180a565b6001600160a01b0316816001600160a01b03161461134b5760405162d1953b60e31b81526001600160a01b038216600482015260240161078c565b816001600160a01b03163b5f03611380576040516361798f2f60e11b81526001600160a01b038316600482015260240161078c565b6112828261265d565b5f805f80516020613faa83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156113f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141991906139d1565b156114a4576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561147a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061149e919061394d565b91505090565b54600160601b90046001600160a01b0316919050565b6001600160a01b0381165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f8051602061400a8339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af415801561155b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115891906139d1565b5f80516020613fea83398151915280545f9190600160a01b900460ff166115a6575f61149e565b638fb3603760e01b91505090565b6115bc61306f565b6115c4610b90565b156115d157610a3a6126b6565b610a3a6116b9565b6115e1611389565b6001600160a01b0316336001600160a01b0316146116145760405163086391f760e31b815233600482015260240161078c565b61161e600a61287d565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b15801561165f575f80fd5b505af1158015611671573d5f803e3d5ffd5b50505050565b6001600160a01b03165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90260205260409020546001600160601b031690565b6116c161306f565b610a3a6126b6565b6116d1611389565b6001600160a01b0316336001600160a01b0316146117045760405163086391f760e31b815233600482015260240161078c565b61170d33610761565b611282828261297e565b61171f611389565b6001600160a01b0316336001600160a01b0316146117525760405163086391f760e31b815233600482015260240161078c565b61128461175d610b7e565b82610e28565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117ce919061394d565b6001600160a01b0316336001600160a01b0316146118005760405162f0630960e01b815233600482015260240161078c565b6112828282611282565b5f80516020613fea833981519152546001600160a01b031690565b5f6118308282613c67565b90505b92915050565b611841611389565b6001600160a01b0316336001600160a01b0316146118745760405163086391f760e31b815233600482015260240161078c565b5f61187d610a1e565b90505f611888610b7e565b6040516370a0823160e01b81526001600160a01b0384811660048301529192505f918316906370a0823190602401602060405180830381865afa1580156118d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f59190613aea565b905080156119c4576001600160a01b03831630146119c457604051636eb1769f60e11b81526001600160a01b0384811660048301523060248301525f919084169063dd62ed3e90604401602060405180830381865afa15801561195a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061197e9190613aea565b9050818110156119c2576040516372c963b360e11b81526001600160a01b03808616600483015286166024820152604481018290526064810183905260840161078c565b505b6119cd846129e5565b801561167157306001600160a01b03841603611a535760405163095ea7b360e01b8152306004820152602481018290526001600160a01b0383169063095ea7b3906044016020604051808303815f875af1158015611a2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a5191906139d1565b505b611a5f82848684612a7e565b604080516001600160a01b038086168252861660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a150505050565b5f805f611abc84611287565b9050611aef7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b60405163b82d7ef560e01b81526001600160c01b0319831660048201526001600160a01b03919091169063b82d7ef5906024016040805180830381865afa158015611b3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b609190613c8a565b9250925050915091565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bd5919061394d565b6001600160a01b0316336001600160a01b031614611c075760405162f0630960e01b815233600482015260240161078c565b610e23838383612ad8565b611c1a6122bf565b611c238161117a565b611c2b610d8f565b6001600160a01b038216611c525760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020613faa83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61128233610761565b611c99611389565b6001600160a01b0316336001600160a01b031614611ccc5760405163086391f760e31b815233600482015260240161078c565b611cd6600a61287d565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e90602401611648565b611d0d6122bf565b611d1b898987878787610c86565b611d248a612c7e565b6001600160a01b038616611d4b576040516327eab2e360e11b815260040160405180910390fd5b86515f03611d6c5760405163591eebf360e11b815260040160405180910390fd5b5f80516020613fca83398151915280611d858982613a30565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b8715150217905560038101611dd68382613a30565b50611de7634a531f3360e01b610b52565b611df7632986755f60e11b610b52565b5050505050505050505050565b5f80516020613fea8339815191525f80611e3c611e1f61180a565b8730611e2e60045f8a8c613cae565b611e3791613cd5565b612c8f565b9150915081611efa5763ffffffff811615611ed757825460ff60a01b1916600160a01b178355611e6a61180a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611e9993929190613d0b565b5f604051808303815f87803b158015611eb0575f80fd5b505af1158015611ec2573d5f803e3d5ffd5b5050845460ff60a01b1916855550611efa9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161078c565b505050505050565b5f5f8051602061400a833981519152600101546040516303f38d3760e11b81526001600160601b038086166004830152841660248201526001600160a01b03909116906307e71a6e906044016020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118309190613973565b5f805f80516020613faa83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611ffa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201e91906139d1565b1561204a5780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161078c565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561209c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120c091906139d1565b6120e85760405163b9304b0d60e01b81526001600160a01b038416600482015260240161078c565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801561213a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215e9190613973565b81546001600160601b0319166001600160601b039190911690811790915592915050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f01545f80516020613fca833981519152906001600160a01b031663095ea7b36121c96115b4565b606001516040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303815f875af1158015612217573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2391906139d1565b5f5f8051602061402a833981519152600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af115801561229b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a9190613973565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610afa57604051631afcd79f60e31b815260040160405180910390fd5b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051632b5198b160e01b81525f915f8051602061400a833981519152916001600160a01b0390911690632b5198b19061237d908e908e908e908e908e908e908e908e908e90600401613d4a565b6020604051808303815f875af1158015612399573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123bd9190613c4c565b9b9a5050505050505050505050565b5f5f8051602061400a8339815191525b5050505050565b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051638dd2b78160e01b81525f915f8051602061400a833981519152916001600160a01b0390911690638dd2b7819061244d908b908b908b908b908b908b90600401613dbb565b6020604051808303815f875af1158015612469573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061248d9190613c4c565b98975050505050505050565b6001600160a01b0383165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f8051602061400a8339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af415801561253a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061255e91906139d1565b156125a9576001600160a01b0385165f8181526002830160205260409081902054905163d56c930160e01b815260048101929092526001600160601b0316602482015260440161078c565b6001810154604051632ee59dd760e11b81526001600160a01b0390911690635dcb3bae906125df90889088908890600401613e1a565b6020604051808303815f875af11580156125fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261f9190613973565b6001600160a01b039095165f90815260029091016020526040902080546001600160601b0386166001600160601b0319909116179055509192915050565b5f80516020613fea83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001610fdc565b6126be61306f565b5f6126d16001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612715573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127399190613973565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612792573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b691906139d1565b15612875577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031663f0ea17c36127f361115f565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015612834573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261285b9190810190613e4d565b60808101519092506001600160a01b031615612875575090565b61149e612d97565b5f805f8051602061402a8339815191525460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa1580156128d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128f79190613f25565b905061290b6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa15801561295a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611158919061394d565b5f8051602061400a83398151915254604051631bd44bf760e11b81526001600160a01b03909116906337a897ee906129bc9085908590600401613f40565b5f604051808303815f87803b1580156129d3575f80fd5b505af1158015611efa573d5f803e3d5ffd5b6129ed611389565b6001600160a01b0316336001600160a01b031614612a205760405163086391f760e31b815233600482015260240161078c565b612a2a600b61287d565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015612a6c575f80fd5b505af11580156123dc573d5f803e3d5ffd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611671908590612efb565b604080516001600160a01b03841681523360208201527f04d7077d43765a828a5b0398e13ddca074c675aba69101b22c5d0176d8689434910160405180910390a15f5f8051602061400a833981519152905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612b71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b959190613973565b6001600160a01b0385165f9081526002830160205260409081902080546001600160601b0319166001600160601b0393909316929092179091555163efac97cf60e01b81526004810183905273__$94a2c899be079b00d952d0d84fffaa5c34$__9063efac97cf90602401602060405180830381865af4158015612c1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c3f9190613973565b6001600160a01b03939093165f9081526002919091016020526040902080546001600160601b0319166001600160601b03909316929092179091555050565b612c866122bf565b61128481612f5c565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612cfd9190613f66565b5f60405180830381855afa9150503d805f8114612d35576040519150601f19603f3d011682016040523d82523d5f602084013e612d3a565b606091505b50915091508115612d8c576040815110612d6c5780806020019051810190612d629190613f7c565b9094509250612d8c565b6020815110612d8c5780806020019051810190612d8991906139d1565b93505b505094509492505050565b612d9f61306f565b5f5f80516020613fca83398151915290506040518060c00160405280825f018054612dc99061398e565b80601f0160208091040260200160405190810160405280929190818152602001828054612df59061398e565b8015612e405780601f10612e1757610100808354040283529160200191612e40565b820191905f5260205f20905b815481529060010190602001808311612e2357829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eb59190613973565b6001600160601b0316815260018301546001600160a01b0390811660208301525f604083015260028401541660608201526003830180546080909201916109999061398e565b5f612f0f6001600160a01b03841683612f6d565b905080515f14158015612f33575080806020019051810190612f3191906139d1565b155b15610e2357604051635274afe760e01b81526001600160a01b038416600482015260240161078c565b612f646122bf565b6112848161265d565b606061183083835f845f80856001600160a01b03168486604051612f919190613f66565b5f6040518083038185875af1925050503d805f8114612fcb576040519150601f19603f3d011682016040523d82523d5f602084013e612fd0565b606091505b5091509150612fe0868383612fea565b9695505050505050565b606082612fff57612ffa82613046565b611158565b815115801561301657506001600160a01b0384163b155b1561303f57604051639996b31560e01b81526001600160a01b038516600482015260240161078c565b5080611158565b8051156130565780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f602082840312156130d5575f80fd5b81356001600160e01b031981168114611158575f80fd5b6001600160601b0381168114611284575f80fd5b8035610b4d816130ec565b5f806040838503121561311c575f80fd5b8235613127816130ec565b91506020830135613137816130ec565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516131b8608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152610856610100840182613142565b602081525f6118306020830184613142565b5f6020828403121561321e575f80fd5b8135611158816130ec565b6001600160a01b0381168114611284575f80fd5b8035610b4d81613229565b60ff81168114611284575f80fd5b8035610b4d81613248565b8015158114611284575f80fd5b8035610b4d81613261565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156132af576132af613279565b60405290565b60405160c081016001600160401b03811182821017156132af576132af613279565b604051601f8201601f191681016001600160401b03811182821017156132ff576132ff613279565b604052919050565b5f6001600160401b0382111561331f5761331f613279565b50601f01601f191660200190565b5f82601f83011261333c575f80fd5b8135602083015f61335461334f84613307565b6132d7565b9050828152858383011115613367575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c08789031215613396575f80fd5b86356133a181613229565b955060208701356133b1816130ec565b945060408701356133c181613248565b935060608701356133d181613261565b925060808701356133e181613229565b915060a08701356001600160401b038111156133fb575f80fd5b61340789828a0161332d565b9150509295509295509295565b63ffffffff81168114611284575f80fd5b8035610b4d81613414565b5f805f805f805f805f6101208a8c031215613449575f80fd5b89356001600160401b0381111561345e575f80fd5b61346a8c828d0161332d565b99505060208a0135975060408a0135965060608a0135955060808a013561349081613414565b945061349e60a08b01613425565b93506134ac60c08b0161326e565b92506134ba60e08b0161326e565b91506101008a01356001600160401b038111156134d5575f80fd5b6134e18c828d0161332d565b9150509295985092959850929598565b6001600160c01b031981168114611284575f80fd5b5f805f60608486031215613518575f80fd5b8335613523816130ec565b92506020840135613533816134f1565b915060408401356001600160401b0381111561354d575f80fd5b6135598682870161332d565b9150509250925092565b5f8060408385031215613574575f80fd5b823561312781613229565b5f805f805f60a08688031215613593575f80fd5b85356001600160401b038111156135a8575f80fd5b6135b48882890161332d565b9550506020860135935060408601356135cc81613414565b9250606086013564ffffffffff811681146135e5575f80fd5b915060808601356001600160401b038111156135ff575f80fd5b61360b8882890161332d565b9150509295509295909350565b5f805f6060848603121561362a575f80fd5b833561352381613229565b5f60208284031215613645575f80fd5b813561115881613229565b5f60208284031215613660575f80fd5b81356001600160401b03811115613675575f80fd5b6108568482850161332d565b602081525f825160c0602084015261369c60e0840182613142565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b03606085015116608084015260808401516136ef60a08501826001600160a01b03169052565b5060a0840151838203601f190160c085015261370b8282613142565b95945050505050565b5f60408284031215613724575f80fd5b604080519081016001600160401b038111828210171561374657613746613279565b604052823581526020928301359281019290925250919050565b5f8060808385031215613771575f80fd5b61377b8484613714565b915061378a8460408501613714565b90509250929050565b5f80604083850312156137a4575f80fd5b82356137af81613229565b946020939093013593505050565b5f80604083850312156137ce575f80fd5b82356137af816134f1565b5f805f606084860312156137eb575f80fd5b83356137f681613229565b9250602084013561380681613229565b929592945050506040919091013590565b5f8060408385031215613828575f80fd5b823561383381613229565b9150602083013561313781613229565b5f805f805f805f805f806101408b8d03121561385d575f80fd5b6138668b61323d565b995061387460208c0161323d565b985061388260408c01613100565b975060608b01356001600160401b0381111561389c575f80fd5b6138a88d828e0161332d565b9750506138b760808c0161323d565b95506138c560a08c01613256565b94506138d360c08c0161326e565b93506138e160e08c0161323d565b92506101008b01356001600160401b038111156138fc575f80fd5b6139088d828e0161332d565b9250506101208b01356001600160401b03811115613924575f80fd5b6139308d828e0161332d565b9150509295989b9194979a5092959850565b8051610b4d81613229565b5f6020828403121561395d575f80fd5b815161115881613229565b8051610b4d816130ec565b5f60208284031215613983575f80fd5b8151611158816130ec565b600181811c908216806139a257607f821691505b6020821081036139c057634e487b7160e01b5f52602260045260245ffd5b50919050565b8051610b4d81613261565b5f602082840312156139e1575f80fd5b815161115881613261565b601f821115610e2357805f5260205f20601f840160051c81016020851015613a115750805b601f840160051c820191505b818110156123dc575f8155600101613a1d565b81516001600160401b03811115613a4957613a49613279565b613a5d81613a57845461398e565b846139ec565b6020601f821160018114613a8f575f8315613a785750848201515b5f19600385901b1c1916600184901b1784556123dc565b5f84815260208120601f198516915b82811015613abe5787850151825560209485019460019092019101613a9e565b5084821015613adb57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215613afa575f80fd5b5051919050565b8051610b4d81613248565b5f82601f830112613b1b575f80fd5b8151602083015f613b2e61334f84613307565b9050828152858383011115613b41575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215613b6b575f80fd5b81516001600160401b03811115613b80575f80fd5b820160e08185031215613b91575f80fd5b613b9961328d565b613ba282613968565b8152613bb060208301613968565b6020820152613bc160408301613b01565b6040820152613bd2606083016139c6565b6060820152613be360808301613942565b6080820152613bf460a08301613942565b60a082015260c08201516001600160401b03811115613c11575f80fd5b613c1d86828501613b0c565b60c083015250949350505050565b6001600160601b0383168152604060208201525f6111556040830184613142565b5f60208284031215613c5c575f80fd5b8151611158816134f1565b808202811582820484141761183357634e487b7160e01b5f52601160045260245ffd5b5f8060408385031215613c9b575f80fd5b8251602084015190925061313781613248565b5f8085851115613cbc575f80fd5b83861115613cc8575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015610859576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b61012081525f613d5e61012083018c613142565b8a602084015289604084015288606084015263ffffffff8816608084015263ffffffff871660a084015285151560c084015284151560e0840152828103610100840152613dab8185613142565b9c9b505050505050505050505050565b6001600160601b038716815260c060208201525f613ddc60c0830188613142565b86604084015263ffffffff8616606084015264ffffffffff8516608084015282810360a0840152613e0d8185613142565b9998505050505050505050565b6001600160a01b03841681526001600160c01b0319831660208201526060604082018190525f9061370b90830184613142565b5f60208284031215613e5d575f80fd5b81516001600160401b03811115613e72575f80fd5b820160c08185031215613e83575f80fd5b613e8b6132b5565b81516001600160401b03811115613ea0575f80fd5b613eac86828501613b0c565b825250613ebb60208301613968565b6020820152613ecc60408301613942565b6040820152613edd60608301613942565b6060820152613eee60808301613942565b608082015260a08201516001600160401b03811115613f0b575f80fd5b613f1786828501613b0c565b60a083015250949350505050565b5f60208284031215613f35575f80fd5b815161115881613248565b825181526020808401518183015282516040830152820151606082015260808101611158565b5f82518060208501845e5f920191825250919050565b5f8060408385031215613f8d575f80fd5b8251613f9881613261565b60208401519092506131378161341456fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00ffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00aab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f900ffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00a2646970667358221220bb441a4c5602b35a0c9106e01da60f10b9ea4aef9c073636714c957b35a7967164736f6c634300081a0033",
         | 
| 1423 | 
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610318575f3560e01c80636bd1c0eb116101af578063bae99c99116100fe578063e7f7fb861161009e578063f7c34ee011610079578063f7c34ee014610708578063f80e20721461071b578063f83d08ba1461072e578063f8bf0d9f14610736575f80fd5b8063e7f7fb86146106cd578063ea15869f146106e0578063f5860e1a146106f4575f80fd5b8063d16d0fe8116100d9578063d16d0fe814610660578063de7b5d1414610673578063deaa59df14610690578063e145d46c146106a3575f80fd5b8063bae99c9914610632578063bb1e0e5914610645578063bf7e214f14610658575f80fd5b80638fb3603711610169578063ada9652e11610144578063ada9652e146105f0578063b2a6b42d14610604578063b423086c14610617578063b6b412ba1461061f575f80fd5b80638fb36037146105b257806390edbd35146105d3578063a69df4b5146105e8575f80fd5b80636bd1c0eb1461053a5780637427d7a81461056a5780637a9e5e4b1461057d57806387ef9ba014610590578063893d20e8146105975780638f0c86fa1461059f575f80fd5b806327bb7a331161026b57806343d752d3116102255780635ab1bd53116102005780635ab1bd53146104fb5780635dcb3bae1461050c578063644c45e01461051f578063675393bf14610527575f80fd5b806343d752d3146104d85780635741e5e9146104e057806359660bea146104e8575f80fd5b806327bb7a33146104575780632b5198b11461046a5780632eb3e6f41461049657806336fc697e146104aa5780633d683fd9146104b2578063419197fe146104c5575f80fd5b806317d7de7c116102d65780631eff4b22116102b15780631eff4b22146103ff578063214cdb801461043457806321df0da714610447578063223668441461044f575f80fd5b806317d7de7c146103cd5780631aa3a008146103e25780631c6b2190146103ec575f80fd5b806251884a1461031c57806301ffc9a71461034157806307e71a6e1461037d5780630fec111c1461039057806313299604146103a5578063138461e0146103c5575b5f80fd5b610324610749565b6040516001600160601b0390911681526020015b60405180910390f35b61036d61034f3660046130c5565b6001600160e01b0319165f9081526020819052604090205460ff1690565b6040519015158152602001610338565b61032461038b36600461310b565b61075b565b610398610860565b6040516103389190613170565b6103ad610a1e565b6040516001600160a01b039091168152602001610338565b610324610a30565b6103d5610a3f565b60405161033891906131fc565b6103ea610a4f565b005b6103246103fa36600461320e565b610afc565b6104267f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610338565b6103ea6104423660046130c5565b610b52565b6103ad610b7e565b61036d610b90565b6103ea610465366004613381565b610c86565b61047d610478366004613430565b610d2b565b6040516001600160c01b03199091168152602001610338565b6104265f8051602061402a83398151915281565b6103ea610d8f565b6103ea6104c0366004613506565b610dd4565b6103ea6104d3366004613563565b610e28565b6103ad610fe8565b61036d610ffa565b61047d6104f636600461357f565b6110ae565b6001546001600160a01b03166103ad565b61032461051a366004613618565b611105565b61032461115f565b6103ea610535366004613635565b61117a565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b03166103ad565b61047d610578366004613650565b611287565b6103ea61058b366004613635565b611307565b600161036d565b6103ad611389565b61036d6105ad366004613635565b6114ba565b6105ba61157f565b6040516001600160e01b03199091168152602001610338565b6105db6115b4565b6040516103389190613681565b6103ea6115d9565b6104265f80516020613faa83398151915281565b610324610612366004613635565b611677565b6105db6116b9565b6103ea61062d366004613760565b6116c9565b6103ea61064036600461320e565b611717565b6103ea610653366004613793565b611763565b6103ad61180a565b61042661066e3660046137bd565b611825565b5f8051602061402a833981519152546001600160a01b03166103ad565b6103ea61069e366004613635565b611839565b6106b66106b1366004613650565b611ab0565b6040805192835260ff909116602083015201610338565b6103ea6106db3660046137d9565b611b6a565b6104265f80516020613fca83398151915281565b6104265f8051602061400a83398151915281565b6103ea610716366004613817565b611c12565b6103ea6107293660046137bd565b611c88565b6103ea611c91565b6103ea610744366004613843565b611d05565b5f6107526115b4565b60200151905090565b5f610768335b5f36611e04565b610771336114ba565b6107955760405163637c41bb60e01b81523360048201526024015b60405180910390fd5b826107a86001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156107f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610819919061394d565b6001600160a01b0316336001600160a01b03161461084c5760405163086391f760e31b815233600482015260240161078c565b6108568484611f02565b91505b5092915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610910573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109349190613973565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161097c611389565b6001600160a01b031681526020018260010180546109999061398e565b80601f01602080910402602001604051908101604052809291908181526020018280546109c59061398e565b8015610a105780601f106109e757610100808354040283529160200191610a10565b820191905f5260205f20905b8154815290600101906020018083116109f357829003601f168201915b505050505081525091505090565b5f610a276115b4565b60800151905090565b5f610a3a30611f8e565b905090565b6060610a496115b4565b51919050565b610a57611389565b6001600160a01b0316336001600160a01b031614610a8a5760405163086391f760e31b815233600482015260240161078c565b5f8051602061400a833981519152546040805163be495be560e01b815290516001600160a01b039092169163be495be5916004808201925f9290919082900301818387803b158015610ada575f80fd5b505af1158015610aec573d5f803e3d5ffd5b50505050610afa5f19612182565b565b5f610b05611389565b6001600160a01b0316336001600160a01b031614610b385760405163086391f760e31b815233600482015260240161078c565b610b4133610761565b610b4a8261223b565b90505b919050565b610b5a6122bf565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f610b876115b4565b60400151905090565b5f610ba36001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015610be7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0b9190613973565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610c62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3a91906139d1565b610c8e6122bf565b610c988287611c12565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610d218382613a30565b5050505050505050565b5f610d34611389565b6001600160a01b0316336001600160a01b031614610d675760405163086391f760e31b815233600482015260240161078c565b610d7033610761565b610d818a8a8a8a8a8a8a8a8a61230d565b9a9950505050505050505050565b610d976122bf565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610ddc611389565b6001600160a01b0316336001600160a01b031614610e0f5760405163086391f760e31b815233600482015260240161078c565b610e1833610761565b610e238383836123cc565b505050565b610e30611389565b6001600160a01b0316336001600160a01b031614610e635760405163086391f760e31b815233600482015260240161078c565b30610e6c610a1e565b6001600160a01b031614610e935760405163b6d7537f60e01b815260040160405180910390fd5b816001600160a01b031663095ea7b3610eaa610fe8565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610f00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f249190613aea565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f9091906139d1565b507ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610fba610fe8565b604080516001600160a01b0390921682526001600160601b0384166020830152015b60405180910390a15050565b5f610ff16115b4565b60600151905090565b5f611003610b90565b1561107e576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015611057573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610ff19190810190613b5b565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b5f6110b8336114ba565b6110d75760405163637c41bb60e01b815233600482015260240161078c565b6110e033610761565b5f6110ea33611677565b90506110fa8188888888886123e3565b979650505050505050565b5f61110e611389565b6001600160a01b0316336001600160a01b0316146111415760405163086391f760e31b815233600482015260240161078c565b61114a33610761565b611155848484612499565b90505b9392505050565b5f80516020613faa833981519152546001600160601b031690565b6111826122bf565b806001600160a01b03163b5f036111b75760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078c565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015611231575060408051601f3d908101601f1916820190925261122e918101906139d1565b60015b6112595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078c565b806112825760405163fdeac91f60e01b81526001600160a01b038316600482015260240161078c565b505b50565b5f73__$05887d5853069c88bcd4c0a2107db45f29$__633f093cd66112aa61115f565b846040518363ffffffff1660e01b81526004016112c8929190613c2b565b602060405180830381865af41580156112e3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a9190613c4c565b3361131061180a565b6001600160a01b0316816001600160a01b03161461134b5760405162d1953b60e31b81526001600160a01b038216600482015260240161078c565b816001600160a01b03163b5f03611380576040516361798f2f60e11b81526001600160a01b038316600482015260240161078c565b6112828261265d565b5f805f80516020613faa83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156113f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141991906139d1565b156114a4576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561147a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061149e919061394d565b91505090565b54600160601b90046001600160a01b0316919050565b6001600160a01b0381165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f8051602061400a8339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af415801561155b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115891906139d1565b5f80516020613fea83398151915280545f9190600160a01b900460ff166115a6575f61149e565b638fb3603760e01b91505090565b6115bc61306f565b6115c4610b90565b156115d157610a3a6126b6565b610a3a6116b9565b6115e1611389565b6001600160a01b0316336001600160a01b0316146116145760405163086391f760e31b815233600482015260240161078c565b61161e600a61287d565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b15801561165f575f80fd5b505af1158015611671573d5f803e3d5ffd5b50505050565b6001600160a01b03165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90260205260409020546001600160601b031690565b6116c161306f565b610a3a6126b6565b6116d1611389565b6001600160a01b0316336001600160a01b0316146117045760405163086391f760e31b815233600482015260240161078c565b61170d33610761565b611282828261297e565b61171f611389565b6001600160a01b0316336001600160a01b0316146117525760405163086391f760e31b815233600482015260240161078c565b61128461175d610b7e565b82610e28565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117ce919061394d565b6001600160a01b0316336001600160a01b0316146118005760405162f0630960e01b815233600482015260240161078c565b6112828282611282565b5f80516020613fea833981519152546001600160a01b031690565b5f6118308282613c67565b90505b92915050565b611841611389565b6001600160a01b0316336001600160a01b0316146118745760405163086391f760e31b815233600482015260240161078c565b5f61187d610a1e565b90505f611888610b7e565b6040516370a0823160e01b81526001600160a01b0384811660048301529192505f918316906370a0823190602401602060405180830381865afa1580156118d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f59190613aea565b905080156119c4576001600160a01b03831630146119c457604051636eb1769f60e11b81526001600160a01b0384811660048301523060248301525f919084169063dd62ed3e90604401602060405180830381865afa15801561195a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061197e9190613aea565b9050818110156119c2576040516372c963b360e11b81526001600160a01b03808616600483015286166024820152604481018290526064810183905260840161078c565b505b6119cd846129e5565b801561167157306001600160a01b03841603611a535760405163095ea7b360e01b8152306004820152602481018290526001600160a01b0383169063095ea7b3906044016020604051808303815f875af1158015611a2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a5191906139d1565b505b611a5f82848684612a7e565b604080516001600160a01b038086168252861660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a150505050565b5f805f611abc84611287565b9050611aef7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b60405163b82d7ef560e01b81526001600160c01b0319831660048201526001600160a01b03919091169063b82d7ef5906024016040805180830381865afa158015611b3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b609190613c8a565b9250925050915091565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bd5919061394d565b6001600160a01b0316336001600160a01b031614611c075760405162f0630960e01b815233600482015260240161078c565b610e23838383612ad8565b611c1a6122bf565b611c238161117a565b611c2b610d8f565b6001600160a01b038216611c525760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020613faa83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61128233610761565b611c99611389565b6001600160a01b0316336001600160a01b031614611ccc5760405163086391f760e31b815233600482015260240161078c565b611cd6600a61287d565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e90602401611648565b611d0d6122bf565b611d1b898987878787610c86565b611d248a612c7e565b6001600160a01b038616611d4b576040516327eab2e360e11b815260040160405180910390fd5b86515f03611d6c5760405163591eebf360e11b815260040160405180910390fd5b5f80516020613fca83398151915280611d858982613a30565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b8715150217905560038101611dd68382613a30565b50611de7634a531f3360e01b610b52565b611df7632986755f60e11b610b52565b5050505050505050505050565b5f80516020613fea8339815191525f80611e3c611e1f61180a565b8730611e2e60045f8a8c613cae565b611e3791613cd5565b612c8f565b9150915081611efa5763ffffffff811615611ed757825460ff60a01b1916600160a01b178355611e6a61180a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611e9993929190613d0b565b5f604051808303815f87803b158015611eb0575f80fd5b505af1158015611ec2573d5f803e3d5ffd5b5050845460ff60a01b1916855550611efa9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161078c565b505050505050565b5f5f8051602061400a833981519152600101546040516303f38d3760e11b81526001600160601b038086166004830152841660248201526001600160a01b03909116906307e71a6e906044016020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118309190613973565b5f805f80516020613faa83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611ffa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201e91906139d1565b1561204a5780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161078c565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561209c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120c091906139d1565b6120e85760405163b9304b0d60e01b81526001600160a01b038416600482015260240161078c565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801561213a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215e9190613973565b81546001600160601b0319166001600160601b039190911690811790915592915050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f01545f80516020613fca833981519152906001600160a01b031663095ea7b36121c96115b4565b606001516040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303815f875af1158015612217573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2391906139d1565b5f5f8051602061402a833981519152600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af115801561229b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a9190613973565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610afa57604051631afcd79f60e31b815260040160405180910390fd5b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051632b5198b160e01b81525f915f8051602061400a833981519152916001600160a01b0390911690632b5198b19061237d908e908e908e908e908e908e908e908e908e90600401613d4a565b6020604051808303815f875af1158015612399573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123bd9190613c4c565b9b9a5050505050505050505050565b5f5f8051602061400a8339815191525b5050505050565b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051638dd2b78160e01b81525f915f8051602061400a833981519152916001600160a01b0390911690638dd2b7819061244d908b908b908b908b908b908b90600401613dbb565b6020604051808303815f875af1158015612469573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061248d9190613c4c565b98975050505050505050565b6001600160a01b0383165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f8051602061400a8339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af415801561253a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061255e91906139d1565b156125a9576001600160a01b0385165f8181526002830160205260409081902054905163d56c930160e01b815260048101929092526001600160601b0316602482015260440161078c565b6001810154604051632ee59dd760e11b81526001600160a01b0390911690635dcb3bae906125df90889088908890600401613e1a565b6020604051808303815f875af11580156125fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261f9190613973565b6001600160a01b039095165f90815260029091016020526040902080546001600160601b0386166001600160601b0319909116179055509192915050565b5f80516020613fea83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001610fdc565b6126be61306f565b5f6126d16001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612715573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127399190613973565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612792573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b691906139d1565b15612875577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031663f0ea17c36127f361115f565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015612834573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261285b9190810190613e4d565b60808101519092506001600160a01b031615612875575090565b61149e612d97565b5f805f8051602061402a8339815191525460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa1580156128d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128f79190613f25565b905061290b6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa15801561295a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611158919061394d565b5f8051602061400a83398151915254604051631bd44bf760e11b81526001600160a01b03909116906337a897ee906129bc9085908590600401613f40565b5f604051808303815f87803b1580156129d3575f80fd5b505af1158015611efa573d5f803e3d5ffd5b6129ed611389565b6001600160a01b0316336001600160a01b031614612a205760405163086391f760e31b815233600482015260240161078c565b612a2a600b61287d565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015612a6c575f80fd5b505af11580156123dc573d5f803e3d5ffd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611671908590612efb565b604080516001600160a01b03841681523360208201527f04d7077d43765a828a5b0398e13ddca074c675aba69101b22c5d0176d8689434910160405180910390a15f5f8051602061400a833981519152905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612b71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b959190613973565b6001600160a01b0385165f9081526002830160205260409081902080546001600160601b0319166001600160601b0393909316929092179091555163efac97cf60e01b81526004810183905273__$94a2c899be079b00d952d0d84fffaa5c34$__9063efac97cf90602401602060405180830381865af4158015612c1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c3f9190613973565b6001600160a01b03939093165f9081526002919091016020526040902080546001600160601b0319166001600160601b03909316929092179091555050565b612c866122bf565b61128481612f5c565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612cfd9190613f66565b5f60405180830381855afa9150503d805f8114612d35576040519150601f19603f3d011682016040523d82523d5f602084013e612d3a565b606091505b50915091508115612d8c576040815110612d6c5780806020019051810190612d629190613f7c565b9094509250612d8c565b6020815110612d8c5780806020019051810190612d8991906139d1565b93505b505094509492505050565b612d9f61306f565b5f5f80516020613fca83398151915290506040518060c00160405280825f018054612dc99061398e565b80601f0160208091040260200160405190810160405280929190818152602001828054612df59061398e565b8015612e405780601f10612e1757610100808354040283529160200191612e40565b820191905f5260205f20905b815481529060010190602001808311612e2357829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eb59190613973565b6001600160601b0316815260018301546001600160a01b0390811660208301525f604083015260028401541660608201526003830180546080909201916109999061398e565b5f612f0f6001600160a01b03841683612f6d565b905080515f14158015612f33575080806020019051810190612f3191906139d1565b155b15610e2357604051635274afe760e01b81526001600160a01b038416600482015260240161078c565b612f646122bf565b6112848161265d565b606061183083835f845f80856001600160a01b03168486604051612f919190613f66565b5f6040518083038185875af1925050503d805f8114612fcb576040519150601f19603f3d011682016040523d82523d5f602084013e612fd0565b606091505b5091509150612fe0868383612fea565b9695505050505050565b606082612fff57612ffa82613046565b611158565b815115801561301657506001600160a01b0384163b155b1561303f57604051639996b31560e01b81526001600160a01b038516600482015260240161078c565b5080611158565b8051156130565780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f602082840312156130d5575f80fd5b81356001600160e01b031981168114611158575f80fd5b6001600160601b0381168114611284575f80fd5b8035610b4d816130ec565b5f806040838503121561311c575f80fd5b8235613127816130ec565b91506020830135613137816130ec565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516131b8608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152610856610100840182613142565b602081525f6118306020830184613142565b5f6020828403121561321e575f80fd5b8135611158816130ec565b6001600160a01b0381168114611284575f80fd5b8035610b4d81613229565b60ff81168114611284575f80fd5b8035610b4d81613248565b8015158114611284575f80fd5b8035610b4d81613261565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156132af576132af613279565b60405290565b60405160c081016001600160401b03811182821017156132af576132af613279565b604051601f8201601f191681016001600160401b03811182821017156132ff576132ff613279565b604052919050565b5f6001600160401b0382111561331f5761331f613279565b50601f01601f191660200190565b5f82601f83011261333c575f80fd5b8135602083015f61335461334f84613307565b6132d7565b9050828152858383011115613367575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c08789031215613396575f80fd5b86356133a181613229565b955060208701356133b1816130ec565b945060408701356133c181613248565b935060608701356133d181613261565b925060808701356133e181613229565b915060a08701356001600160401b038111156133fb575f80fd5b61340789828a0161332d565b9150509295509295509295565b63ffffffff81168114611284575f80fd5b8035610b4d81613414565b5f805f805f805f805f6101208a8c031215613449575f80fd5b89356001600160401b0381111561345e575f80fd5b61346a8c828d0161332d565b99505060208a0135975060408a0135965060608a0135955060808a013561349081613414565b945061349e60a08b01613425565b93506134ac60c08b0161326e565b92506134ba60e08b0161326e565b91506101008a01356001600160401b038111156134d5575f80fd5b6134e18c828d0161332d565b9150509295985092959850929598565b6001600160c01b031981168114611284575f80fd5b5f805f60608486031215613518575f80fd5b8335613523816130ec565b92506020840135613533816134f1565b915060408401356001600160401b0381111561354d575f80fd5b6135598682870161332d565b9150509250925092565b5f8060408385031215613574575f80fd5b823561312781613229565b5f805f805f60a08688031215613593575f80fd5b85356001600160401b038111156135a8575f80fd5b6135b48882890161332d565b9550506020860135935060408601356135cc81613414565b9250606086013564ffffffffff811681146135e5575f80fd5b915060808601356001600160401b038111156135ff575f80fd5b61360b8882890161332d565b9150509295509295909350565b5f805f6060848603121561362a575f80fd5b833561352381613229565b5f60208284031215613645575f80fd5b813561115881613229565b5f60208284031215613660575f80fd5b81356001600160401b03811115613675575f80fd5b6108568482850161332d565b602081525f825160c0602084015261369c60e0840182613142565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b03606085015116608084015260808401516136ef60a08501826001600160a01b03169052565b5060a0840151838203601f190160c085015261370b8282613142565b95945050505050565b5f60408284031215613724575f80fd5b604080519081016001600160401b038111828210171561374657613746613279565b604052823581526020928301359281019290925250919050565b5f8060808385031215613771575f80fd5b61377b8484613714565b915061378a8460408501613714565b90509250929050565b5f80604083850312156137a4575f80fd5b82356137af81613229565b946020939093013593505050565b5f80604083850312156137ce575f80fd5b82356137af816134f1565b5f805f606084860312156137eb575f80fd5b83356137f681613229565b9250602084013561380681613229565b929592945050506040919091013590565b5f8060408385031215613828575f80fd5b823561383381613229565b9150602083013561313781613229565b5f805f805f805f805f806101408b8d03121561385d575f80fd5b6138668b61323d565b995061387460208c0161323d565b985061388260408c01613100565b975060608b01356001600160401b0381111561389c575f80fd5b6138a88d828e0161332d565b9750506138b760808c0161323d565b95506138c560a08c01613256565b94506138d360c08c0161326e565b93506138e160e08c0161323d565b92506101008b01356001600160401b038111156138fc575f80fd5b6139088d828e0161332d565b9250506101208b01356001600160401b03811115613924575f80fd5b6139308d828e0161332d565b9150509295989b9194979a5092959850565b8051610b4d81613229565b5f6020828403121561395d575f80fd5b815161115881613229565b8051610b4d816130ec565b5f60208284031215613983575f80fd5b8151611158816130ec565b600181811c908216806139a257607f821691505b6020821081036139c057634e487b7160e01b5f52602260045260245ffd5b50919050565b8051610b4d81613261565b5f602082840312156139e1575f80fd5b815161115881613261565b601f821115610e2357805f5260205f20601f840160051c81016020851015613a115750805b601f840160051c820191505b818110156123dc575f8155600101613a1d565b81516001600160401b03811115613a4957613a49613279565b613a5d81613a57845461398e565b846139ec565b6020601f821160018114613a8f575f8315613a785750848201515b5f19600385901b1c1916600184901b1784556123dc565b5f84815260208120601f198516915b82811015613abe5787850151825560209485019460019092019101613a9e565b5084821015613adb57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215613afa575f80fd5b5051919050565b8051610b4d81613248565b5f82601f830112613b1b575f80fd5b8151602083015f613b2e61334f84613307565b9050828152858383011115613b41575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215613b6b575f80fd5b81516001600160401b03811115613b80575f80fd5b820160e08185031215613b91575f80fd5b613b9961328d565b613ba282613968565b8152613bb060208301613968565b6020820152613bc160408301613b01565b6040820152613bd2606083016139c6565b6060820152613be360808301613942565b6080820152613bf460a08301613942565b60a082015260c08201516001600160401b03811115613c11575f80fd5b613c1d86828501613b0c565b60c083015250949350505050565b6001600160601b0383168152604060208201525f6111556040830184613142565b5f60208284031215613c5c575f80fd5b8151611158816134f1565b808202811582820484141761183357634e487b7160e01b5f52601160045260245ffd5b5f8060408385031215613c9b575f80fd5b8251602084015190925061313781613248565b5f8085851115613cbc575f80fd5b83861115613cc8575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015610859576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b61012081525f613d5e61012083018c613142565b8a602084015289604084015288606084015263ffffffff8816608084015263ffffffff871660a084015285151560c084015284151560e0840152828103610100840152613dab8185613142565b9c9b505050505050505050505050565b6001600160601b038716815260c060208201525f613ddc60c0830188613142565b86604084015263ffffffff8616606084015264ffffffffff8516608084015282810360a0840152613e0d8185613142565b9998505050505050505050565b6001600160a01b03841681526001600160c01b0319831660208201526060604082018190525f9061370b90830184613142565b5f60208284031215613e5d575f80fd5b81516001600160401b03811115613e72575f80fd5b820160c08185031215613e83575f80fd5b613e8b6132b5565b81516001600160401b03811115613ea0575f80fd5b613eac86828501613b0c565b825250613ebb60208301613968565b6020820152613ecc60408301613942565b6040820152613edd60608301613942565b6060820152613eee60808301613942565b608082015260a08201516001600160401b03811115613f0b575f80fd5b613f1786828501613b0c565b60a083015250949350505050565b5f60208284031215613f35575f80fd5b815161115881613248565b825181526020808401518183015282516040830152820151606082015260808101611158565b5f82518060208501845e5f920191825250919050565b5f8060408385031215613f8d575f80fd5b8251613f9881613261565b60208401519092506131378161341456fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00ffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00aab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f900ffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00a2646970667358221220bb441a4c5602b35a0c9106e01da60f10b9ea4aef9c073636714c957b35a7967164736f6c634300081a0033",
         | 
| 1424 | 
            +
              "linkReferences": {
         | 
| 1425 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1426 | 
            +
                  "AmountLib": [
         | 
| 1427 | 
            +
                    {
         | 
| 1428 | 
            +
                      "length": 20,
         | 
| 1429 | 
            +
                      "start": 3812
         | 
| 1430 | 
            +
                    }
         | 
| 1431 | 
            +
                  ]
         | 
| 1432 | 
            +
                },
         | 
| 1433 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1434 | 
            +
                  "NftIdLib": [
         | 
| 1435 | 
            +
                    {
         | 
| 1436 | 
            +
                      "length": 20,
         | 
| 1437 | 
            +
                      "start": 2279
         | 
| 1438 | 
            +
                    },
         | 
| 1439 | 
            +
                    {
         | 
| 1440 | 
            +
                      "length": 20,
         | 
| 1441 | 
            +
                      "start": 3142
         | 
| 1442 | 
            +
                    },
         | 
| 1443 | 
            +
                    {
         | 
| 1444 | 
            +
                      "length": 20,
         | 
| 1445 | 
            +
                      "start": 5081
         | 
| 1446 | 
            +
                    },
         | 
| 1447 | 
            +
                    {
         | 
| 1448 | 
            +
                      "length": 20,
         | 
| 1449 | 
            +
                      "start": 5439
         | 
| 1450 | 
            +
                    },
         | 
| 1451 | 
            +
                    {
         | 
| 1452 | 
            +
                      "length": 20,
         | 
| 1453 | 
            +
                      "start": 8158
         | 
| 1454 | 
            +
                    },
         | 
| 1455 | 
            +
                    {
         | 
| 1456 | 
            +
                      "length": 20,
         | 
| 1457 | 
            +
                      "start": 9502
         | 
| 1458 | 
            +
                    },
         | 
| 1459 | 
            +
                    {
         | 
| 1460 | 
            +
                      "length": 20,
         | 
| 1461 | 
            +
                      "start": 10102
         | 
| 1462 | 
            +
                    },
         | 
| 1463 | 
            +
                    {
         | 
| 1464 | 
            +
                      "length": 20,
         | 
| 1465 | 
            +
                      "start": 11080
         | 
| 1466 | 
            +
                    },
         | 
| 1467 | 
            +
                    {
         | 
| 1468 | 
            +
                      "length": 20,
         | 
| 1469 | 
            +
                      "start": 11263
         | 
| 1470 | 
            +
                    },
         | 
| 1471 | 
            +
                    {
         | 
| 1472 | 
            +
                      "length": 20,
         | 
| 1473 | 
            +
                      "start": 11880
         | 
| 1474 | 
            +
                    }
         | 
| 1475 | 
            +
                  ]
         | 
| 1476 | 
            +
                },
         | 
| 1477 | 
            +
                "contracts/type/Referral.sol": {
         | 
| 1478 | 
            +
                  "ReferralLib": [
         | 
| 1479 | 
            +
                    {
         | 
| 1480 | 
            +
                      "length": 20,
         | 
| 1481 | 
            +
                      "start": 4774
         | 
| 1482 | 
            +
                    }
         | 
| 1483 | 
            +
                  ]
         | 
| 1484 | 
            +
                }
         | 
| 1485 | 
            +
              },
         | 
| 1486 | 
            +
              "deployedLinkReferences": {
         | 
| 1487 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1488 | 
            +
                  "AmountLib": [
         | 
| 1489 | 
            +
                    {
         | 
| 1490 | 
            +
                      "length": 20,
         | 
| 1491 | 
            +
                      "start": 3784
         | 
| 1492 | 
            +
                    }
         | 
| 1493 | 
            +
                  ]
         | 
| 1494 | 
            +
                },
         | 
| 1495 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1496 | 
            +
                  "NftIdLib": [
         | 
| 1497 | 
            +
                    {
         | 
| 1498 | 
            +
                      "length": 20,
         | 
| 1499 | 
            +
                      "start": 2251
         | 
| 1500 | 
            +
                    },
         | 
| 1501 | 
            +
                    {
         | 
| 1502 | 
            +
                      "length": 20,
         | 
| 1503 | 
            +
                      "start": 3114
         | 
| 1504 | 
            +
                    },
         | 
| 1505 | 
            +
                    {
         | 
| 1506 | 
            +
                      "length": 20,
         | 
| 1507 | 
            +
                      "start": 5053
         | 
| 1508 | 
            +
                    },
         | 
| 1509 | 
            +
                    {
         | 
| 1510 | 
            +
                      "length": 20,
         | 
| 1511 | 
            +
                      "start": 5411
         | 
| 1512 | 
            +
                    },
         | 
| 1513 | 
            +
                    {
         | 
| 1514 | 
            +
                      "length": 20,
         | 
| 1515 | 
            +
                      "start": 8130
         | 
| 1516 | 
            +
                    },
         | 
| 1517 | 
            +
                    {
         | 
| 1518 | 
            +
                      "length": 20,
         | 
| 1519 | 
            +
                      "start": 9474
         | 
| 1520 | 
            +
                    },
         | 
| 1521 | 
            +
                    {
         | 
| 1522 | 
            +
                      "length": 20,
         | 
| 1523 | 
            +
                      "start": 10074
         | 
| 1524 | 
            +
                    },
         | 
| 1525 | 
            +
                    {
         | 
| 1526 | 
            +
                      "length": 20,
         | 
| 1527 | 
            +
                      "start": 11052
         | 
| 1528 | 
            +
                    },
         | 
| 1529 | 
            +
                    {
         | 
| 1530 | 
            +
                      "length": 20,
         | 
| 1531 | 
            +
                      "start": 11235
         | 
| 1532 | 
            +
                    },
         | 
| 1533 | 
            +
                    {
         | 
| 1534 | 
            +
                      "length": 20,
         | 
| 1535 | 
            +
                      "start": 11852
         | 
| 1536 | 
            +
                    }
         | 
| 1537 | 
            +
                  ]
         | 
| 1538 | 
            +
                },
         | 
| 1539 | 
            +
                "contracts/type/Referral.sol": {
         | 
| 1540 | 
            +
                  "ReferralLib": [
         | 
| 1541 | 
            +
                    {
         | 
| 1542 | 
            +
                      "length": 20,
         | 
| 1543 | 
            +
                      "start": 4746
         | 
| 1544 | 
            +
                    }
         | 
| 1545 | 
            +
                  ]
         | 
| 1546 | 
            +
                }
         | 
| 1547 | 
            +
              }
         | 
| 1548 | 
            +
            }
         |