@etherisc/gif-next 0.0.2-e875d61-189 → 0.0.2-e9148e0-933
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 +179 -26
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +176 -23
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +618 -0
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +129 -23
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +74 -181
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +55 -177
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +397 -70
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +444 -73
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +462 -1400
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2412 -1075
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +931 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +508 -0
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +276 -36
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +33 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +37 -245
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IDistribution.sol/IDistribution.json} +2 -2
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +381 -77
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +444 -0
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +177 -75
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ServiceBase.sol/ServiceBase.json → service/IDistributionService.sol/IDistributionService.json} +204 -58
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +235 -50
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +325 -51
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +421 -53
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +448 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +479 -94
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +448 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +186 -12
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +358 -37
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +947 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +466 -129
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1293 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +513 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +117 -37
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +175 -54
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +190 -37
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/RegisterableUpgradable.sol/RegisterableUpgradable.json} +188 -90
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +204 -36
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +283 -62
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +103 -23
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +52 -13
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +15 -2
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
 - package/contracts/components/BaseComponent.sol +26 -29
 - package/contracts/components/Distribution.sol +159 -0
 - package/contracts/components/IBaseComponent.sol +9 -3
 - package/contracts/components/IDistributionComponent.sol +44 -0
 - package/contracts/components/IPoolComponent.sol +14 -9
 - package/contracts/components/IProductComponent.sol +25 -9
 - package/contracts/components/Pool.sol +89 -38
 - package/contracts/components/Product.sol +196 -46
 - package/contracts/experiment/cloning/Cloner.sol +47 -0
 - package/contracts/instance/AccessManagedSimple.sol +115 -0
 - package/contracts/instance/AccessManagerSimple.sol +692 -0
 - package/contracts/instance/IAccessManagerSimple.sol +391 -0
 - package/contracts/instance/IInstance.sol +34 -43
 - package/contracts/instance/IInstanceService.sol +30 -0
 - package/contracts/instance/Instance.sol +427 -55
 - package/contracts/instance/InstanceAccessManager.sol +288 -0
 - package/contracts/instance/InstanceReader.sol +306 -0
 - package/contracts/instance/InstanceService.sol +192 -0
 - package/contracts/instance/InstanceServiceManager.sol +57 -0
 - package/contracts/instance/base/ComponentServiceBase.sol +92 -10
 - package/contracts/instance/base/IInstanceBase.sol +6 -2
 - package/contracts/instance/base/IKeyValueStore.sol +13 -14
 - package/contracts/instance/base/ILifecycle.sol +3 -3
 - package/contracts/instance/base/KeyValueStore.sol +49 -38
 - package/contracts/instance/base/Lifecycle.sol +11 -3
 - package/contracts/instance/module/IAccess.sol +38 -0
 - package/contracts/instance/module/IBundle.sol +20 -0
 - package/contracts/instance/module/IDistribution.sol +39 -0
 - package/contracts/instance/module/IPolicy.sol +45 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +44 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ComponentOwnerService.sol +238 -76
 - package/contracts/instance/service/DistributionService.sol +88 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +54 -0
 - package/contracts/instance/service/IComponentOwnerService.sol +1 -3
 - package/contracts/instance/service/IDistributionService.sol +12 -0
 - package/contracts/instance/service/IPoolService.sol +8 -1
 - package/contracts/instance/service/IProductService.sol +56 -7
 - package/contracts/instance/service/PoolService.sol +117 -52
 - package/contracts/instance/service/PoolServiceManager.sol +54 -0
 - package/contracts/instance/service/ProductService.sol +351 -169
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +80 -37
 - package/contracts/registry/IRegistry.sol +47 -25
 - package/contracts/registry/IRegistryService.sol +50 -0
 - package/contracts/registry/ITransferInterceptor.sol +6 -0
 - package/contracts/registry/Registry.sol +333 -270
 - package/contracts/registry/RegistryService.sol +358 -0
 - package/contracts/registry/RegistryServiceManager.sol +80 -0
 - package/contracts/registry/TokenRegistry.sol +111 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +6 -2
 - package/contracts/shared/INftOwnable.sol +22 -0
 - package/contracts/shared/IRegisterable.sol +8 -15
 - package/contracts/{instance/base → shared}/IService.sol +3 -3
 - package/contracts/shared/IVersionable.sol +55 -11
 - package/contracts/shared/NftOwnable.sol +134 -0
 - package/contracts/shared/ProxyManager.sol +94 -0
 - package/contracts/shared/Registerable.sol +63 -59
 - package/contracts/shared/RegisterableUpgradable.sol +16 -0
 - package/contracts/shared/Service.sol +55 -0
 - package/contracts/shared/TokenHandler.sol +27 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +113 -55
 - package/contracts/test/TestFee.sol +2 -2
 - package/contracts/test/TestRegisterable.sol +5 -6
 - package/contracts/test/TestRoleId.sol +1 -1
 - package/contracts/test/TestService.sol +5 -13
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +10 -5
 - package/contracts/types/Key32.sol +8 -3
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +40 -11
 - package/contracts/types/Referral.sol +85 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +62 -10
 - package/contracts/types/StateId.sol +5 -1
 - package/contracts/types/Timestamp.sol +7 -3
 - package/contracts/types/UFixed.sol +128 -12
 - package/contracts/types/Version.sol +13 -1
 - package/package.json +4 -3
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
 - package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -265
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -265
 - package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
 - package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -136
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -136
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -273
 - package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -273
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
 - package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
 - package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -531
 - package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
 - package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -531
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
 - package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -455
 - package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
 - package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -436
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/contracts/experiment/statemachine/README.md +0 -112
 - package/contracts/instance/IInstanceLinked.sol +0 -8
 - package/contracts/instance/base/InstanceBase.sol +0 -84
 - package/contracts/instance/base/ModuleBase.sol +0 -46
 - package/contracts/instance/base/ServiceBase.sol +0 -37
 - package/contracts/instance/module/access/Access.sol +0 -149
 - package/contracts/instance/module/access/IAccess.sol +0 -53
 - package/contracts/instance/module/bundle/BundleModule.sol +0 -135
 - package/contracts/instance/module/bundle/IBundle.sol +0 -51
 - package/contracts/instance/module/compensation/CompensationModule.sol +0 -17
 - package/contracts/instance/module/compensation/ICompensation.sol +0 -10
 - package/contracts/instance/module/component/ComponentModule.sol +0 -81
 - package/contracts/instance/module/component/IComponent.sol +0 -29
 - package/contracts/instance/module/policy/IPolicy.sol +0 -59
 - package/contracts/instance/module/policy/PolicyModule.sol +0 -89
 - package/contracts/instance/module/pool/IPoolModule.sol +0 -40
 - package/contracts/instance/module/pool/PoolModule.sol +0 -90
 - package/contracts/instance/module/risk/IRisk.sol +0 -10
 - package/contracts/instance/module/risk/RiskModule.sol +0 -17
 - package/contracts/instance/module/treasury/ITreasury.sol +0 -96
 - package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
 - package/contracts/instance/module/treasury/TreasuryModule.sol +0 -171
 - package/contracts/registry/IChainNft.sol +0 -21
 - package/contracts/registry/IRegistryLinked.sol +0 -8
 - package/contracts/shared/IOwnable.sol +0 -6
 - package/contracts/test/TestPool.sol +0 -24
 - package/contracts/test/TestProduct.sol +0 -51
 
