@etherisc/gif-next 0.0.2-e875d61-189 → 0.0.2-e8ea17d-715
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 +279 -40
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
 - package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/{instance/module/access → authorization}/IAccess.sol/IAccess.json +1 -1
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1505 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1191 -0
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1394 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +826 -0
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +900 -0
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +843 -0
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +240 -1457
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +386 -1697
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1735 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1160 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3591 -0
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
 - package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
 - package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1155 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1063 -0
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1477 -0
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1134 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +754 -0
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +703 -0
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +959 -0
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
 - package/artifacts/contracts/pool/Pool.sol/Pool.json +1269 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1299 -0
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +256 -221
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +966 -0
 - package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IProductService.sol/IProductService.json} +207 -171
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +1012 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
 - package/artifacts/contracts/product/Product.sol/Product.json +1257 -0
 - package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +655 -50
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +940 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +885 -99
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1487 -0
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +784 -0
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +880 -0
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +718 -0
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +37 -80
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +154 -152
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
 - package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
 - package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +996 -0
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +102 -165
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/shared/Service.sol/Service.json +507 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -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 +29 -115
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +460 -0
 - package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
 - package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2237 -0
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
 - package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
 - package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
 - package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/type/UFixed.sol/MathLib.json +10 -0
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +498 -0
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
 - package/contracts/authorization/AccessAdmin.sol +591 -0
 - package/contracts/authorization/AccessManagerCloneable.sol +16 -0
 - package/contracts/authorization/Authorization.sol +218 -0
 - package/contracts/authorization/IAccess.sol +48 -0
 - package/contracts/authorization/IAccessAdmin.sol +136 -0
 - package/contracts/authorization/IAuthorization.sol +54 -0
 - package/contracts/authorization/IModuleAuthorization.sol +21 -0
 - package/contracts/authorization/IServiceAuthorization.sol +38 -0
 - package/contracts/authorization/ModuleAuthorization.sol +78 -0
 - package/contracts/authorization/ServiceAuthorization.sol +90 -0
 - package/contracts/distribution/BasicDistribution.sol +149 -0
 - package/contracts/distribution/BasicDistributionAuthorization.sol +43 -0
 - package/contracts/distribution/Distribution.sol +283 -0
 - package/contracts/distribution/DistributionService.sol +302 -0
 - package/contracts/distribution/DistributionServiceManager.sol +42 -0
 - package/contracts/distribution/IDistributionComponent.sol +48 -0
 - package/contracts/distribution/IDistributionService.sol +85 -0
 - package/contracts/instance/BundleSet.sol +126 -0
 - package/contracts/instance/IInstance.sol +79 -43
 - package/contracts/instance/IInstanceService.sol +92 -0
 - package/contracts/instance/Instance.sol +239 -56
 - package/contracts/instance/InstanceAdmin.sol +266 -0
 - package/contracts/instance/InstanceAuthorizationV3.sol +202 -0
 - package/contracts/instance/InstanceReader.sol +405 -0
 - package/contracts/instance/InstanceService.sol +443 -0
 - package/contracts/instance/InstanceServiceManager.sol +44 -0
 - package/contracts/instance/InstanceStore.sol +276 -0
 - package/contracts/instance/base/BalanceStore.sol +123 -0
 - package/contracts/instance/base/Cloneable.sol +28 -0
 - package/contracts/instance/base/ObjectCounter.sol +21 -0
 - package/contracts/instance/base/ObjectLifecycle.sol +106 -0
 - package/contracts/instance/base/ObjectSet.sol +79 -0
 - package/contracts/instance/module/IAccess.sol +46 -0
 - package/contracts/instance/module/IBundle.sol +20 -0
 - package/contracts/instance/module/IComponents.sol +52 -0
 - package/contracts/instance/module/IDistribution.sol +42 -0
 - package/contracts/instance/module/IPolicy.sol +84 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
 - package/contracts/oracle/BasicOracle.sol +48 -0
 - package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
 - package/contracts/oracle/IOracle.sol +36 -0
 - package/contracts/oracle/IOracleComponent.sol +32 -0
 - package/contracts/oracle/IOracleService.sol +65 -0
 - package/contracts/oracle/Oracle.sol +157 -0
 - package/contracts/oracle/OracleService.sol +278 -0
 - package/contracts/oracle/OracleServiceManager.sol +42 -0
 - package/contracts/pool/BasicPool.sol +164 -0
 - package/contracts/pool/BasicPoolAuthorization.sol +49 -0
 - package/contracts/pool/BundleService.sol +296 -0
 - package/contracts/pool/BundleServiceManager.sol +42 -0
 - package/contracts/pool/IBundleService.sol +106 -0
 - package/contracts/pool/IPoolComponent.sol +52 -0
 - package/contracts/pool/IPoolService.sol +150 -0
 - package/contracts/pool/Pool.sol +311 -0
 - package/contracts/pool/PoolService.sol +451 -0
 - package/contracts/pool/PoolServiceManager.sol +42 -0
 - package/contracts/product/ApplicationService.sol +254 -0
 - package/contracts/product/ApplicationServiceManager.sol +38 -0
 - package/contracts/product/BasicProduct.sol +82 -0
 - package/contracts/product/BasicProductAuthorization.sol +40 -0
 - package/contracts/product/ClaimService.sol +442 -0
 - package/contracts/product/ClaimServiceManager.sol +38 -0
 - package/contracts/product/IApplicationService.sol +62 -0
 - package/contracts/product/IClaimService.sol +99 -0
 - package/contracts/product/IPolicyService.sol +78 -0
 - package/contracts/product/IPricingService.sol +39 -0
 - package/contracts/product/IProductComponent.sol +39 -0
 - package/contracts/product/IProductService.sol +33 -0
 - package/contracts/product/PolicyService.sol +475 -0
 - package/contracts/product/PolicyServiceManager.sol +42 -0
 - package/contracts/product/PricingService.sol +300 -0
 - package/contracts/product/PricingServiceManager.sol +42 -0
 - package/contracts/product/Product.sol +392 -0
 - package/contracts/product/ProductService.sol +124 -0
 - package/contracts/product/ProductServiceManager.sol +42 -0
 - package/contracts/registry/ChainNft.sol +95 -37
 - package/contracts/registry/IRegistry.sol +106 -29
 - package/contracts/registry/IRegistryService.sol +69 -0
 - package/contracts/registry/ITransferInterceptor.sol +7 -0
 - package/contracts/registry/Registry.sol +475 -280
 - package/contracts/registry/RegistryAdmin.sol +365 -0
 - package/contracts/registry/RegistryService.sol +266 -0
 - package/contracts/registry/RegistryServiceManager.sol +53 -0
 - package/contracts/registry/ReleaseLifecycle.sol +27 -0
 - package/contracts/registry/ReleaseRegistry.sol +487 -0
 - package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
 - package/contracts/registry/TokenRegistry.sol +315 -0
 - package/contracts/shared/Component.sol +281 -0
 - package/contracts/shared/ComponentService.sol +581 -0
 - package/contracts/shared/ComponentServiceManager.sol +35 -0
 - package/contracts/shared/ComponentVerifyingService.sol +117 -0
 - package/contracts/shared/ERC165.sol +15 -9
 - package/contracts/shared/IComponent.sol +70 -0
 - package/contracts/shared/IComponentService.sol +102 -0
 - package/contracts/shared/IInstanceLinkedComponent.sol +50 -0
 - package/contracts/shared/IKeyValueStore.sol +54 -0
 - package/contracts/{instance/base → shared}/ILifecycle.sol +4 -5
 - package/contracts/shared/INftOwnable.sol +23 -0
 - package/contracts/shared/IPolicyHolder.sol +45 -0
 - package/contracts/shared/IRegisterable.sol +10 -19
 - package/contracts/shared/IRegistryLinked.sol +11 -0
 - package/contracts/shared/IService.sol +25 -0
 - package/contracts/shared/IVersionable.sol +38 -37
 - package/contracts/shared/InitializableCustom.sol +177 -0
 - package/contracts/shared/InstanceLinkedComponent.sol +151 -0
 - package/contracts/shared/KeyValueStore.sol +131 -0
 - package/contracts/shared/Lifecycle.sol +77 -0
 - package/contracts/shared/NftIdSet.sol +65 -0
 - package/contracts/shared/NftOwnable.sol +107 -0
 - package/contracts/shared/PolicyHolder.sol +102 -0
 - package/contracts/shared/ProxyManager.sol +199 -0
 - package/contracts/shared/Registerable.sol +54 -65
 - package/contracts/shared/RegistryLinked.sol +43 -0
 - package/contracts/shared/Service.sol +83 -0
 - package/contracts/shared/TokenHandler.sol +58 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +38 -68
 - package/contracts/staking/IStaking.sol +167 -0
 - package/contracts/staking/IStakingService.sol +160 -0
 - package/contracts/staking/StakeManagerLib.sol +231 -0
 - package/contracts/staking/Staking.sol +511 -0
 - package/contracts/staking/StakingLifecycle.sol +23 -0
 - package/contracts/staking/StakingManager.sol +53 -0
 - package/contracts/staking/StakingReader.sol +186 -0
 - package/contracts/staking/StakingService.sol +411 -0
 - package/contracts/staking/StakingServiceManager.sol +44 -0
 - package/contracts/staking/StakingStore.sol +615 -0
 - package/contracts/staking/TargetManagerLib.sol +207 -0
 - package/contracts/{types → type}/AddressSet.sol +1 -1
 - package/contracts/type/Amount.sol +128 -0
 - package/contracts/{types → type}/Blocknumber.sol +21 -3
 - package/contracts/type/ClaimId.sol +75 -0
 - package/contracts/type/DistributorType.sol +55 -0
 - package/contracts/type/Fee.sol +66 -0
 - package/contracts/{types → type}/Key32.sol +8 -3
 - package/contracts/{types → type}/NftId.sol +21 -15
 - package/contracts/type/NftIdSet.sol +62 -0
 - package/contracts/type/ObjectType.sol +271 -0
 - package/contracts/type/PayoutId.sol +82 -0
 - package/contracts/type/Referral.sol +89 -0
 - package/contracts/type/RequestId.sol +75 -0
 - package/contracts/type/RiskId.sol +43 -0
 - package/contracts/type/RoleId.sol +174 -0
 - package/contracts/type/Seconds.sol +81 -0
 - package/contracts/type/Selector.sol +102 -0
 - package/contracts/{types → type}/StateId.sol +39 -5
 - package/contracts/type/String.sol +53 -0
 - package/contracts/{types → type}/Timestamp.sol +27 -14
 - package/contracts/type/UFixed.sol +332 -0
 - package/contracts/{types → type}/Version.sol +17 -2
 - package/package.json +11 -7
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
 - package/artifacts/contracts/components/Pool.sol/Pool.json +0 -455
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
 - package/artifacts/contracts/components/Product.sol/Product.json +0 -348
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -81
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
 - package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -710
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
 - package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
 - 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/ITreasury.json +0 -10
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -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/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
 - package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
 - package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -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/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
 - package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
 - package/contracts/components/BaseComponent.sol +0 -94
 - package/contracts/components/IBaseComponent.sol +0 -19
 - package/contracts/components/IPoolComponent.sol +0 -57
 - package/contracts/components/IProductComponent.sol +0 -19
 - package/contracts/components/Pool.sol +0 -191
 - package/contracts/components/Product.sol +0 -134
 - package/contracts/experiment/errors/Require.sol +0 -38
 - package/contracts/experiment/errors/Revert.sol +0 -44
 - package/contracts/experiment/inheritance/A.sol +0 -53
 - package/contracts/experiment/inheritance/B.sol +0 -28
 - package/contracts/experiment/inheritance/C.sol +0 -34
 - package/contracts/experiment/inheritance/IA.sol +0 -13
 - package/contracts/experiment/inheritance/IB.sol +0 -10
 - package/contracts/experiment/inheritance/IC.sol +0 -12
 - package/contracts/experiment/statemachine/Dummy.sol +0 -27
 - package/contracts/experiment/statemachine/ISM.sol +0 -25
 - package/contracts/experiment/statemachine/README.md +0 -112
 - package/contracts/experiment/statemachine/SM.sol +0 -57
 - package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
 - package/contracts/experiment/types/TypeA.sol +0 -47
 - package/contracts/experiment/types/TypeB.sol +0 -29
 - package/contracts/instance/IInstanceLinked.sol +0 -8
 - package/contracts/instance/base/ComponentServiceBase.sol +0 -42
 - package/contracts/instance/base/IInstanceBase.sol +0 -19
 - package/contracts/instance/base/IKeyValueStore.sol +0 -50
 - package/contracts/instance/base/IService.sol +0 -15
 - package/contracts/instance/base/InstanceBase.sol +0 -84
 - package/contracts/instance/base/KeyValueStore.sol +0 -161
 - package/contracts/instance/base/Lifecycle.sol +0 -92
 - 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/instance/service/ComponentOwnerService.sol +0 -155
 - package/contracts/instance/service/IComponentOwnerService.sol +0 -22
 - package/contracts/instance/service/IPoolService.sol +0 -30
 - package/contracts/instance/service/IProductService.sol +0 -58
 - package/contracts/instance/service/PoolService.sol +0 -129
 - package/contracts/instance/service/ProductService.sol +0 -366
 - package/contracts/registry/IChainNft.sol +0 -21
 - package/contracts/registry/IRegistryLinked.sol +0 -8
 - package/contracts/shared/IOwnable.sol +0 -6
 - package/contracts/test/TestFee.sol +0 -25
 - package/contracts/test/TestPool.sol +0 -24
 - package/contracts/test/TestProduct.sol +0 -51
 - package/contracts/test/TestRegisterable.sol +0 -19
 - package/contracts/test/TestRoleId.sol +0 -14
 - package/contracts/test/TestService.sol +0 -32
 - package/contracts/test/TestToken.sol +0 -26
 - package/contracts/test/TestVersion.sol +0 -44
 - package/contracts/test/TestVersionable.sol +0 -17
 - package/contracts/types/ChainId.sol +0 -38
 - package/contracts/types/Fee.sol +0 -51
 - package/contracts/types/NftIdSet.sol +0 -60
 - package/contracts/types/ObjectType.sol +0 -123
 - package/contracts/types/RoleId.sol +0 -38
 - package/contracts/types/UFixed.sol +0 -209
 