| 
         @@ -0,0 +1,618 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "Distribution",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/components/Distribution.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    },
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    },
         
     | 
| 
      
 18 
     | 
    
         
            +
                    {
         
     | 
| 
      
 19 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 22 
     | 
    
         
            +
                    },
         
     | 
| 
      
 23 
     | 
    
         
            +
                    {
         
     | 
| 
      
 24 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "name": "verifying",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 27 
     | 
    
         
            +
                    },
         
     | 
| 
      
 28 
     | 
    
         
            +
                    {
         
     | 
| 
      
 29 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 30 
     | 
    
         
            +
                        {
         
     | 
| 
      
 31 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 32 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 33 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 34 
     | 
    
         
            +
                        },
         
     | 
| 
      
 35 
     | 
    
         
            +
                        {
         
     | 
| 
      
 36 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 37 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 38 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 39 
     | 
    
         
            +
                        }
         
     | 
| 
      
 40 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 42 
     | 
    
         
            +
                      "name": "distributionFee",
         
     | 
| 
      
 43 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 44 
     | 
    
         
            +
                    },
         
     | 
| 
      
 45 
     | 
    
         
            +
                    {
         
     | 
| 
      
 46 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 49 
     | 
    
         
            +
                    }
         
     | 
| 
      
 50 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 51 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "type": "constructor"
         
     | 
| 
      
 53 
     | 
    
         
            +
                },
         
     | 
| 
      
 54 
     | 
    
         
            +
                {
         
     | 
| 
      
 55 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 56 
     | 
    
         
            +
                    {
         
     | 
| 
      
 57 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 60 
     | 
    
         
            +
                    },
         
     | 
| 
      
 61 
     | 
    
         
            +
                    {
         
     | 
| 
      
 62 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 65 
     | 
    
         
            +
                    }
         
     | 
| 
      
 66 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "name": "ErrorAlreadyLinked",
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 69 
     | 
    
         
            +
                },
         
     | 
| 
      
 70 
     | 
    
         
            +
                {
         
     | 
| 
      
 71 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 72 
     | 
    
         
            +
                    {
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 76 
     | 
    
         
            +
                    }
         
     | 
| 
      
 77 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "name": "ErrorContractNotRegistered",
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 80 
     | 
    
         
            +
                },
         
     | 
| 
      
 81 
     | 
    
         
            +
                {
         
     | 
| 
      
 82 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 83 
     | 
    
         
            +
                    {
         
     | 
| 
      
 84 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 87 
     | 
    
         
            +
                    }
         
     | 
| 
      
 88 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "name": "ErrorNotOwner",
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 91 
     | 
    
         
            +
                },
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 94 
     | 
    
         
            +
                    {
         
     | 
| 
      
 95 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 98 
     | 
    
         
            +
                    }
         
     | 
| 
      
 99 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 102 
     | 
    
         
            +
                },
         
     | 
| 
      
 103 
     | 
    
         
            +
                {
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 105 
     | 
    
         
            +
                    {
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 109 
     | 
    
         
            +
                    }
         
     | 
| 
      
 110 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 111 
     | 
    
         
            +
                  "name": "ErrorRegisterableNotRegistry",
         
     | 
| 
      
 112 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 113 
     | 
    
         
            +
                },
         
     | 
| 
      
 114 
     | 
    
         
            +
                {
         
     | 
| 
      
 115 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "name": "ErrorRegistryAddressZero",
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 118 
     | 
    
         
            +
                },
         
     | 
| 
      
 119 
     | 
    
         
            +
                {
         
     | 
| 
      
 120 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 121 
     | 
    
         
            +
                    {
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 124 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 125 
     | 
    
         
            +
                    }
         
     | 
| 
      
 126 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 127 
     | 
    
         
            +
                  "name": "ErrorRegistryAlreadyInitialized",
         
     | 
| 
      
 128 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 129 
     | 
    
         
            +
                },
         
     | 
| 
      
 130 
     | 
    
         
            +
                {
         
     | 
| 
      
 131 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "name": "ErrorRegistryNotInitialized",
         
     | 
| 
      
 133 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 134 
     | 
    
         
            +
                },
         
     | 