| 
         @@ -1,116 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
              "_format": "hh-sol-artifact-1",
         
     | 
| 
       3 
     | 
    
         
            -
              "contractName": "TestRoleId",
         
     | 
| 
       4 
     | 
    
         
            -
              "sourceName": "contracts/test/TestRoleId.sol",
         
     | 
| 
       5 
     | 
    
         
            -
              "abi": [
         
     | 
| 
       6 
     | 
    
         
            -
                {
         
     | 
| 
       7 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       8 
     | 
    
         
            -
                  "name": "getPoolOwnerRole",
         
     | 
| 
       9 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       10 
     | 
    
         
            -
                    {
         
     | 
| 
       11 
     | 
    
         
            -
                      "internalType": "RoleId",
         
     | 
| 
       12 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       13 
     | 
    
         
            -
                      "type": "bytes8"
         
     | 
| 
       14 
     | 
    
         
            -
                    }
         
     | 
| 
       15 
     | 
    
         
            -
                  ],
         
     | 
| 
       16 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       17 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       18 
     | 
    
         
            -
                },
         
     | 
| 
       19 
     | 
    
         
            -
                {
         
     | 
| 
       20 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       21 
     | 
    
         
            -
                  "name": "getPoolOwnerRoleName",
         
     | 
| 
       22 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       23 
     | 
    
         
            -
                    {
         
     | 
| 
       24 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       25 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       26 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       27 
     | 
    
         
            -
                    }
         
     | 
| 
       28 
     | 
    
         
            -
                  ],
         
     | 
| 
       29 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       30 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       31 
     | 
    
         
            -
                },
         
     | 
| 
       32 
     | 
    
         
            -
                {
         
     | 
| 
       33 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       34 
     | 
    
         
            -
                  "name": "getProductOwnerRole",
         
     | 
| 
       35 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       36 
     | 
    
         
            -
                    {
         
     | 
| 
       37 
     | 
    
         
            -
                      "internalType": "RoleId",
         
     | 
| 
       38 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       39 
     | 
    
         
            -
                      "type": "bytes8"
         
     | 
| 
       40 
     | 
    
         
            -
                    }
         
     | 
| 
       41 
     | 
    
         
            -
                  ],
         
     | 
| 
       42 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       43 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       44 
     | 
    
         
            -
                },
         
     | 
| 
       45 
     | 
    
         
            -
                {
         
     | 
| 
       46 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       47 
     | 
    
         
            -
                  "name": "getProductOwnerRoleName",
         
     | 
| 
       48 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       49 
     | 
    
         
            -
                    {
         
     | 
| 
       50 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       51 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       52 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       53 
     | 
    
         
            -
                    }
         
     | 
| 
       54 
     | 
    
         
            -
                  ],
         
     | 
| 
       55 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       56 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       57 
     | 
    
         
            -
                },
         
     | 
| 
       58 
     | 
    
         
            -
                {
         
     | 
| 
       59 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       60 
     | 
    
         
            -
                    {
         
     | 
| 
       61 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       62 
     | 
    
         
            -
                      "name": "roleName",
         
     | 
| 
       63 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       64 
     | 
    
         
            -
                    }
         
     | 
| 
       65 
     | 
    
         
            -
                  ],
         
     | 
| 
       66 
     | 
    
         
            -
                  "name": "getRole",
         
     | 
| 
       67 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       68 
     | 
    
         
            -
                    {
         
     | 
| 
       69 
     | 
    
         
            -
                      "internalType": "RoleId",
         
     | 
| 
       70 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       71 
     | 
    
         
            -
                      "type": "bytes8"
         
     | 
| 
       72 
     | 
    
         
            -
                    }
         
     | 
| 
       73 
     | 
    
         
            -
                  ],
         
     | 
| 
       74 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       75 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       76 
     | 
    
         
            -
                }
         
     | 
| 
       77 
     | 
    
         
            -
              ],
         
     | 
| 
       78 
     | 
    
         
            -
              "bytecode": "0x608060405234801561001057600080fd5b50610426806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80631fa8a7301461005c5780636e9067fb14610082578063775a404814610095578063b844f20e1461009d578063c4ce6e5b146100b2575b600080fd5b6100646100ba565b6040516001600160c01b031990911681526020015b60405180910390f35b6100646100903660046102b5565b6100c9565b61006461014a565b6100a5610154565b60405161007991906103ac565b6100a5610183565b60006100c46101af565b905090565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906101039085906004016103ac565b602060405180830381865af4158015610120573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014491906103c6565b92915050565b60006100c4610244565b60606100c460408051808201909152601081526f50726f647563744f776e6572526f6c6560801b602082015290565b60606100c460408051808201909152600d81526c506f6f6c4f776e6572526f6c6560981b602082015290565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af4158015610220573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c491906103c6565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90606401610203565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156102c757600080fd5b813567ffffffffffffffff808211156102df57600080fd5b818401915084601f8301126102f357600080fd5b8135818111156103055761030561029f565b604051601f8201601f19908116603f0116810190838211818310171561032d5761032d61029f565b8160405282815287602084870101111561034657600080fd5b826020860160208301376000928101602001929092525095945050505050565b6000815180845260005b8181101561038c57602081850181015186830182015201610370565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103bf6020830184610366565b9392505050565b6000602082840312156103d857600080fd5b81516001600160c01b0319811681146103bf57600080fdfea2646970667358221220a727e8fcc31792587c46ff46201a7a209190924f0c9a476aa382f00729e2c3bb64736f6c63430008140033",
         
     | 