| 
      
 135 
     | 
    
         
            +
                {
         
     | 
| 
      
 136 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 137 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 138 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 139 
     | 
    
         
            +
                },
         
     | 
| 
      
 140 
     | 
    
         
            +
                {
         
     | 
| 
      
 141 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 142 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 143 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 144 
     | 
    
         
            +
                },
         
     | 
| 
      
 145 
     | 
    
         
            +
                {
         
     | 
| 
      
 146 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 147 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 148 
     | 
    
         
            +
                    {
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 151 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 152 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 153 
     | 
    
         
            +
                    }
         
     | 
| 
      
 154 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 155 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 156 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 157 
     | 
    
         
            +
                },
         
     | 
| 
      
 158 
     | 
    
         
            +
                {
         
     | 
| 
      
 159 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 160 
     | 
    
         
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
      
 161 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 162 
     | 
    
         
            +
                    {
         
     | 
| 
      
 163 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 164 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 165 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 166 
     | 
    
         
            +
                    }
         
     | 
| 
      
 167 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 169 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 170 
     | 
    
         
            +
                },
         
     | 
| 
      
 171 
     | 
    
         
            +
                {
         
     | 
| 
      
 172 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 173 
     | 
    
         
            +
                    {
         
     | 
| 
      
 174 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 175 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 176 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 177 
     | 
    
         
            +
                    },
         
     | 
| 
      
 178 
     | 
    
         
            +
                    {
         
     | 
| 
      
 179 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 180 
     | 
    
         
            +
                      "name": "netPremiumAmount",
         
     | 
| 
      
 181 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 182 
     | 
    
         
            +
                    }
         
     | 
| 
      
 183 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 184 
     | 
    
         
            +
                  "name": "calculateFeeAmount",
         
     | 
| 
      
 185 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 186 
     | 
    
         
            +
                    {
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 188 
     | 
    
         
            +
                      "name": "feeAmount",
         
     | 
| 
      
 189 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 190 
     | 
    
         
            +
                    }
         
     | 
| 
      
 191 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 192 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 193 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 194 
     | 
    
         
            +
                },
         
     | 
| 
      
 195 
     | 
    
         
            +
                {
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 197 
     | 
    
         
            +
                    {
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 200 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 201 
     | 
    
         
            +
                    },
         
     | 
| 
      
 202 
     | 
    
         
            +
                    {
         
     | 
| 
      
 203 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 204 
     | 
    
         
            +
                      "name": "netPremiumAmount",
         
     | 
| 
      
 205 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 206 
     | 
    
         
            +
                    }
         
     | 
| 
      
 207 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 208 
     | 
    
         
            +
                  "name": "calculateRenewalFeeAmount",
         
     | 
| 
      
 209 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 210 
     | 
    
         
            +
                    {
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "name": "feeAmount",
         
     | 
| 
      
 213 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 214 
     | 
    
         
            +
                    }
         
     | 
| 
      
 215 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 216 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 218 
     | 
    
         
            +
                },
         
     | 
| 
      
 219 
     | 
    
         
            +
                {
         
     | 
| 
      
 220 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 221 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 223 
     | 
    
         
            +
                    {
         
     | 
| 
      
 224 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 225 
     | 
    
         
            +
                        {
         
     | 
| 
      
 226 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 227 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 228 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 229 
     | 
    
         
            +
                        },
         
     | 
| 
      
 230 
     | 
    
         
            +
                        {
         
     | 
| 
      
 231 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 232 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 233 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 234 
     | 
    
         
            +
                        },
         
     | 
| 
      
 235 
     | 
    
         
            +
                        {
         
     | 
| 
      
 236 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 237 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 238 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 239 
     | 
    
         
            +
                        },
         
     | 
| 
      
 240 
     | 
    
         
            +
                        {
         
     | 
| 
      
 241 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 242 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 243 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 244 
     | 
    
         
            +
                        },
         
     | 
| 
      
 245 
     | 
    
         
            +
                        {
         
     | 
| 
      
 246 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 247 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 248 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 249 
     | 
    
         
            +
                        },
         
     | 
| 
      
 250 
     | 
    
         
            +
                        {
         
     | 
| 
      
 251 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 252 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 253 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 254 
     | 
    
         
            +
                        },
         
     | 
| 
      
 255 
     | 
    
         
            +
                        {
         
     | 
| 
      
 256 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 257 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 258 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 259 
     | 
    
         
            +
                        }
         
     | 
| 
      
 260 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 261 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 262 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 263 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 264 
     | 
    
         
            +
                    },
         
     | 
| 
      
 265 
     | 
    
         
            +
                    {
         
     | 
| 
      
 266 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 267 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 268 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 269 
     | 
    
         
            +
                    }
         
     | 
| 
      
 270 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 271 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 272 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 273 
     | 
    
         
            +
                },
         
     | 
| 
      
 274 
     | 
    
         
            +
                {
         
     | 
| 
      
 275 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 276 
     | 
    
         
            +
                  "name": "getInstance",
         
     | 
| 
      
 277 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 278 
     | 
    
         
            +
                    {
         
     | 
| 
      
 279 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 280 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 281 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 282 
     | 
    
         
            +
                    }
         
     | 
| 
      
 283 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 284 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 285 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 286 
     | 
    
         
            +
                },
         
     | 
| 
      
 287 
     | 
    
         
            +
                {
         
     | 
| 
      
 288 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 289 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 290 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 291 
     | 
    
         
            +
                    {
         
     | 
| 
      
 292 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 293 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 294 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 295 
     | 
    
         
            +
                    }
         
     | 
| 
      
 296 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 297 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 298 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 299 
     | 
    
         
            +
                },
         
     | 