| 
       79 
     | 
    
         
            -
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100575760003560e01c80631fa8a7301461005c5780636e9067fb14610082578063775a404814610095578063b844f20e1461009d578063c4ce6e5b146100b2575b600080fd5b6100646100ba565b6040516001600160c01b031990911681526020015b60405180910390f35b6100646100903660046102b5565b6100c9565b61006461014a565b6100a5610154565b60405161007991906103ac565b6100a5610183565b60006100c46101af565b905090565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906101039085906004016103ac565b602060405180830381865af4158015610120573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014491906103c6565b92915050565b60006100c4610244565b60606100c460408051808201909152601081526f50726f647563744f776e6572526f6c6560801b602082015290565b60606100c460408051808201909152600d81526c506f6f6c4f776e6572526f6c6560981b602082015290565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af4158015610220573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c491906103c6565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90606401610203565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156102c757600080fd5b813567ffffffffffffffff808211156102df57600080fd5b818401915084601f8301126102f357600080fd5b8135818111156103055761030561029f565b604051601f8201601f19908116603f0116810190838211818310171561032d5761032d61029f565b8160405282815287602084870101111561034657600080fd5b826020860160208301376000928101602001929092525095945050505050565b6000815180845260005b8181101561038c57602081850181015186830182015201610370565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103bf6020830184610366565b9392505050565b6000602082840312156103d857600080fd5b81516001600160c01b0319811681146103bf57600080fdfea2646970667358221220a727e8fcc31792587c46ff46201a7a209190924f0c9a476aa382f00729e2c3bb64736f6c63430008140033",
         
     | 
| 
       80 
     | 
    
         
            -
              "linkReferences": {
         
     | 
| 
       81 
     | 
    
         
            -
                "contracts/types/RoleId.sol": {
         
     | 
| 
       82 
     | 
    
         
            -
                  "RoleIdLib": [
         
     | 
| 
       83 
     | 
    
         
            -
                    {
         
     | 
| 
       84 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       85 
     | 
    
         
            -
                      "start": 251
         
     | 
| 
       86 
     | 
    
         
            -
                    },
         
     | 
| 
       87 
     | 
    
         
            -
                    {
         
     | 
| 
       88 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       89 
     | 
    
         
            -
                      "start": 517
         
     | 
| 
       90 
     | 
    
         
            -
                    },
         
     | 
| 
       91 
     | 
    
         
            -
                    {
         
     | 
| 
       92 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       93 
     | 
    
         
            -
                      "start": 669
         
     | 
| 
       94 
     | 
    
         
            -
                    }
         
     | 
| 
       95 
     | 
    
         
            -
                  ]
         
     | 
| 
       96 
     | 
    
         
            -
                }
         
     | 
| 
       97 
     | 
    
         
            -
              },
         
     | 
| 
       98 
     | 
    
         
            -
              "deployedLinkReferences": {
         
     | 
| 
       99 
     | 
    
         
            -
                "contracts/types/RoleId.sol": {
         
     | 
| 
       100 
     | 
    
         
            -
                  "RoleIdLib": [
         
     | 
| 
       101 
     | 
    
         
            -
                    {
         
     | 
| 
       102 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       103 
     | 
    
         
            -
                      "start": 219
         
     | 
| 
       104 
     | 
    
         
            -
                    },
         
     | 
| 
       105 
     | 
    
         
            -
                    {
         
     | 
| 
       106 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       107 
     | 
    
         
            -
                      "start": 485
         
     | 
| 
       108 
     | 
    
         
            -
                    },
         
     | 
| 
       109 
     | 
    
         
            -
                    {
         
     | 
| 
       110 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       111 
     | 
    
         
            -
                      "start": 637
         
     | 
| 
       112 
     | 
    
         
            -
                    }
         
     | 
| 
       113 
     | 
    
         
            -
                  ]
         
     | 
| 
       114 
     | 
    
         
            -
                }
         
     | 
| 
       115 
     | 
    
         
            -
              }
         
     | 
| 
       116 
     | 
    
         
            -
            }
         
     | 
| 
         @@ -1,379 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
              "_format": "hh-sol-artifact-1",
         
     | 
| 
       3 
     | 
    
         
            -
              "contractName": "TestService",
         
     | 
| 
       4 
     | 
    
         
            -
              "sourceName": "contracts/test/TestService.sol",
         
     | 
| 
       5 
     | 
    
         
            -
              "abi": [
         
     | 
| 
       6 
     | 
    
         
            -
                {
         
     | 
| 
       7 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       8 
     | 
    
         
            -
                    {
         
     | 
| 
       9 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       10 
     | 
    
         
            -
                      "name": "registry",
         
     | 
| 
       11 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       12 
     | 
    
         
            -
                    },
         
     | 
| 
       13 
     | 
    
         
            -
                    {
         
     | 
| 
       14 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       15 
     | 
    
         
            -
                      "name": "registryNftId",
         
     | 
| 
       16 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       17 
     | 
    
         
            -
                    }
         
     | 
| 
       18 
     | 
    
         
            -
                  ],
         
     | 
| 
       19 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       20 
     | 
    
         
            -
                  "type": "constructor"
         
     | 
| 
       21 
     | 
    
         
            -
                },
         
     | 
| 
       22 
     | 
    
         
            -
                {
         
     | 
| 
       23 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       24 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       25 
     | 
    
         
            -
                    {
         
     | 
| 
       26 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       27 
     | 
    
         
            -
                      "internalType": "Version",
         
     | 
| 
       28 
     | 
    
         
            -
                      "name": "version",
         
     | 
| 
       29 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
       30 
     | 
    
         
            -
                    },
         
     | 
| 
       31 
     | 
    
         
            -
                    {
         
     | 
| 
       32 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       33 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       34 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       35 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       36 
     | 
    
         
            -
                    },
         
     | 
| 
       37 
     | 
    
         
            -
                    {
         
     | 
| 
       38 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       39 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       40 
     | 
    
         
            -
                      "name": "activatedBy",
         
     | 
| 
       41 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       42 
     | 
    
         
            -
                    }
         
     | 
| 
       43 
     | 
    
         
            -
                  ],
         
     | 
| 
       44 
     | 
    
         
            -
                  "name": "LogVersionableActivated",
         
     | 
| 
       45 
     | 
    
         
            -
                  "type": "event"
         
     | 
| 
       46 
     | 
    
         
            -
                },
         
     | 
| 
       47 
     | 
    
         
            -
                {
         
     | 
| 
       48 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       49 
     | 
    
         
            -
                  "name": "NAME",
         
     | 
| 
       50 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       51 
     | 
    
         
            -
                    {
         
     | 
| 
       52 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       53 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       54 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       55 
     | 
    
         
            -
                    }
         
     | 
| 
       56 
     | 
    
         
            -
                  ],
         
     | 
| 
       57 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       58 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       59 
     | 
    
         
            -
                },
         
     | 
| 
       60 
     | 
    
         
            -
                {
         
     | 
| 
       61 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       62 
     | 
    
         
            -
                    {
         
     | 
| 
       63 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       64 
     | 
    
         
            -
                      "name": "implementation",
         
     | 
| 
       65 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       66 
     | 
    
         
            -
                    },
         
     | 
| 
       67 
     | 
    
         
            -
                    {
         
     | 
| 
       68 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       69 
     | 
    
         
            -
                      "name": "activatedBy",
         
     | 
| 
       70 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       71 
     | 
    
         
            -
                    }
         
     | 
| 
       72 
     | 
    
         
            -
                  ],
         
     | 
| 
       73 
     | 
    
         
            -
                  "name": "activate",
         
     | 
| 
       74 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       75 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       76 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       77 
     | 
    
         
            -
                },
         
     | 
| 
       78 
     | 
    
         
            -
                {
         
     | 
| 
       79 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       80 
     | 
    
         
            -
                  "name": "getData",
         
     | 
| 
       81 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       82 
     | 
    
         
            -
                    {
         
     | 
| 
       83 
     | 
    
         
            -
                      "internalType": "bytes",
         
     | 
| 
       84 
     | 
    
         
            -
                      "name": "data",
         
     | 
| 
       85 
     | 
    
         
            -
                      "type": "bytes"
         
     | 
| 
       86 
     | 
    
         
            -
                    }
         
     | 
| 
       87 
     | 
    
         
            -
                  ],
         
     | 
| 
       88 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       89 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       90 
     | 
    
         
            -
                },
         
     | 
| 
       91 
     | 
    
         
            -
                {
         
     | 
| 
       92 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       93 
     | 
    
         
            -
                  "name": "getMajorVersion",
         
     | 
| 
       94 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       95 
     | 
    
         
            -
                    {
         
     | 
| 
       96 
     | 
    
         
            -
                      "internalType": "VersionPart",
         
     | 
| 
       97 
     | 
    
         
            -
                      "name": "majorVersion",
         
     | 
| 
       98 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       99 
     | 
    
         
            -
                    }
         
     | 
| 
       100 
     | 
    
         
            -
                  ],
         
     | 
| 
       101 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       102 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       103 
     | 
    
         
            -
                },
         
     | 
| 
       104 
     | 
    
         
            -
                {
         
     | 
| 
       105 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       106 
     | 
    
         
            -
                  "name": "getName",
         
     | 
| 
       107 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       108 
     | 
    
         
            -
                    {
         
     | 
| 
       109 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       110 
     | 
    
         
            -
                      "name": "name",
         
     | 
| 
       111 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       112 
     | 
    
         
            -
                    }
         
     | 
| 
       113 
     | 
    
         
            -
                  ],
         
     | 
| 
       114 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       115 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       116 
     | 
    
         
            -
                },
         
     | 
| 
       117 
     | 
    
         
            -
                {
         
     | 
| 
       118 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       119 
     | 
    
         
            -
                  "name": "getNftId",
         
     | 
| 
       120 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       121 
     | 
    
         
            -
                    {
         
     | 
| 
       122 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       123 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       124 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       125 
     | 
    
         
            -
                    }
         
     | 
| 
       126 
     | 
    
         
            -
                  ],
         
     | 
| 
       127 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       128 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       129 
     | 
    
         
            -
                },
         
     | 
| 
       130 
     | 
    
         
            -
                {
         
     | 
| 
       131 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       132 
     | 
    
         
            -
                  "name": "getOwner",
         
     | 
| 
       133 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       134 
     | 
    
         
            -
                    {
         
     | 
| 
       135 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       136 
     | 
    
         
            -
                      "name": "owner",
         
     | 
| 
       137 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       138 
     | 
    
         
            -
                    }
         
     | 
| 
       139 
     | 
    
         
            -
                  ],
         
     | 
| 
       140 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       141 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       142 
     | 
    
         
            -
                },
         
     | 
| 
       143 
     | 
    
         
            -
                {
         
     | 
| 
       144 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       145 
     | 
    
         
            -
                  "name": "getParentNftId",
         
     | 
| 
       146 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       147 
     | 
    
         
            -
                    {
         
     | 
| 
       148 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       149 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       150 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       151 
     | 
    
         
            -
                    }
         
     | 
| 
       152 
     | 
    
         
            -
                  ],
         
     | 
| 
       153 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       154 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       155 
     | 
    
         
            -
                },
         
     | 
| 
       156 
     | 
    
         
            -
                {
         
     | 
| 
       157 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       158 
     | 
    
         
            -
                  "name": "getRegistry",
         
     | 
| 
       159 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       160 
     | 
    
         
            -
                    {
         
     | 
| 
       161 
     | 
    
         
            -
                      "internalType": "contract IRegistry",
         
     | 
| 
       162 
     | 
    
         
            -
                      "name": "registry",
         
     | 
| 
       163 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       164 
     | 
    
         
            -
                    }
         
     | 
| 
       165 
     | 
    
         
            -
                  ],
         
     | 
| 
       166 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       167 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       168 
     | 
    
         
            -
                },
         
     | 
| 
       169 
     | 
    
         
            -
                {
         
     | 
| 
       170 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       171 
     | 
    
         
            -
                  "name": "getType",
         
     | 
| 
       172 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       173 
     | 
    
         
            -
                    {
         
     | 
| 
       174 
     | 
    
         
            -
                      "internalType": "ObjectType",
         
     | 
| 
       175 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       176 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       177 
     | 
    
         
            -
                    }
         
     | 
| 
       178 
     | 
    
         
            -
                  ],
         
     | 
| 
       179 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       180 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       181 
     | 
    
         
            -
                },
         
     | 
| 
       182 
     | 
    
         
            -
                {
         
     | 
| 
       183 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       184 
     | 
    
         
            -
                  "name": "getVersion",
         
     | 
| 
       185 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       186 
     | 
    
         
            -
                    {
         
     | 
| 
       187 
     | 
    
         
            -
                      "internalType": "Version",
         
     | 
| 
       188 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       189 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
       190 
     | 
    
         
            -
                    }
         
     | 
| 
       191 
     | 
    
         
            -
                  ],
         
     | 