| 
      
 300 
     | 
    
         
            +
                {
         
     | 
| 
      
 301 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 302 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 303 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 304 
     | 
    
         
            +
                    {
         
     | 
| 
      
 305 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 306 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 307 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 308 
     | 
    
         
            +
                    }
         
     | 
| 
      
 309 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 310 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 311 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 312 
     | 
    
         
            +
                },
         
     | 
| 
      
 313 
     | 
    
         
            +
                {
         
     | 
| 
      
 314 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 315 
     | 
    
         
            +
                  "name": "getProductNftId",
         
     | 
| 
      
 316 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 317 
     | 
    
         
            +
                    {
         
     | 
| 
      
 318 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 319 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 320 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 321 
     | 
    
         
            +
                    }
         
     | 
| 
      
 322 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 323 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 324 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 325 
     | 
    
         
            +
                },
         
     | 
| 
      
 326 
     | 
    
         
            +
                {
         
     | 
| 
      
 327 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 328 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 330 
     | 
    
         
            +
                    {
         
     | 
| 
      
 331 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 332 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 333 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 334 
     | 
    
         
            +
                    }
         
     | 
| 
      
 335 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 336 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 337 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 338 
     | 
    
         
            +
                },
         
     | 
| 
      
 339 
     | 
    
         
            +
                {
         
     | 
| 
      
 340 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 341 
     | 
    
         
            +
                  "name": "getSetupInfo",
         
     | 
| 
      
 342 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 343 
     | 
    
         
            +
                    {
         
     | 
| 
      
 344 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 345 
     | 
    
         
            +
                        {
         
     | 
| 
      
 346 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 347 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 348 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 349 
     | 
    
         
            +
                        },
         
     | 
| 
      
 350 
     | 
    
         
            +
                        {
         
     | 
| 
      
 351 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 352 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 353 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 354 
     | 
    
         
            +
                        },
         
     | 
| 
      
 355 
     | 
    
         
            +
                        {
         
     | 
| 
      
 356 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 357 
     | 
    
         
            +
                            {
         
     | 
| 
      
 358 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 359 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 360 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 361 
     | 
    
         
            +
                            },
         
     | 
| 
      
 362 
     | 
    
         
            +
                            {
         
     | 
| 
      
 363 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 364 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 365 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 366 
     | 
    
         
            +
                            }
         
     | 
| 
      
 367 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 368 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 369 
     | 
    
         
            +
                          "name": "distributionFee",
         
     | 
| 
      
 370 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 371 
     | 
    
         
            +
                        },
         
     | 
| 
      
 372 
     | 
    
         
            +
                        {
         
     | 
| 
      
 373 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 374 
     | 
    
         
            +
                          "name": "isIntercepting",
         
     | 
| 
      
 375 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 376 
     | 
    
         
            +
                        },
         
     | 
| 
      
 377 
     | 
    
         
            +
                        {
         
     | 
| 
      
 378 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 379 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 380 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 381 
     | 
    
         
            +
                        }
         
     | 
| 
      
 382 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 383 
     | 
    
         
            +
                      "internalType": "struct ISetup.DistributionSetupInfo",
         
     | 
| 
      
 384 
     | 
    
         
            +
                      "name": "setupInfo",
         
     | 
| 
      
 385 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 386 
     | 
    
         
            +
                    }
         
     | 
| 
      
 387 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 388 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 389 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 390 
     | 
    
         
            +
                },
         
     | 
| 
      
 391 
     | 
    
         
            +
                {
         
     | 
| 
      
 392 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 393 
     | 
    
         
            +
                  "name": "getToken",
         
     | 
| 
      
 394 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 395 
     | 
    
         
            +
                    {
         
     | 
| 
      
 396 
     | 
    
         
            +
                      "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 397 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 398 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 399 
     | 
    
         
            +
                    }
         
     | 
| 
      
 400 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 401 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 402 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 403 
     | 
    
         
            +
                },
         
     | 
| 
      
 404 
     | 
    
         
            +
                {
         
     | 
| 
      
 405 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 406 
     | 
    
         
            +
                  "name": "getWallet",
         
     | 
| 
      
 407 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 408 
     | 
    
         
            +
                    {
         
     | 
| 
      
 409 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 410 
     | 
    
         
            +
                      "name": "walletAddress",
         
     | 
| 
      
 411 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 412 
     | 
    
         
            +
                    }
         
     | 
| 
      
 413 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 414 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 415 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 416 
     | 
    
         
            +
                },
         
     | 
| 
      
 417 
     | 
    
         
            +
                {
         
     | 
| 
      
 418 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 419 
     | 
    
         
            +
                  "name": "isVerifying",
         
     | 
| 
      
 420 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 421 
     | 
    
         
            +
                    {
         
     | 
| 
      
 422 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 423 
     | 
    
         
            +
                      "name": "verifying",
         
     | 
| 
      
 424 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 425 
     | 
    
         
            +
                    }
         
     | 
| 
      
 426 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 427 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 428 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 429 
     | 
    
         
            +
                },
         
     | 
| 
      
 430 
     | 
    
         
            +
                {
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 432 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 433 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 434 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 435 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 436 
     | 
    
         
            +
                },
         
     | 
| 
      
 437 
     | 
    
         
            +
                {
         
     | 
| 
      
 438 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 439 
     | 
    
         
            +
                  "name": "lock",
         
     | 
| 
      
 440 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 441 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 442 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 443 
     | 
    
         
            +
                },
         
     | 