| 
       192 
     | 
    
         
            -
                  "stateMutability": "pure",
         
     | 
| 
       193 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       194 
     | 
    
         
            -
                },
         
     | 
| 
       195 
     | 
    
         
            -
                {
         
     | 
| 
       196 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       197 
     | 
    
         
            -
                    {
         
     | 
| 
       198 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       199 
     | 
    
         
            -
                      "name": "idx",
         
     | 
| 
       200 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       201 
     | 
    
         
            -
                    }
         
     | 
| 
       202 
     | 
    
         
            -
                  ],
         
     | 
| 
       203 
     | 
    
         
            -
                  "name": "getVersion",
         
     | 
| 
       204 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       205 
     | 
    
         
            -
                    {
         
     | 
| 
       206 
     | 
    
         
            -
                      "internalType": "Version",
         
     | 
| 
       207 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       208 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
       209 
     | 
    
         
            -
                    }
         
     | 
| 
       210 
     | 
    
         
            -
                  ],
         
     | 
| 
       211 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       212 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       213 
     | 
    
         
            -
                },
         
     | 
| 
       214 
     | 
    
         
            -
                {
         
     | 
| 
       215 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       216 
     | 
    
         
            -
                  "name": "getVersionCount",
         
     | 
| 
       217 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       218 
     | 
    
         
            -
                    {
         
     | 
| 
       219 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       220 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       221 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       222 
     | 
    
         
            -
                    }
         
     | 
| 
       223 
     | 
    
         
            -
                  ],
         
     | 
| 
       224 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       225 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       226 
     | 
    
         
            -
                },
         
     | 
| 
       227 
     | 
    
         
            -
                {
         
     | 
| 
       228 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       229 
     | 
    
         
            -
                    {
         
     | 
| 
       230 
     | 
    
         
            -
                      "internalType": "Version",
         
     | 
| 
       231 
     | 
    
         
            -
                      "name": "_version",
         
     | 
| 
       232 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
       233 
     | 
    
         
            -
                    }
         
     | 
| 
       234 
     | 
    
         
            -
                  ],
         
     | 
| 
       235 
     | 
    
         
            -
                  "name": "getVersionInfo",
         
     | 
| 
       236 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       237 
     | 
    
         
            -
                    {
         
     | 
| 
       238 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       239 
     | 
    
         
            -
                        {
         
     | 
| 
       240 
     | 
    
         
            -
                          "internalType": "Version",
         
     | 
| 
       241 
     | 
    
         
            -
                          "name": "version",
         
     | 
| 
       242 
     | 
    
         
            -
                          "type": "uint24"
         
     | 
| 
       243 
     | 
    
         
            -
                        },
         
     | 
| 
       244 
     | 
    
         
            -
                        {
         
     | 
| 
       245 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       246 
     | 
    
         
            -
                          "name": "implementation",
         
     | 
| 
       247 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       248 
     | 
    
         
            -
                        },
         
     | 
| 
       249 
     | 
    
         
            -
                        {
         
     | 
| 
       250 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       251 
     | 
    
         
            -
                          "name": "activatedBy",
         
     | 
| 
       252 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       253 
     | 
    
         
            -
                        },
         
     | 
| 
       254 
     | 
    
         
            -
                        {
         
     | 
| 
       255 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       256 
     | 
    
         
            -
                          "name": "activatedAt",
         
     | 
| 
       257 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       258 
     | 
    
         
            -
                        },
         
     | 
| 
       259 
     | 
    
         
            -
                        {
         
     | 
| 
       260 
     | 
    
         
            -
                          "internalType": "Blocknumber",
         
     | 
| 
       261 
     | 
    
         
            -
                          "name": "activatedIn",
         
     | 
| 
       262 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       263 
     | 
    
         
            -
                        }
         
     | 
| 
       264 
     | 
    
         
            -
                      ],
         
     | 
| 
       265 
     | 
    
         
            -
                      "internalType": "struct IVersionable.VersionInfo",
         
     | 
| 
       266 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       267 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       268 
     | 
    
         
            -
                    }
         
     | 
| 
       269 
     | 
    
         
            -
                  ],
         
     | 
| 
       270 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       271 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       272 
     | 
    
         
            -
                },
         
     | 
| 
       273 
     | 
    
         
            -
                {
         
     | 
| 
       274 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       275 
     | 
    
         
            -
                    {
         
     | 
| 
       276 
     | 
    
         
            -
                      "internalType": "Version",
         
     | 
| 
       277 
     | 
    
         
            -
                      "name": "_version",
         
     | 
| 
       278 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
       279 
     | 
    
         
            -
                    }
         
     | 
| 
       280 
     | 
    
         
            -
                  ],
         
     | 
| 
       281 
     | 
    
         
            -
                  "name": "isActivated",
         
     | 
| 
       282 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       283 
     | 
    
         
            -
                    {
         
     | 
| 
       284 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       285 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       286 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       287 
     | 
    
         
            -
                    }
         
     | 
| 
       288 
     | 
    
         
            -
                  ],
         
     | 
| 
       289 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       290 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       291 
     | 
    
         
            -
                },
         
     | 
| 
       292 
     | 
    
         
            -
                {
         
     | 
| 
       293 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       294 
     | 
    
         
            -
                  "name": "register",
         
     | 
| 
       295 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       296 
     | 
    
         
            -
                    {
         
     | 
| 
       297 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       298 
     | 
    
         
            -
                      "name": "nftId",
         
     | 
| 
       299 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       300 
     | 
    
         
            -
                    }
         
     | 
| 
       301 
     | 
    
         
            -
                  ],
         
     | 
| 
       302 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       303 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       304 
     | 
    
         
            -
                },
         
     | 
| 
       305 
     | 
    
         
            -
                {
         
     | 
| 
       306 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       307 
     | 
    
         
            -
                    {
         
     | 
| 
       308 
     | 
    
         
            -
                      "internalType": "bytes4",
         
     | 
| 
       309 
     | 
    
         
            -
                      "name": "interfaceId",
         
     | 
| 
       310 
     | 
    
         
            -
                      "type": "bytes4"
         
     | 
| 
       311 
     | 
    
         
            -
                    }
         
     | 
| 
       312 
     | 
    
         
            -
                  ],
         
     | 
| 
       313 
     | 
    
         
            -
                  "name": "supportsInterface",
         
     | 
| 
       314 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       315 
     | 
    
         
            -
                    {
         
     | 
| 
       316 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       317 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       318 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       319 
     | 
    
         
            -
                    }
         
     | 
| 
       320 
     | 
    
         
            -
                  ],
         
     | 
| 
       321 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       322 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       323 
     | 
    
         
            -
                }
         
     | 
| 
       324 
     | 
    
         
            -
              ],
         
     | 
| 
       325 
     | 
    
         
            -
              "bytecode": "0x60e06040523480156200001157600080fd5b50604051620016703803806200167083398101604081905262000034916200071f565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055818181816001600160a01b038216620000d05760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040516301ffc9a760e01b81526306ecd8ef60e01b60048201526301ffc9a790602401602060405180830381865afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000146919062000774565b620001945760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620000c7565b6001600160601b03811660a081905260805160405163e74d052f60e01b815260048101929092526001600160a01b03169063e74d052f90602401602060405180830381865afa158015620001ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000212919062000774565b6200026c5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a5247422d3031323a504152454e545f4e4f545f5245474953544560448201526214915160ea1b6064820152608401620000c7565b3360c052631dfba64760e11b60009081526020527f95e5a2564f7af40498dc043c6da135e06324c5edb1f60c2bf4dcdf2da207fa45805460ff1916600117905550620002bc905060003362000302565b631b4612f160e31b60009081526020527ffc58a5a01198e68c5a5d0bcd463f9ab550fc4337b1df271aed6dbb33d25fef25805460ff191660011790555050505062000818565b60006200030e620005da565b90506200031b8162000667565b156200037a5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b6064820152608401620000c7565b600254156200043b57600280546000919062000399906001906200079f565b81548110620003ac57620003ac620007c1565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050620003df82826200070d565b620004395760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b6064820152608401620000c7565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101620004c54290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990620005cd9083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156200063c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006629190620007d7565b905090565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015620006e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007069190620007fe565b1192915050565b62ffffff808216908316115b92915050565b600080604083850312156200073357600080fd5b82516001600160a01b03811681146200074b57600080fd5b60208401519092506001600160601b03811681146200076957600080fd5b809150509250929050565b6000602082840312156200078757600080fd5b815180151581146200079857600080fd5b9392505050565b818103818111156200071957634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060208284031215620007ea57600080fd5b815162ffffff811681146200079857600080fd5b6000602082840312156200081157600080fd5b5051919050565b60805160a05160c051610e0c620008646000396000610712015260006101e801526000818161033101528181610595015281816106220152818161069301526107550152610e0c6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80634d459c90116100a2578063946dfcfe11610071578063946dfcfe146103795780639555c4db1461038a578063a3f4df7e1461039f578063b88da759146103c9578063cde749f4146103dc57600080fd5b80634d459c90146102205780635ab1bd531461032f578063644c45e014610369578063893d20e81461037157600080fd5b806317d7de7c116100de57806317d7de7c146101965780631aa3a008146101c657806331b62a3b146101e65780633bc5de301461020c57600080fd5b806301ffc9a7146101105780630abd8434146101525780630d8e6e2c1461016557806315dae03e14610181575b600080fd5b61013d61011e366004610bde565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61013d610160366004610c23565b6103e4565b61016d610487565b60405162ffffff9091168152602001610149565b60285b60405160ff9091168152602001610149565b60408051808201909152600b81526a546573745365727669636560a81b60208201525b6040516101499190610c86565b6101ce610511565b6040516001600160601b039091168152602001610149565b7f00000000000000000000000000000000000000000000000000000000000000006101ce565b6040805160208101909152600081526101b9565b6102d261022e366004610c23565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff908116600090815260016020818152604092839020835160a0810185528154958616815263010000009095046001600160a01b03908116928601929092529091015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610149565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610149565b6101ce61060a565b610351610671565b600254604051908152602001610149565b61039d610398366004610cae565b6107ce565b005b6101b96040518060400160405280600b81526020016a546573745365727669636560a81b81525081565b61016d6103d7366004610ce7565b6107dc565b61018461081d565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801561045c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104809190610d00565b1192915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190610d19565b905090565b600061051b610671565b6001600160a01b0316336001600160a01b0316146105805760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e455200000000000000000060448201526064015b60405180910390fd5b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af11580156105e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190610d36565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa1580156105e6573d6000803e3d6000fd5b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa1580156106da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fe9190610d36565b905061070b8160006108fa565b15610737577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c89190610d5f565b91505090565b6107d88282610910565b5050565b6000600282815481106107f1576107f1610d7c565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000306001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561085d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108819190610d19565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156108d6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190610d92565b6001600160601b03828116908216145b92915050565b600061091a610487565b9050610925816103e4565b156109825760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b6064820152608401610577565b60025415610a4157600280546000919061099e90600190610db5565b815481106109ae576109ae610d7c565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1690506109e7828262ffffff90811691161190565b610a3f5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b6064820152608401610577565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101610aca4290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990610bd19083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b600060208284031215610bf057600080fd5b81356001600160e01b031981168114610c0857600080fd5b9392505050565b62ffffff81168114610c2057600080fd5b50565b600060208284031215610c3557600080fd5b8135610c0881610c0f565b6000815180845260005b81811015610c6657602081850181015186830182015201610c4a565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610c086020830184610c40565b6001600160a01b0381168114610c2057600080fd5b60008060408385031215610cc157600080fd5b8235610ccc81610c99565b91506020830135610cdc81610c99565b809150509250929050565b600060208284031215610cf957600080fd5b5035919050565b600060208284031215610d1257600080fd5b5051919050565b600060208284031215610d2b57600080fd5b8151610c0881610c0f565b600060208284031215610d4857600080fd5b81516001600160601b0381168114610c0857600080fd5b600060208284031215610d7157600080fd5b8151610c0881610c99565b634e487b7160e01b600052603260045260246000fd5b600060208284031215610da457600080fd5b815160ff81168114610c0857600080fd5b8181038181111561090a57634e487b7160e01b600052601160045260246000fdfea26469706673582212205a9293815a75c6ced5fc29d043ea7c34291eae7c1817fb7ad895b5d877a4026e64736f6c63430008140033",
         
     | 