| 
      
 444 
     | 
    
         
            +
                {
         
     | 
| 
      
 445 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 446 
     | 
    
         
            +
                    {
         
     | 
| 
      
 447 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 448 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 449 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 450 
     | 
    
         
            +
                    },
         
     | 
| 
      
 451 
     | 
    
         
            +
                    {
         
     | 
| 
      
 452 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 453 
     | 
    
         
            +
                      "name": "feeAmount",
         
     | 
| 
      
 454 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 455 
     | 
    
         
            +
                    }
         
     | 
| 
      
 456 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "name": "processRenewal",
         
     | 
| 
      
 458 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 459 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 460 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 461 
     | 
    
         
            +
                },
         
     | 
| 
      
 462 
     | 
    
         
            +
                {
         
     | 
| 
      
 463 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 464 
     | 
    
         
            +
                    {
         
     | 
| 
      
 465 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 466 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 467 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 468 
     | 
    
         
            +
                    },
         
     | 
| 
      
 469 
     | 
    
         
            +
                    {
         
     | 
| 
      
 470 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 471 
     | 
    
         
            +
                      "name": "feeAmount",
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 473 
     | 
    
         
            +
                    }
         
     | 
| 
      
 474 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "name": "processSale",
         
     | 
| 
      
 476 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 477 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 478 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 479 
     | 
    
         
            +
                },
         
     | 
| 
      
 480 
     | 
    
         
            +
                {
         
     | 
| 
      
 481 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 482 
     | 
    
         
            +
                    {
         
     | 
| 
      
 483 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 484 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 485 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 486 
     | 
    
         
            +
                    }
         
     | 
| 
      
 487 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 488 
     | 
    
         
            +
                  "name": "referralIsValid",
         
     | 
| 
      
 489 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 490 
     | 
    
         
            +
                    {
         
     | 
| 
      
 491 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 492 
     | 
    
         
            +
                      "name": "isValid",
         
     | 
| 
      
 493 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 494 
     | 
    
         
            +
                    }
         
     | 
| 
      
 495 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 496 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 497 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 498 
     | 
    
         
            +
                },
         
     | 
| 
      
 499 
     | 
    
         
            +
                {
         
     | 
| 
      
 500 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 501 
     | 
    
         
            +
                    {
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 503 
     | 
    
         
            +
                        {
         
     | 
| 
      
 504 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 505 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 506 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 507 
     | 
    
         
            +
                        },
         
     | 
| 
      
 508 
     | 
    
         
            +
                        {
         
     | 
| 
      
 509 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 510 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 511 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 512 
     | 
    
         
            +
                        }
         
     | 
| 
      
 513 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 514 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 515 
     | 
    
         
            +
                      "name": "distributionFee",
         
     | 
| 
      
 516 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 517 
     | 
    
         
            +
                    }
         
     | 
| 
      
 518 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 519 
     | 
    
         
            +
                  "name": "setFees",
         
     | 
| 
      
 520 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 522 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 523 
     | 
    
         
            +
                },
         
     | 
| 
      
 524 
     | 
    
         
            +
                {
         
     | 
| 
      
 525 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 526 
     | 
    
         
            +
                    {
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 528 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 529 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 530 
     | 
    
         
            +
                    }
         
     | 
| 
      
 531 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 532 
     | 
    
         
            +
                  "name": "setProductNftId",
         
     | 
| 
      
 533 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 534 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 535 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 536 
     | 
    
         
            +
                },
         
     | 
| 
      
 537 
     | 
    
         
            +
                {
         
     | 
| 
      
 538 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 539 
     | 
    
         
            +
                    {
         
     | 
| 
      
 540 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 541 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 542 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 543 
     | 
    
         
            +
                    }
         
     | 
| 
      
 544 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 545 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 546 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 547 
     | 
    
         
            +
                    {
         
     | 
| 
      
 548 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 549 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 550 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 551 
     | 
    
         
            +
                    }
         
     | 
| 
      
 552 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 553 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 554 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 555 
     | 
    
         
            +
                },
         
     | 
| 
      
 556 
     | 
    
         
            +
                {
         
     | 
| 
      
 557 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 558 
     | 
    
         
            +
                  "name": "unlock",
         
     | 
| 
      
 559 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 560 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 561 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 562 
     | 
    
         
            +
                }
         
     | 
| 
      
 563 
     | 
    
         
            +
              ],
         
     | 
| 
      
 564 
     | 
    
         
            +
              "bytecode": "0x60806040523480156200001157600080fd5b5060405162001ec638038062001ec6833981016040819052620000349162000813565b85858560786001856200006d6301ffc9a760e01b600090815260205260008051602062001ea6833981519152805460ff19166001179055565b600280546001600160a01b031916331790556040805160208101909152600081526200009e8787868686866200045a565b6000620000b36001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000103573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200012d91908101906200097c565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b81526367a9cb5360e01b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000195573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bb919062000a62565b620001e75760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000261919062000a87565b600380546001600160a01b03199081166001600160a01b0393841617909155600580543090831617905560068054909116918816919091179055634c0cba3d60e11b60009081526020527f8605f84a1fdbc6ff75d8a06315d161884729b429561b502d19c5a33135142c3a805460ff191660011790555050600a805460ff19168a1515179055505085516008555050506020808401516009556007546040805163329802c760e21b815290516001600160a01b03909216935063ca600b1c9260048083019391928290030181865afa15801562000342573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000368919062000a87565b600a8054610100600160a81b0319166101006001600160a01b039384160217905560075460408051634288121d60e01b815290519190921691634288121d9160048083019260209291908290030181865afa158015620003cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f2919062000a87565b600b80546001600160a01b0319166001600160a01b039290921691909117905563c8ea96c560e01b60009081526020527f358bf83baf6613c2def0011c88aae44093f6c2a350167255c9453fdf96405794805460ff1916600117905550505050505062000c02565b6200048b6301ffc9a760e01b600090815260205260008051602062001ea6833981519152805460ff19166001179055565b6200049782876200055c565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d01000000000000000000000000008615150217815590506001810162000516838262000b36565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b6001600160a01b038216620005b45760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401620001de565b600280546001600160a01b0319166001600160a01b038416179055620005da81620005de565b5050565b6001546001600160a01b031615620006195760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001de565b6001600160a01b038116620006415760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620006795760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001de565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526376ceea7360e01b60048201526301ffc9a790602401602060405180830381865afa925050508015620006f6575060408051601f3d908101601f19168201909252620006f39181019062000a62565b60015b620007205760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001de565b80620005da5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001de565b50565b6001600160a01b03811681146200074b57600080fd5b805162000771816200074e565b919050565b80516001600160601b03811681146200077157600080fd5b805180151581146200077157600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715620007da57620007da6200079f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200080b576200080b6200079f565b604052919050565b60008060008060008086880360e08112156200082e57600080fd5b87516200083b816200074e565b96506200084b6020890162000776565b955060408801516200085d816200074e565b94506200086d606089016200078e565b93506040607f19820112156200088257600080fd5b50604080519081016001600160401b0381118282101715620008a857620008a86200079f565b6040526080880151815260a0880151602082015260c0880151909250620008cf816200074e565b809150509295509295509295565b805160ff811681146200077157600080fd5b600082601f8301126200090157600080fd5b81516001600160401b038111156200091d576200091d6200079f565b602062000933601f8301601f19168201620007e0565b82815285828487010111156200094857600080fd5b60005b83811015620009685785810183015182820184015282016200094b565b506000928101909101919091529392505050565b6000602082840312156200098f57600080fd5b81516001600160401b0380821115620009a757600080fd5b9083019060e08286031215620009bc57600080fd5b620009c6620007b5565b620009d18362000776565b8152620009e16020840162000776565b6020820152620009f460408401620008dd565b604082015262000a07606084016200078e565b606082015262000a1a6080840162000764565b608082015262000a2d60a0840162000764565b60a082015260c08301518281111562000a4557600080fd5b62000a5387828601620008ef565b60c08301525095945050505050565b60006020828403121562000a7557600080fd5b62000a80826200078e565b9392505050565b60006020828403121562000a9a57600080fd5b815162000a80816200074e565b600181811c9082168062000abc57607f821691505b60208210810362000add57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000b3157600081815260208120601f850160051c8101602086101562000b0c5750805b601f850160051c820191505b8181101562000b2d5782815560010162000b18565b5050505b505050565b81516001600160401b0381111562000b525762000b526200079f565b62000b6a8162000b63845462000aa7565b8462000ae3565b602080601f83116001811462000ba2576000841562000b895750858301515b600019600386901b1c1916600185901b17855562000b2d565b600085815260208120601f198616915b8281101562000bd35788860151825594840194600190910190840162000bb2565b508582101562000bf25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6112948062000c126000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c8063644c45e0116100b8578063d16d0fe81161007c578063d16d0fe8146102d1578063de7b5d14146102e4578063e2147567146102f5578063f7d39dea14610309578063f80e207214610265578063f83d08ba1461031c57600080fd5b8063644c45e01461028957806387ef9ba0146102a1578063893d20e8146102ac578063a69df4b5146102b4578063c200b809146102bc57600080fd5b80631eff4b221161010a5780631eff4b22146101f957806321df0da71461022e5780632a65c6881461023f5780633f52c0f6146102525780634cf30a84146102655780635ab1bd531461027857600080fd5b806251884a1461014657806301ffc9a7146101775780630fec111c146101b457806313299604146101ca578063138461e0146101ef575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b6101a4610185366004610dfd565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161016e565b6101bc610324565b60405161016e929190610e74565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161016e565b6101f76103ef565b005b6102207f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016e565b6006546001600160a01b03166101d7565b6101f761024d366004610f33565b610611565b6101f7610260366004610f87565b610760565b6101f7610273366004610fd6565b6107c9565b6001546001600160a01b03166101d7565b600154600160a01b90046001600160601b031661015a565b600a5460ff166101a4565b6101d7610831565b6101f761094f565b6102c46109ea565b60405161016e9190611000565b6102206102df366004610fd6565b610af9565b6007546001600160a01b03166101d7565b6101a4610303366004611060565b50600090565b610220610317366004610fd6565b610b0e565b6101f7610bb0565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091610367610c1b565b506040805160a081018252600754600160a01b90046001600160601b031681526006546001600160a01b03166020808301919091528251808401845260085481526009548183015282840152600a5460ff1615156060830152306080830152915192935083926103d79201611000565b60405160208183030381529060405292509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610451573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610475919061108b565b156104bc576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166104e55760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561052e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610552919061108b565b61057a576040516372657a5160e01b81526001600160a01b03821660048201526024016104b3565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e891906110a6565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610619610831565b6001600160a01b0316336001600160a01b03161461064c5760405163700dd81160e01b81523360048201526024016104b3565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156106c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ec919061108b565b6107385760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016104b3565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b600a54604051631fa9607b60e11b81526101009091046001600160a01b031690633f52c0f6906107949084906004016110c3565b600060405180830381600087803b1580156107ae57600080fd5b505af11580156107c2573d6000803e3d6000fd5b5050505050565b600b546001600160a01b0316331461082d5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b60648201526084016104b3565b5050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610896573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ba919061108b565b1561093f57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093a91906110fa565b905090565b506002546001600160a01b031690565b610957610831565b6001600160a01b0316336001600160a01b03161461098a5760405163700dd81160e01b81523360048201526024016104b3565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b1580156109d057600080fd5b505af11580156109e4573d6000803e3d6000fd5b50505050565b6109f2610da1565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610a3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6091906110fa565b9050806001600160a01b0316639ad69c67610a8b6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240160c060405180830381865afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af39190611117565b91505090565b6000610b0582826111db565b90505b92915050565b600080610b196109ea565b604081810151905163012ebd8360e21b81528151600482015260208201516024820152604481018690529192509073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190611200565b5095945050505050565b610bb8610831565b6001600160a01b0316336001600160a01b031614610beb5760405163700dd81160e01b81523360048201526024016104b3565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016109b6565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610ca26001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cea610831565b6001600160a01b03168152602001826001018054610d0790611224565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3390611224565b8015610d805780601f10610d5557610100808354040283529160200191610d80565b820191906000526020600020905b815481529060010190602001808311610d6357829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6040518060a0016040528060006001600160601b0316815260200160006001600160a01b03168152602001610de9604051806040016040528060008152602001600081525090565b815260006020820181905260409091015290565b600060208284031215610e0f57600080fd5b81356001600160e01b031981168114610e2757600080fd5b9392505050565b6000815180845260005b81811015610e5457602081850181015186830182015201610e38565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151610eb860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610efe610120840182610e2e565b90508281036020840152610f128185610e2e565b95945050505050565b6001600160601b0381168114610f3057600080fd5b50565b600060208284031215610f4557600080fd5b8135610e2781610f1b565b6040805190810167ffffffffffffffff81118282101715610f8157634e487b7160e01b600052604160045260246000fd5b60405290565b600060408284031215610f9957600080fd5b610fa1610f50565b82358152602083013560208201528091505092915050565b80356001600160c01b031981168114610fd157600080fd5b919050565b60008060408385031215610fe957600080fd5b610ff283610fb9565b946020939093013593505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b60006020828403121561107257600080fd5b610b0582610fb9565b80518015158114610fd157600080fd5b60006020828403121561109d57600080fd5b610b058261107b565b6000602082840312156110b857600080fd5b8151610e2781610f1b565b815181526020808301519082015260408101610b08565b6001600160a01b0381168114610f3057600080fd5b8051610fd1816110da565b60006020828403121561110c57600080fd5b8151610e27816110da565b600081830360c081121561112a57600080fd5b60405160a0810181811067ffffffffffffffff8211171561115b57634e487b7160e01b600052604160045260246000fd5b604052835161116981610f1b565b81526020840151611179816110da565b60208201526040603f198301121561119057600080fd5b611198610f50565b915060408401518252606084015160208301528160408201526111bd6080850161107b565b60608201526111ce60a085016110ef565b6080820152949350505050565b8082028115828204841417610b0857634e487b7160e01b600052601160045260246000fd5b6000806040838503121561121357600080fd5b505080516020909101519092909150565b600181811c9082168061123857607f821691505b60208210810361125857634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220070e8c022d67d6e6172e88ce3e65c514b5607f609fcddfe1ff12aef179bbd3db64736f6c6343000814003367be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5",
         
     | 