| 
       326 
     | 
    
         
            -
              "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80634d459c90116100a2578063946dfcfe11610071578063946dfcfe146103795780639555c4db1461038a578063a3f4df7e1461039f578063b88da759146103c9578063cde749f4146103dc57600080fd5b80634d459c90146102205780635ab1bd531461032f578063644c45e014610369578063893d20e81461037157600080fd5b806317d7de7c116100de57806317d7de7c146101965780631aa3a008146101c657806331b62a3b146101e65780633bc5de301461020c57600080fd5b806301ffc9a7146101105780630abd8434146101525780630d8e6e2c1461016557806315dae03e14610181575b600080fd5b61013d61011e366004610bde565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61013d610160366004610c23565b6103e4565b61016d610487565b60405162ffffff9091168152602001610149565b60285b60405160ff9091168152602001610149565b60408051808201909152600b81526a546573745365727669636560a81b60208201525b6040516101499190610c86565b6101ce610511565b6040516001600160601b039091168152602001610149565b7f00000000000000000000000000000000000000000000000000000000000000006101ce565b6040805160208101909152600081526101b9565b6102d261022e366004610c23565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff908116600090815260016020818152604092839020835160a0810185528154958616815263010000009095046001600160a01b03908116928601929092529091015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610149565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610149565b6101ce61060a565b610351610671565b600254604051908152602001610149565b61039d610398366004610cae565b6107ce565b005b6101b96040518060400160405280600b81526020016a546573745365727669636560a81b81525081565b61016d6103d7366004610ce7565b6107dc565b61018461081d565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801561045c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104809190610d00565b1192915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190610d19565b905090565b600061051b610671565b6001600160a01b0316336001600160a01b0316146105805760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e455200000000000000000060448201526064015b60405180910390fd5b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af11580156105e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190610d36565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa1580156105e6573d6000803e3d6000fd5b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa1580156106da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fe9190610d36565b905061070b8160006108fa565b15610737577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c89190610d5f565b91505090565b6107d88282610910565b5050565b6000600282815481106107f1576107f1610d7c565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000306001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561085d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108819190610d19565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156108d6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050c9190610d92565b6001600160601b03828116908216145b92915050565b600061091a610487565b9050610925816103e4565b156109825760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b6064820152608401610577565b60025415610a4157600280546000919061099e90600190610db5565b815481106109ae576109ae610d7c565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1690506109e7828262ffffff90811691161190565b610a3f5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b6064820152608401610577565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101610aca4290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990610bd19083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b600060208284031215610bf057600080fd5b81356001600160e01b031981168114610c0857600080fd5b9392505050565b62ffffff81168114610c2057600080fd5b50565b600060208284031215610c3557600080fd5b8135610c0881610c0f565b6000815180845260005b81811015610c6657602081850181015186830182015201610c4a565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610c086020830184610c40565b6001600160a01b0381168114610c2057600080fd5b60008060408385031215610cc157600080fd5b8235610ccc81610c99565b91506020830135610cdc81610c99565b809150509250929050565b600060208284031215610cf957600080fd5b5035919050565b600060208284031215610d1257600080fd5b5051919050565b600060208284031215610d2b57600080fd5b8151610c0881610c0f565b600060208284031215610d4857600080fd5b81516001600160601b0381168114610c0857600080fd5b600060208284031215610d7157600080fd5b8151610c0881610c99565b634e487b7160e01b600052603260045260246000fd5b600060208284031215610da457600080fd5b815160ff81168114610c0857600080fd5b8181038181111561090a57634e487b7160e01b600052601160045260246000fdfea26469706673582212205a9293815a75c6ced5fc29d043ea7c34291eae7c1817fb7ad895b5d877a4026e64736f6c63430008140033",
         
     | 
| 
       327 
     | 
    
         
            -
              "linkReferences": {
         
     | 
| 
       328 
     | 
    
         
            -
                "contracts/types/Blocknumber.sol": {
         
     | 
| 
       329 
     | 
    
         
            -
                  "BlocknumberLib": [
         
     | 
| 
       330 
     | 
    
         
            -
                    {
         
     | 
| 
       331 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       332 
     | 
    
         
            -
                      "start": 1701
         
     | 
| 
       333 
     | 
    
         
            -
                    },
         
     | 
| 
       334 
     | 
    
         
            -
                    {
         
     | 
| 
       335 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       336 
     | 
    
         
            -
                      "start": 3206
         
     | 
| 
       337 
     | 
    
         
            -
                    }
         
     | 
| 
       338 
     | 
    
         
            -
                  ]
         
     | 
| 
       339 
     | 
    
         
            -
                },
         
     | 
| 
       340 
     | 
    
         
            -
                "contracts/types/Version.sol": {
         
     | 
| 
       341 
     | 
    
         
            -
                  "VersionLib": [
         
     | 
| 
       342 
     | 
    
         
            -
                    {
         
     | 
| 
       343 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       344 
     | 
    
         
            -
                      "start": 1537
         
     | 
| 
       345 
     | 
    
         
            -
                    },
         
     | 
| 
       346 
     | 
    
         
            -
                    {
         
     | 
| 
       347 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       348 
     | 
    
         
            -
                      "start": 3346
         
     | 
| 
       349 
     | 
    
         
            -
                    },
         
     | 
| 
       350 
     | 
    
         
            -
                    {
         
     | 
| 
       351 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       352 
     | 
    
         
            -
                      "start": 4352
         
     | 
| 
       353 
     | 
    
         
            -
                    }
         
     | 
| 
       354 
     | 
    
         
            -
                  ]
         
     | 
| 
       355 
     | 
    
         
            -
                }
         
     | 
| 
       356 
     | 
    
         
            -
              },
         
     | 
| 
       357 
     | 
    
         
            -
              "deployedLinkReferences": {
         
     | 
| 
       358 
     | 
    
         
            -
                "contracts/types/Blocknumber.sol": {
         
     | 
| 
       359 
     | 
    
         
            -
                  "BlocknumberLib": [
         
     | 
| 
       360 
     | 
    
         
            -
                    {
         
     | 
| 
       361 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       362 
     | 
    
         
            -
                      "start": 1058
         
     | 
| 
       363 
     | 
    
         
            -
                    }
         
     | 
| 
       364 
     | 
    
         
            -
                  ]
         
     | 
| 
       365 
     | 
    
         
            -
                },
         
     | 
| 
       366 
     | 
    
         
            -
                "contracts/types/Version.sol": {
         
     | 
| 
       367 
     | 
    
         
            -
                  "VersionLib": [
         
     | 
| 
       368 
     | 
    
         
            -
                    {
         
     | 
| 
       369 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       370 
     | 
    
         
            -
                      "start": 1198
         
     | 
| 
       371 
     | 
    
         
            -
                    },
         
     | 
| 
       372 
     | 
    
         
            -
                    {
         
     | 
| 
       373 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       374 
     | 
    
         
            -
                      "start": 2204
         
     | 
| 
       375 
     | 
    
         
            -
                    }
         
     | 
| 
       376 
     | 
    
         
            -
                  ]
         
     | 
| 
       377 
     | 
    
         
            -
                }
         
     | 
| 
       378 
     | 
    
         
            -
              }
         
     | 
| 
       379 
     | 
    
         
            -
            }
         
     |