| 
      
 565 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101415760003560e01c8063644c45e0116100b8578063d16d0fe81161007c578063d16d0fe8146102d1578063de7b5d14146102e4578063e2147567146102f5578063f7d39dea14610309578063f80e207214610265578063f83d08ba1461031c57600080fd5b8063644c45e01461028957806387ef9ba0146102a1578063893d20e8146102ac578063a69df4b5146102b4578063c200b809146102bc57600080fd5b80631eff4b221161010a5780631eff4b22146101f957806321df0da71461022e5780632a65c6881461023f5780633f52c0f6146102525780634cf30a84146102655780635ab1bd531461027857600080fd5b806251884a1461014657806301ffc9a7146101775780630fec111c146101b457806313299604146101ca578063138461e0146101ef575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b6101a4610185366004610dfd565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161016e565b6101bc610324565b60405161016e929190610e74565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161016e565b6101f76103ef565b005b6102207f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016e565b6006546001600160a01b03166101d7565b6101f761024d366004610f33565b610611565b6101f7610260366004610f87565b610760565b6101f7610273366004610fd6565b6107c9565b6001546001600160a01b03166101d7565b600154600160a01b90046001600160601b031661015a565b600a5460ff166101a4565b6101d7610831565b6101f761094f565b6102c46109ea565b60405161016e9190611000565b6102206102df366004610fd6565b610af9565b6007546001600160a01b03166101d7565b6101a4610303366004611060565b50600090565b610220610317366004610fd6565b610b0e565b6101f7610bb0565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091610367610c1b565b506040805160a081018252600754600160a01b90046001600160601b031681526006546001600160a01b03166020808301919091528251808401845260085481526009548183015282840152600a5460ff1615156060830152306080830152915192935083926103d79201611000565b60405160208183030381529060405292509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610451573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610475919061108b565b156104bc576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166104e55760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561052e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610552919061108b565b61057a576040516372657a5160e01b81526001600160a01b03821660048201526024016104b3565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e891906110a6565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610619610831565b6001600160a01b0316336001600160a01b03161461064c5760405163700dd81160e01b81523360048201526024016104b3565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156106c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ec919061108b565b6107385760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016104b3565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b600a54604051631fa9607b60e11b81526101009091046001600160a01b031690633f52c0f6906107949084906004016110c3565b600060405180830381600087803b1580156107ae57600080fd5b505af11580156107c2573d6000803e3d6000fd5b5050505050565b600b546001600160a01b0316331461082d5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b60648201526084016104b3565b5050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610896573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ba919061108b565b1561093f57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093a91906110fa565b905090565b506002546001600160a01b031690565b610957610831565b6001600160a01b0316336001600160a01b03161461098a5760405163700dd81160e01b81523360048201526024016104b3565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b1580156109d057600080fd5b505af11580156109e4573d6000803e3d6000fd5b50505050565b6109f2610da1565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610a3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6091906110fa565b9050806001600160a01b0316639ad69c67610a8b6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240160c060405180830381865afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af39190611117565b91505090565b6000610b0582826111db565b90505b92915050565b600080610b196109ea565b604081810151905163012ebd8360e21b81528151600482015260208201516024820152604481018690529192509073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190611200565b5095945050505050565b610bb8610831565b6001600160a01b0316336001600160a01b031614610beb5760405163700dd81160e01b81523360048201526024016104b3565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016109b6565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610ca26001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cea610831565b6001600160a01b03168152602001826001018054610d0790611224565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3390611224565b8015610d805780601f10610d5557610100808354040283529160200191610d80565b820191906000526020600020905b815481529060010190602001808311610d6357829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6040518060a0016040528060006001600160601b0316815260200160006001600160a01b03168152602001610de9604051806040016040528060008152602001600081525090565b815260006020820181905260409091015290565b600060208284031215610e0f57600080fd5b81356001600160e01b031981168114610e2757600080fd5b9392505050565b6000815180845260005b81811015610e5457602081850181015186830182015201610e38565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151610eb860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610efe610120840182610e2e565b90508281036020840152610f128185610e2e565b95945050505050565b6001600160601b0381168114610f3057600080fd5b50565b600060208284031215610f4557600080fd5b8135610e2781610f1b565b6040805190810167ffffffffffffffff81118282101715610f8157634e487b7160e01b600052604160045260246000fd5b60405290565b600060408284031215610f9957600080fd5b610fa1610f50565b82358152602083013560208201528091505092915050565b80356001600160c01b031981168114610fd157600080fd5b919050565b60008060408385031215610fe957600080fd5b610ff283610fb9565b946020939093013593505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b60006020828403121561107257600080fd5b610b0582610fb9565b80518015158114610fd157600080fd5b60006020828403121561109d57600080fd5b610b058261107b565b6000602082840312156110b857600080fd5b8151610e2781610f1b565b815181526020808301519082015260408101610b08565b6001600160a01b0381168114610f3057600080fd5b8051610fd1816110da565b60006020828403121561110c57600080fd5b8151610e27816110da565b600081830360c081121561112a57600080fd5b60405160a0810181811067ffffffffffffffff8211171561115b57634e487b7160e01b600052604160045260246000fd5b604052835161116981610f1b565b81526020840151611179816110da565b60208201526040603f198301121561119057600080fd5b611198610f50565b915060408401518252606084015160208301528160408201526111bd6080850161107b565b60608201526111ce60a085016110ef565b6080820152949350505050565b8082028115828204841417610b0857634e487b7160e01b600052601160045260246000fd5b6000806040838503121561121357600080fd5b505080516020909101519092909150565b600181811c9082168061123857607f821691505b60208210810361125857634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220070e8c022d67d6e6172e88ce3e65c514b5607f609fcddfe1ff12aef179bbd3db64736f6c63430008140033",
         
     | 
| 
      
 566 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 567 
     | 
    
         
            +
                "contracts/types/Fee.sol": {
         
     | 
| 
      
 568 
     | 
    
         
            +
                  "FeeLib": [
         
     | 
| 
      
 569 
     | 
    
         
            +
                    {
         
     | 
| 
      
 570 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 571 
     | 
    
         
            +
                      "start": 5979
         
     | 
| 
      
 572 
     | 
    
         
            +
                    }
         
     | 
| 
      
 573 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 574 
     | 
    
         
            +
                },
         
     | 
| 
      
 575 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 576 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 577 
     | 
    
         
            +
                    {
         
     | 
| 
      
 578 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 579 
     | 
    
         
            +
                      "start": 4137
         
     | 
| 
      
 580 
     | 
    
         
            +
                    },
         
     | 
| 
      
 581 
     | 
    
         
            +
                    {
         
     | 
| 
      
 582 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 583 
     | 
    
         
            +
                      "start": 4707
         
     | 
| 
      
 584 
     | 
    
         
            +
                    },
         
     | 
| 
      
 585 
     | 
    
         
            +
                    {
         
     | 
| 
      
 586 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 587 
     | 
    
         
            +
                      "start": 5230
         
     | 
| 
      
 588 
     | 
    
         
            +
                    }
         
     | 
| 
      
 589 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 590 
     | 
    
         
            +
                }
         
     | 
| 
      
 591 
     | 
    
         
            +
              },
         
     | 
| 
      
 592 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 593 
     | 
    
         
            +
                "contracts/types/Fee.sol": {
         
     | 
| 
      
 594 
     | 
    
         
            +
                  "FeeLib": [
         
     | 
| 
      
 595 
     | 
    
         
            +
                    {
         
     | 
| 
      
 596 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 597 
     | 
    
         
            +
                      "start": 2889
         
     | 
| 
      
 598 
     | 
    
         
            +
                    }
         
     | 
| 
      
 599 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 600 
     | 
    
         
            +
                },
         
     | 
| 
      
 601 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 602 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 603 
     | 
    
         
            +
                    {
         
     | 
| 
      
 604 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 605 
     | 
    
         
            +
                      "start": 1047
         
     | 
| 
      
 606 
     | 
    
         
            +
                    },
         
     | 
| 
      
 607 
     | 
    
         
            +
                    {
         
     | 
| 
      
 608 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 609 
     | 
    
         
            +
                      "start": 1617
         
     | 
| 
      
 610 
     | 
    
         
            +
                    },
         
     | 
| 
      
 611 
     | 
    
         
            +
                    {
         
     | 
| 
      
 612 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 613 
     | 
    
         
            +
                      "start": 2140
         
     | 
| 
      
 614 
     | 
    
         
            +
                    }
         
     | 
| 
      
 615 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 616 
     | 
    
         
            +
                }
         
     | 
| 
      
 617 
     | 
    
         
            +
              }
         
     | 
| 
      
 618 
     | 
    
         
            +
            }
         
     |