@etherisc/gif-next 0.0.2-e876b87-961 → 0.0.2-e8a628e-326
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 +90 -7
 - package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
 - package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
 - package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +790 -0
 - package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
 - package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +640 -269
 - package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +409 -33
 - package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +525 -213
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +179 -19
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +246 -16
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +420 -27
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +132 -290
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +381 -46
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +64 -163
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +585 -231
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +170 -78
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +44 -125
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +401 -78
 - package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
 - package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
 - package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +160 -214
 - package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +380 -45
 - package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
 - package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +308 -327
 - package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +380 -45
 - package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +215 -247
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
 - package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +95 -155
 - package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
 - package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +278 -223
 - package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
 - package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +944 -454
 - package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
 - package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/BaseStore.sol/BaseStore.json +498 -0
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
 - package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +470 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +541 -50
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +407 -17
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +606 -106
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +990 -359
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +337 -61
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1069 -481
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +424 -81
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +102 -52
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +648 -948
 - package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +1759 -0
 - package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
 - package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +83 -165
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +379 -47
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +48 -64
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +56 -3
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +67 -101
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +157 -81
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +134 -46
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +106 -163
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +380 -45
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +317 -344
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +125 -93
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +219 -146
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +63 -118
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +380 -214
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/pool/Pool.sol/Pool.json +76 -149
 - package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +621 -413
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +168 -68
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +327 -62
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +123 -43
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +199 -213
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +380 -45
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +294 -189
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +134 -86
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +268 -10
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +181 -19
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +167 -56
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +77 -3
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +175 -171
 - package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
 - package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +258 -22
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +296 -194
 - package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +150 -78
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +139 -114
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +112 -60
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/product/Product.sol/Product.json +193 -207
 - package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
 - package/artifacts/contracts/product/RiskService.sol/RiskService.json +338 -87
 - package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +123 -43
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +78 -19
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +56 -3
 - package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +116 -57
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +727 -453
 - package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1074 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +89 -37
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +99 -39
 - package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +386 -64
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +437 -26
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +120 -60
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/shared/Component.sol/Component.json +66 -86
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +308 -542
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +136 -84
 - package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
 - package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +544 -4
 - package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.json +48 -50
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +171 -356
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +48 -64
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +43 -6
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -0
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +139 -1
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +56 -3
 - package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -2
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +66 -100
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +43 -6
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +137 -62
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +51 -11
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +289 -112
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
 - package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +70 -30
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1446 -154
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +214 -110
 - package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
 - package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
 - package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
 - package/artifacts/contracts/staking/Staking.sol/Staking.json +1583 -286
 - package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +140 -69
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +294 -177
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +257 -162
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +102 -46
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1632 -818
 - package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
 - package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +160 -88
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Amount.sol/AmountLib.json +11 -11
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +45 -19
 - package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
 - package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Fee.sol/FeeLib.json +94 -38
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
 - package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +33 -31
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +69 -7
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +42 -157
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +45 -2
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
 - package/artifacts/contracts/type/String.sol/StrLib.json +50 -2
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +3 -3
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +61 -37
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.json +101 -2
 - package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
 - package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +79 -25
 - package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
 - package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
 - package/contracts/accounting/AccountingService.sol +274 -0
 - package/contracts/accounting/AccountingServiceManager.sol +38 -0
 - package/contracts/accounting/IAccountingService.sol +47 -0
 - package/contracts/authorization/AccessAdmin.sol +429 -245
 - package/contracts/authorization/AccessAdminLib.sol +396 -0
 - package/contracts/authorization/AccessManagerCloneable.sol +146 -4
 - package/contracts/authorization/Authorization.sol +142 -262
 - package/contracts/authorization/IAccess.sol +25 -7
 - package/contracts/authorization/IAccessAdmin.sol +87 -80
 - package/contracts/authorization/IAuthorization.sol +9 -43
 - package/contracts/authorization/IServiceAuthorization.sol +55 -17
 - package/contracts/authorization/ServiceAuthorization.sol +248 -34
 - package/contracts/distribution/BasicDistribution.sol +18 -16
 - package/contracts/distribution/BasicDistributionAuthorization.sol +30 -10
 - package/contracts/distribution/Distribution.sol +43 -81
 - package/contracts/distribution/DistributionService.sol +192 -99
 - package/contracts/distribution/DistributionServiceManager.sol +1 -1
 - package/contracts/distribution/IDistributionComponent.sol +3 -10
 - package/contracts/distribution/IDistributionService.sol +38 -24
 - package/contracts/examples/fire/FirePool.sol +21 -8
 - package/contracts/examples/fire/FirePoolAuthorization.sol +2 -1
 - package/contracts/examples/fire/FireProduct.sol +38 -20
 - package/contracts/examples/fire/FireProductAuthorization.sol +2 -1
 - package/contracts/examples/unpermissioned/SimpleDistribution.sol +39 -8
 - package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
 - package/contracts/examples/unpermissioned/SimpleOracle.sol +4 -8
 - package/contracts/examples/unpermissioned/SimplePool.sol +32 -6
 - package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
 - package/contracts/examples/unpermissioned/SimpleProduct.sol +132 -46
 - package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
 - package/contracts/instance/BaseStore.sol +97 -0
 - package/contracts/instance/BundleSet.sol +42 -38
 - package/contracts/instance/IBaseStore.sol +43 -0
 - package/contracts/instance/IInstance.sol +109 -19
 - package/contracts/instance/IInstanceService.sol +61 -14
 - package/contracts/instance/Instance.sol +191 -65
 - package/contracts/instance/InstanceAdmin.sol +271 -171
 - package/contracts/instance/InstanceAuthorizationV3.sol +139 -58
 - package/contracts/instance/InstanceReader.sol +451 -312
 - package/contracts/instance/InstanceService.sol +315 -214
 - package/contracts/instance/InstanceServiceManager.sol +1 -1
 - package/contracts/instance/InstanceStore.sol +14 -30
 - package/contracts/instance/ProductStore.sol +110 -0
 - package/contracts/instance/RiskSet.sol +126 -0
 - package/contracts/instance/TargetNames.sol +10 -0
 - package/contracts/instance/base/BalanceStore.sol +4 -6
 - package/contracts/instance/base/ObjectCounter.sol +1 -2
 - package/contracts/instance/base/ObjectLifecycle.sol +6 -8
 - package/contracts/instance/base/ObjectSet.sol +31 -33
 - package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
 - package/contracts/instance/module/IBundle.sol +6 -5
 - package/contracts/instance/module/IComponents.sol +20 -9
 - package/contracts/instance/module/IDistribution.sol +21 -8
 - package/contracts/instance/module/IPolicy.sol +28 -7
 - package/contracts/instance/module/IRisk.sol +5 -0
 - package/contracts/oracle/BasicOracle.sol +2 -4
 - package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
 - package/contracts/oracle/IOracle.sol +9 -4
 - package/contracts/oracle/Oracle.sol +3 -5
 - package/contracts/oracle/OracleService.sol +98 -79
 - package/contracts/oracle/OracleServiceManager.sol +1 -1
 - package/contracts/pool/BasicPool.sol +25 -17
 - package/contracts/pool/BasicPoolAuthorization.sol +34 -10
 - package/contracts/pool/BundleService.sol +75 -182
 - package/contracts/pool/BundleServiceManager.sol +1 -1
 - package/contracts/pool/IBundleService.sol +28 -55
 - package/contracts/pool/IPoolComponent.sol +1 -7
 - package/contracts/pool/IPoolService.sol +65 -62
 - package/contracts/pool/Pool.sol +109 -111
 - package/contracts/pool/PoolLib.sol +341 -0
 - package/contracts/pool/PoolService.sol +299 -229
 - package/contracts/pool/PoolServiceManager.sol +1 -1
 - package/contracts/product/ApplicationService.sol +93 -25
 - package/contracts/product/ApplicationServiceManager.sol +1 -1
 - package/contracts/product/BasicProduct.sol +9 -13
 - package/contracts/product/BasicProductAuthorization.sol +32 -11
 - package/contracts/product/ClaimService.sol +221 -207
 - package/contracts/product/ClaimServiceManager.sol +1 -1
 - package/contracts/product/IApplicationService.sol +28 -3
 - package/contracts/product/IClaimService.sol +18 -5
 - package/contracts/product/IPolicyService.sol +34 -12
 - package/contracts/product/IPricingService.sol +1 -0
 - package/contracts/product/IProductComponent.sol +4 -1
 - package/contracts/product/IRiskService.sol +25 -10
 - package/contracts/product/PolicyService.sol +258 -304
 - package/contracts/product/PolicyServiceLib.sol +139 -0
 - package/contracts/product/PolicyServiceManager.sol +1 -1
 - package/contracts/product/PricingService.sol +52 -46
 - package/contracts/product/PricingServiceManager.sol +3 -3
 - package/contracts/product/Product.sol +104 -66
 - package/contracts/product/RiskService.sol +128 -34
 - package/contracts/product/RiskServiceManager.sol +1 -1
 - package/contracts/registry/ChainNft.sol +4 -2
 - package/contracts/registry/IRegistry.sol +25 -24
 - package/contracts/registry/IRelease.sol +29 -0
 - package/contracts/registry/Registry.sol +31 -12
 - package/contracts/registry/RegistryAdmin.sol +107 -364
 - package/contracts/registry/RegistryAuthorization.sol +336 -0
 - package/contracts/registry/RegistryService.sol +4 -4
 - package/contracts/registry/RegistryServiceManager.sol +1 -1
 - package/contracts/registry/ReleaseAdmin.sol +195 -0
 - package/contracts/registry/ReleaseLifecycle.sol +2 -0
 - package/contracts/registry/ReleaseRegistry.sol +158 -134
 - package/contracts/registry/ServiceAuthorizationV3.sol +200 -52
 - package/contracts/registry/TokenRegistry.sol +61 -59
 - package/contracts/shared/Component.sol +56 -113
 - package/contracts/shared/ComponentService.sol +392 -406
 - package/contracts/shared/ComponentServiceManager.sol +1 -1
 - package/contracts/shared/ContractLib.sol +277 -3
 - package/contracts/shared/IComponent.sol +2 -18
 - package/contracts/shared/IComponentService.sol +28 -38
 - package/contracts/shared/IInstanceLinkedComponent.sol +0 -11
 - package/contracts/shared/IKeyValueStore.sol +9 -1
 - package/contracts/shared/INftOwnable.sol +2 -0
 - package/contracts/shared/IRegisterable.sol +15 -5
 - package/contracts/shared/IService.sol +3 -5
 - package/contracts/shared/InitializableERC165.sol +9 -1
 - package/contracts/shared/InstanceLinkedComponent.sol +8 -27
 - package/contracts/shared/KeyValueStore.sol +3 -3
 - package/contracts/shared/NftOwnable.sol +8 -6
 - package/contracts/shared/PolicyHolder.sol +4 -3
 - package/contracts/shared/Registerable.sol +41 -20
 - package/contracts/shared/RegistryLinked.sol +7 -13
 - package/contracts/shared/Service.sol +13 -30
 - package/contracts/shared/TokenHandler.sol +264 -105
 - package/contracts/shared/TokenHandlerDeployerLib.sol +10 -2
 - package/contracts/staking/IStaking.sol +271 -72
 - package/contracts/staking/IStakingService.sol +45 -75
 - package/contracts/staking/ITargetLimitHandler.sol +17 -0
 - package/contracts/staking/Staking.sol +521 -220
 - package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +55 -84
 - package/contracts/staking/StakingManager.sol +4 -3
 - package/contracts/staking/StakingReader.sol +58 -77
 - package/contracts/staking/StakingService.sol +62 -148
 - package/contracts/staking/StakingServiceManager.sol +6 -4
 - package/contracts/staking/StakingStore.sol +1093 -330
 - package/contracts/staking/TargetHandler.sol +132 -0
 - package/contracts/staking/TargetManagerLib.sol +69 -46
 - package/contracts/type/Amount.sol +4 -0
 - package/contracts/type/Blocknumber.sol +15 -15
 - package/contracts/type/ChainId.sol +101 -0
 - package/contracts/type/Fee.sol +8 -8
 - package/contracts/type/Key32.sol +2 -2
 - package/contracts/type/Key32Set.sol +62 -0
 - package/contracts/type/NftId.sol +6 -0
 - package/contracts/type/ObjectType.sol +69 -38
 - package/contracts/type/RiskId.sol +26 -8
 - package/contracts/type/RoleId.sol +63 -45
 - package/contracts/type/Seconds.sol +19 -0
 - package/contracts/type/Selector.sol +5 -0
 - package/contracts/type/String.sol +12 -0
 - package/contracts/type/Timestamp.sol +4 -7
 - package/contracts/type/UFixed.sol +35 -127
 - package/contracts/type/Version.sol +54 -5
 - package/contracts/upgradeability/IVersionable.sol +3 -0
 - package/contracts/upgradeability/ProxyManager.sol +26 -12
 - package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
 - package/contracts/upgradeability/Versionable.sol +6 -3
 - package/package.json +4 -4
 - package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +0 -4
 - package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +0 -1196
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
 - package/artifacts/contracts/shared/ComponentServiceHelperLib.sol/ComponentServiceHelperLib.dbg.json +0 -4
 - package/artifacts/contracts/shared/ComponentServiceHelperLib.sol/ComponentServiceHelperLib.json +0 -206
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +0 -474
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -440
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -205
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
 - package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
 - package/contracts/authorization/ReleaseAccessManager.sol +0 -38
 - package/contracts/instance/module/IAccess.sol +0 -46
 - package/contracts/shared/ComponentServiceHelperLib.sol +0 -118
 - package/contracts/shared/ComponentVerifyingService.sol +0 -126
 - package/contracts/staking/StakingLifecycle.sol +0 -23
 
| 
         @@ -43,12 +43,98 @@ 
     | 
|
| 
       43 
43 
     | 
    
         
             
                },
         
     | 
| 
       44 
44 
     | 
    
         
             
                {
         
     | 
| 
       45 
45 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       46 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 46 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAccessManagerEmptyName",
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 48 
     | 
    
         
            +
                },
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    }
         
     | 
| 
      
 56 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAccessManagerNotAccessManager",
         
     | 
| 
      
 58 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 59 
     | 
    
         
            +
                },
         
     | 
| 
      
 60 
     | 
    
         
            +
                {
         
     | 
| 
      
 61 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 62 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAdminRoleMissing",
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 64 
     | 
    
         
            +
                },
         
     | 
| 
      
 65 
     | 
    
         
            +
                {
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 67 
     | 
    
         
            +
                    {
         
     | 
| 
      
 68 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 71 
     | 
    
         
            +
                    }
         
     | 
| 
      
 72 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 73 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAlreadyInitialized",
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 75 
     | 
    
         
            +
                },
         
     | 
| 
      
 76 
     | 
    
         
            +
                {
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 78 
     | 
    
         
            +
                    {
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 82 
     | 
    
         
            +
                    }
         
     | 
| 
      
 83 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAuthorityNotContract",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 86 
     | 
    
         
            +
                },
         
     | 
| 
      
 87 
     | 
    
         
            +
                {
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 89 
     | 
    
         
            +
                    {
         
     | 
| 
      
 90 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 91 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 92 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 93 
     | 
    
         
            +
                    }
         
     | 
| 
      
 94 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAuthorizeForAdminRoleInvalid",
         
     | 
| 
      
 96 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 97 
     | 
    
         
            +
                },
         
     | 
| 
      
 98 
     | 
    
         
            +
                {
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 100 
     | 
    
         
            +
                    {
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 102 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 103 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 104 
     | 
    
         
            +
                    },
         
     | 
| 
      
 105 
     | 
    
         
            +
                    {
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "name": "expectedDomain",
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 109 
     | 
    
         
            +
                    },
         
     | 
| 
      
 110 
     | 
    
         
            +
                    {
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "name": "actualDomain",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 114 
     | 
    
         
            +
                    }
         
     | 
| 
      
 115 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "name": "ErrorAccessAdminDomainMismatch",
         
     | 
| 
       47 
117 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       48 
118 
     | 
    
         
             
                },
         
     | 
| 
       49 
119 
     | 
    
         
             
                {
         
     | 
| 
       50 
120 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       51 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 121 
     | 
    
         
            +
                  "name": "ErrorAccessAdminFunctionNameEmpty",
         
     | 
| 
      
 122 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 123 
     | 
    
         
            +
                },
         
     | 
| 
      
 124 
     | 
    
         
            +
                {
         
     | 
| 
      
 125 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 126 
     | 
    
         
            +
                    {
         
     | 
| 
      
 127 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 130 
     | 
    
         
            +
                    },
         
     | 
| 
      
 131 
     | 
    
         
            +
                    {
         
     | 
| 
      
 132 
     | 
    
         
            +
                      "internalType": "enum IAccess.TargetType",
         
     | 
| 
      
 133 
     | 
    
         
            +
                      "name": "serviceTargetType",
         
     | 
| 
      
 134 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 135 
     | 
    
         
            +
                    }
         
     | 
| 
      
 136 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 137 
     | 
    
         
            +
                  "name": "ErrorAccessAdminInvalidServiceType",
         
     | 
| 
       52 
138 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       53 
139 
     | 
    
         
             
                },
         
     | 
| 
       54 
140 
     | 
    
         
             
                {
         
     | 
| 
         @@ -57,9 +143,24 @@ 
     | 
|
| 
       57 
143 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       58 
144 
     | 
    
         
             
                      "name": "target",
         
     | 
| 
       59 
145 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 146 
     | 
    
         
            +
                    },
         
     | 
| 
      
 147 
     | 
    
         
            +
                    {
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "internalType": "enum IAccess.TargetType",
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "name": "targetType",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       60 
151 
     | 
    
         
             
                    }
         
     | 
| 
       61 
152 
     | 
    
         
             
                  ],
         
     | 
| 
       62 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 153 
     | 
    
         
            +
                  "name": "ErrorAccessAdminInvalidTargetType",
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 155 
     | 
    
         
            +
                },
         
     | 
| 
      
 156 
     | 
    
         
            +
                {
         
     | 
| 
      
 157 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 158 
     | 
    
         
            +
                  "name": "ErrorAccessAdminInvalidUserOfAdminRole",
         
     | 
| 
      
 159 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 160 
     | 
    
         
            +
                },
         
     | 
| 
      
 161 
     | 
    
         
            +
                {
         
     | 
| 
      
 162 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 163 
     | 
    
         
            +
                  "name": "ErrorAccessAdminInvalidUserOfPublicRole",
         
     | 
| 
       63 
164 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       64 
165 
     | 
    
         
             
                },
         
     | 
| 
       65 
166 
     | 
    
         
             
                {
         
     | 
| 
         @@ -68,14 +169,52 @@ 
     | 
|
| 
       68 
169 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       69 
170 
     | 
    
         
             
                      "name": "adminRoleId",
         
     | 
| 
       70 
171 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
      
 172 
     | 
    
         
            +
                    },
         
     | 
| 
      
 173 
     | 
    
         
            +
                    {
         
     | 
| 
      
 174 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 175 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 176 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 177 
     | 
    
         
            +
                    }
         
     | 
| 
      
 178 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 179 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotAdminOfRole",
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 181 
     | 
    
         
            +
                },
         
     | 
| 
      
 182 
     | 
    
         
            +
                {
         
     | 
| 
      
 183 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 184 
     | 
    
         
            +
                    {
         
     | 
| 
      
 185 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       71 
188 
     | 
    
         
             
                    }
         
     | 
| 
       72 
189 
     | 
    
         
             
                  ],
         
     | 
| 
       73 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 190 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotAuthorization",
         
     | 
| 
       74 
191 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       75 
192 
     | 
    
         
             
                },
         
     | 
| 
       76 
193 
     | 
    
         
             
                {
         
     | 
| 
       77 
194 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       78 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 195 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotDeployer",
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 197 
     | 
    
         
            +
                },
         
     | 
| 
      
 198 
     | 
    
         
            +
                {
         
     | 
| 
      
 199 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 200 
     | 
    
         
            +
                    {
         
     | 
| 
      
 201 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 202 
     | 
    
         
            +
                      "name": "registerable",
         
     | 
| 
      
 203 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 204 
     | 
    
         
            +
                    }
         
     | 
| 
      
 205 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 206 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotRegistered",
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 208 
     | 
    
         
            +
                },
         
     | 
| 
      
 209 
     | 
    
         
            +
                {
         
     | 
| 
      
 210 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 211 
     | 
    
         
            +
                    {
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 213 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 214 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 215 
     | 
    
         
            +
                    }
         
     | 
| 
      
 216 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotRegistry",
         
     | 
| 
       79 
218 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       80 
219 
     | 
    
         
             
                },
         
     | 
| 
       81 
220 
     | 
    
         
             
                {
         
     | 
| 
         @@ -84,9 +223,46 @@ 
     | 
|
| 
       84 
223 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       85 
224 
     | 
    
         
             
                      "name": "roleId",
         
     | 
| 
       86 
225 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
      
 226 
     | 
    
         
            +
                    },
         
     | 
| 
      
 227 
     | 
    
         
            +
                    {
         
     | 
| 
      
 228 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 230 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 231 
     | 
    
         
            +
                    }
         
     | 
| 
      
 232 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 233 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotRoleOwner",
         
     | 
| 
      
 234 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 235 
     | 
    
         
            +
                },
         
     | 
| 
      
 236 
     | 
    
         
            +
                {
         
     | 
| 
      
 237 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 238 
     | 
    
         
            +
                    {
         
     | 
| 
      
 239 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 240 
     | 
    
         
            +
                      "name": "serviceAuthorization",
         
     | 
| 
      
 241 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       87 
242 
     | 
    
         
             
                    }
         
     | 
| 
       88 
243 
     | 
    
         
             
                  ],
         
     | 
| 
       89 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 244 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotServiceAuthorization",
         
     | 
| 
      
 245 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 246 
     | 
    
         
            +
                },
         
     | 
| 
      
 247 
     | 
    
         
            +
                {
         
     | 
| 
      
 248 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 249 
     | 
    
         
            +
                    {
         
     | 
| 
      
 250 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 251 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 252 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 253 
     | 
    
         
            +
                    },
         
     | 
| 
      
 254 
     | 
    
         
            +
                    {
         
     | 
| 
      
 255 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 256 
     | 
    
         
            +
                      "name": "expectedRelease",
         
     | 
| 
      
 257 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 258 
     | 
    
         
            +
                    },
         
     | 
| 
      
 259 
     | 
    
         
            +
                    {
         
     | 
| 
      
 260 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 261 
     | 
    
         
            +
                      "name": "actualRelease",
         
     | 
| 
      
 262 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 263 
     | 
    
         
            +
                    }
         
     | 
| 
      
 264 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 265 
     | 
    
         
            +
                  "name": "ErrorAccessAdminReleaseMismatch",
         
     | 
| 
       90 
266 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       91 
267 
     | 
    
         
             
                },
         
     | 
| 
       92 
268 
     | 
    
         
             
                {
         
     | 
| 
         @@ -97,7 +273,7 @@ 
     | 
|
| 
       97 
273 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       98 
274 
     | 
    
         
             
                    }
         
     | 
| 
       99 
275 
     | 
    
         
             
                  ],
         
     | 
| 
       100 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 276 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleAdminNotExisting",
         
     | 
| 
       101 
277 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       102 
278 
     | 
    
         
             
                },
         
     | 
| 
       103 
279 
     | 
    
         
             
                {
         
     | 
| 
         @@ -113,7 +289,7 @@ 
     | 
|
| 
       113 
289 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       114 
290 
     | 
    
         
             
                    }
         
     | 
| 
       115 
291 
     | 
    
         
             
                  ],
         
     | 
| 
       116 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 292 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleAlreadyCreated",
         
     | 
| 
       117 
293 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       118 
294 
     | 
    
         
             
                },
         
     | 
| 
       119 
295 
     | 
    
         
             
                {
         
     | 
| 
         @@ -124,7 +300,7 @@ 
     | 
|
| 
       124 
300 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       125 
301 
     | 
    
         
             
                    }
         
     | 
| 
       126 
302 
     | 
    
         
             
                  ],
         
     | 
| 
       127 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 303 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleIsLocked",
         
     | 
| 
       128 
304 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       129 
305 
     | 
    
         
             
                },
         
     | 
| 
       130 
306 
     | 
    
         
             
                {
         
     | 
| 
         @@ -135,7 +311,7 @@ 
     | 
|
| 
       135 
311 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       136 
312 
     | 
    
         
             
                    }
         
     | 
| 
       137 
313 
     | 
    
         
             
                  ],
         
     | 
| 
       138 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 314 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleIsPaused",
         
     | 
| 
       139 
315 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       140 
316 
     | 
    
         
             
                },
         
     | 
| 
       141 
317 
     | 
    
         
             
                {
         
     | 
| 
         @@ -151,7 +327,7 @@ 
     | 
|
| 
       151 
327 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       152 
328 
     | 
    
         
             
                    }
         
     | 
| 
       153 
329 
     | 
    
         
             
                  ],
         
     | 
| 
       154 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 330 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleMemberNotContract",
         
     | 
| 
       155 
331 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       156 
332 
     | 
    
         
             
                },
         
     | 
| 
       157 
333 
     | 
    
         
             
                {
         
     | 
| 
         @@ -167,7 +343,7 @@ 
     | 
|
| 
       167 
343 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       168 
344 
     | 
    
         
             
                    }
         
     | 
| 
       169 
345 
     | 
    
         
             
                  ],
         
     | 
| 
       170 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 346 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleMemberRemovalDisabled",
         
     | 
| 
       171 
347 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       172 
348 
     | 
    
         
             
                },
         
     | 
| 
       173 
349 
     | 
    
         
             
                {
         
     | 
| 
         @@ -183,7 +359,7 @@ 
     | 
|
| 
       183 
359 
     | 
    
         
             
                      "type": "uint256"
         
     | 
| 
       184 
360 
     | 
    
         
             
                    }
         
     | 
| 
       185 
361 
     | 
    
         
             
                  ],
         
     | 
| 
       186 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 362 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleMembersLimitReached",
         
     | 
| 
       187 
363 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       188 
364 
     | 
    
         
             
                },
         
     | 
| 
       189 
365 
     | 
    
         
             
                {
         
     | 
| 
         @@ -204,7 +380,18 @@ 
     | 
|
| 
       204 
380 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       205 
381 
     | 
    
         
             
                    }
         
     | 
| 
       206 
382 
     | 
    
         
             
                  ],
         
     | 
| 
       207 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 383 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleNameAlreadyExists",
         
     | 
| 
      
 384 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 385 
     | 
    
         
            +
                },
         
     | 
| 
      
 386 
     | 
    
         
            +
                {
         
     | 
| 
      
 387 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 388 
     | 
    
         
            +
                    {
         
     | 
| 
      
 389 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 390 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 391 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 392 
     | 
    
         
            +
                    }
         
     | 
| 
      
 393 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 394 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleNameEmpty",
         
     | 
| 
       208 
395 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       209 
396 
     | 
    
         
             
                },
         
     | 
| 
       210 
397 
     | 
    
         
             
                {
         
     | 
| 
         @@ -215,7 +402,7 @@ 
     | 
|
| 
       215 
402 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       216 
403 
     | 
    
         
             
                    }
         
     | 
| 
       217 
404 
     | 
    
         
             
                  ],
         
     | 
| 
       218 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 405 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleNotCustom",
         
     | 
| 
       219 
406 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       220 
407 
     | 
    
         
             
                },
         
     | 
| 
       221 
408 
     | 
    
         
             
                {
         
     | 
| 
         @@ -226,12 +413,17 @@ 
     | 
|
| 
       226 
413 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       227 
414 
     | 
    
         
             
                    }
         
     | 
| 
       228 
415 
     | 
    
         
             
                  ],
         
     | 
| 
       229 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 416 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleUnknown",
         
     | 
| 
      
 417 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 418 
     | 
    
         
            +
                },
         
     | 
| 
      
 419 
     | 
    
         
            +
                {
         
     | 
| 
      
 420 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 421 
     | 
    
         
            +
                  "name": "ErrorAccessAdminSelectorZero",
         
     | 
| 
       230 
422 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       231 
423 
     | 
    
         
             
                },
         
     | 
| 
       232 
424 
     | 
    
         
             
                {
         
     | 
| 
       233 
425 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       234 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 426 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTagetNotLockable",
         
     | 
| 
       235 
427 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       236 
428 
     | 
    
         
             
                },
         
     | 
| 
       237 
429 
     | 
    
         
             
                {
         
     | 
| 
         @@ -247,7 +439,7 @@ 
     | 
|
| 
       247 
439 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       248 
440 
     | 
    
         
             
                    }
         
     | 
| 
       249 
441 
     | 
    
         
             
                  ],
         
     | 
| 
       250 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 442 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetAlreadyCreated",
         
     | 
| 
       251 
443 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       252 
444 
     | 
    
         
             
                },
         
     | 
| 
       253 
445 
     | 
    
         
             
                {
         
     | 
| 
         @@ -263,7 +455,7 @@ 
     | 
|
| 
       263 
455 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
       264 
456 
     | 
    
         
             
                    }
         
     | 
| 
       265 
457 
     | 
    
         
             
                  ],
         
     | 
| 
       266 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 458 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetAlreadyLocked",
         
     | 
| 
       267 
459 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       268 
460 
     | 
    
         
             
                },
         
     | 
| 
       269 
461 
     | 
    
         
             
                {
         
     | 
| 
         @@ -279,7 +471,7 @@ 
     | 
|
| 
       279 
471 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       280 
472 
     | 
    
         
             
                    }
         
     | 
| 
       281 
473 
     | 
    
         
             
                  ],
         
     | 
| 
       282 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 474 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetAuthorityMismatch",
         
     | 
| 
       283 
475 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       284 
476 
     | 
    
         
             
                },
         
     | 
| 
       285 
477 
     | 
    
         
             
                {
         
     | 
| 
         @@ -300,7 +492,40 @@ 
     | 
|
| 
       300 
492 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       301 
493 
     | 
    
         
             
                    }
         
     | 
| 
       302 
494 
     | 
    
         
             
                  ],
         
     | 
| 
       303 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 495 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNameAlreadyExists",
         
     | 
| 
      
 496 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 497 
     | 
    
         
            +
                },
         
     | 
| 
      
 498 
     | 
    
         
            +
                {
         
     | 
| 
      
 499 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 500 
     | 
    
         
            +
                    {
         
     | 
| 
      
 501 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 503 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 504 
     | 
    
         
            +
                    }
         
     | 
| 
      
 505 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 506 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNameEmpty",
         
     | 
| 
      
 507 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 508 
     | 
    
         
            +
                },
         
     | 
| 
      
 509 
     | 
    
         
            +
                {
         
     | 
| 
      
 510 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 511 
     | 
    
         
            +
                    {
         
     | 
| 
      
 512 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 513 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 514 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 515 
     | 
    
         
            +
                    }
         
     | 
| 
      
 516 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 517 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNotAccessManaged",
         
     | 
| 
      
 518 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 519 
     | 
    
         
            +
                },
         
     | 
| 
      
 520 
     | 
    
         
            +
                {
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 522 
     | 
    
         
            +
                    {
         
     | 
| 
      
 523 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 524 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 525 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 526 
     | 
    
         
            +
                    }
         
     | 
| 
      
 527 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 528 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNotCreated",
         
     | 
| 
       304 
529 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       305 
530 
     | 
    
         
             
                },
         
     | 
| 
       306 
531 
     | 
    
         
             
                {
         
     | 
| 
         @@ -311,7 +536,7 @@ 
     | 
|
| 
       311 
536 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       312 
537 
     | 
    
         
             
                    }
         
     | 
| 
       313 
538 
     | 
    
         
             
                  ],
         
     | 
| 
       314 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 539 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNotRegistered",
         
     | 
| 
       315 
540 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       316 
541 
     | 
    
         
             
                },
         
     | 
| 
       317 
542 
     | 
    
         
             
                {
         
     | 
| 
         @@ -320,9 +545,19 @@ 
     | 
|
| 
       320 
545 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       321 
546 
     | 
    
         
             
                      "name": "target",
         
     | 
| 
       322 
547 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 548 
     | 
    
         
            +
                    },
         
     | 
| 
      
 549 
     | 
    
         
            +
                    {
         
     | 
| 
      
 550 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 551 
     | 
    
         
            +
                      "name": "expectedType",
         
     | 
| 
      
 552 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 553 
     | 
    
         
            +
                    },
         
     | 
| 
      
 554 
     | 
    
         
            +
                    {
         
     | 
| 
      
 555 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 556 
     | 
    
         
            +
                      "name": "actualType",
         
     | 
| 
      
 557 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       323 
558 
     | 
    
         
             
                    }
         
     | 
| 
       324 
559 
     | 
    
         
             
                  ],
         
     | 
| 
       325 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 560 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetTypeMismatch",
         
     | 
| 
       326 
561 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       327 
562 
     | 
    
         
             
                },
         
     | 
| 
       328 
563 
     | 
    
         
             
                {
         
     | 
| 
         @@ -333,7 +568,18 @@ 
     | 
|
| 
       333 
568 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       334 
569 
     | 
    
         
             
                    }
         
     | 
| 
       335 
570 
     | 
    
         
             
                  ],
         
     | 
| 
       336 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 571 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetUnknown",
         
     | 
| 
      
 572 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 573 
     | 
    
         
            +
                },
         
     | 
| 
      
 574 
     | 
    
         
            +
                {
         
     | 
| 
      
 575 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 576 
     | 
    
         
            +
                    {
         
     | 
| 
      
 577 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 578 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 579 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 580 
     | 
    
         
            +
                    }
         
     | 
| 
      
 581 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 582 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
       337 
583 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       338 
584 
     | 
    
         
             
                },
         
     | 
| 
       339 
585 
     | 
    
         
             
                {
         
     | 
| 
         @@ -354,29 +600,35 @@ 
     | 
|
| 
       354 
600 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       355 
601 
     | 
    
         
             
                    {
         
     | 
| 
       356 
602 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       357 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       358 
     | 
    
         
            -
                      "name": " 
     | 
| 
       359 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 603 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 604 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 605 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       360 
606 
     | 
    
         
             
                    },
         
     | 
| 
       361 
607 
     | 
    
         
             
                    {
         
     | 
| 
       362 
608 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       363 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       364 
     | 
    
         
            -
                      "name": " 
     | 
| 
       365 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 609 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 610 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 611 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       366 
612 
     | 
    
         
             
                    },
         
     | 
| 
       367 
613 
     | 
    
         
             
                    {
         
     | 
| 
       368 
614 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       369 
615 
     | 
    
         
             
                      "internalType": "string",
         
     | 
| 
       370 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 616 
     | 
    
         
            +
                      "name": "func",
         
     | 
| 
       371 
617 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       372 
618 
     | 
    
         
             
                    }
         
     | 
| 
       373 
619 
     | 
    
         
             
                  ],
         
     | 
| 
       374 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 620 
     | 
    
         
            +
                  "name": "LogAccessAdminFunctionGranted",
         
     | 
| 
       375 
621 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       376 
622 
     | 
    
         
             
                },
         
     | 
| 
       377 
623 
     | 
    
         
             
                {
         
     | 
| 
       378 
624 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       379 
625 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 626 
     | 
    
         
            +
                    {
         
     | 
| 
      
 627 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 628 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 629 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 630 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 631 
     | 
    
         
            +
                    },
         
     | 
| 
       380 
632 
     | 
    
         
             
                    {
         
     | 
| 
       381 
633 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       382 
634 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
         @@ -402,84 +654,123 @@ 
     | 
|
| 
       402 
654 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       403 
655 
     | 
    
         
             
                    }
         
     | 
| 
       404 
656 
     | 
    
         
             
                  ],
         
     | 
| 
       405 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 657 
     | 
    
         
            +
                  "name": "LogAccessAdminRoleCreated",
         
     | 
| 
       406 
658 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       407 
659 
     | 
    
         
             
                },
         
     | 
| 
       408 
660 
     | 
    
         
             
                {
         
     | 
| 
       409 
661 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       410 
662 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 663 
     | 
    
         
            +
                    {
         
     | 
| 
      
 664 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 665 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 666 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 667 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 668 
     | 
    
         
            +
                    },
         
     | 
| 
       411 
669 
     | 
    
         
             
                    {
         
     | 
| 
       412 
670 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       413 
671 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       414 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 672 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
       415 
673 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       416 
674 
     | 
    
         
             
                    },
         
     | 
| 
       417 
675 
     | 
    
         
             
                    {
         
     | 
| 
       418 
676 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       419 
677 
     | 
    
         
             
                      "internalType": "string",
         
     | 
| 
       420 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 678 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
       421 
679 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       422 
680 
     | 
    
         
             
                    }
         
     | 
| 
       423 
681 
     | 
    
         
             
                  ],
         
     | 
| 
       424 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 682 
     | 
    
         
            +
                  "name": "LogAccessAdminRoleGranted",
         
     | 
| 
       425 
683 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       426 
684 
     | 
    
         
             
                },
         
     | 
| 
       427 
685 
     | 
    
         
             
                {
         
     | 
| 
       428 
     | 
    
         
            -
                  " 
     | 
| 
       429 
     | 
    
         
            -
                  " 
     | 
| 
       430 
     | 
    
         
            -
             
     | 
| 
      
 686 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 687 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 688 
     | 
    
         
            +
                    {
         
     | 
| 
      
 689 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 690 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 691 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 692 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 693 
     | 
    
         
            +
                    },
         
     | 
| 
       431 
694 
     | 
    
         
             
                    {
         
     | 
| 
      
 695 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
       432 
696 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       433 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 697 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
       434 
698 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 699 
     | 
    
         
            +
                    },
         
     | 
| 
      
 700 
     | 
    
         
            +
                    {
         
     | 
| 
      
 701 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 702 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 703 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
      
 704 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       435 
705 
     | 
    
         
             
                    }
         
     | 
| 
       436 
706 
     | 
    
         
             
                  ],
         
     | 
| 
       437 
     | 
    
         
            -
                  " 
     | 
| 
       438 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 707 
     | 
    
         
            +
                  "name": "LogAccessAdminRoleRevoked",
         
     | 
| 
      
 708 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
       439 
709 
     | 
    
         
             
                },
         
     | 
| 
       440 
710 
     | 
    
         
             
                {
         
     | 
| 
      
 711 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
       441 
712 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       442 
713 
     | 
    
         
             
                    {
         
     | 
| 
       443 
     | 
    
         
            -
                      " 
     | 
| 
       444 
     | 
    
         
            -
                      " 
     | 
| 
       445 
     | 
    
         
            -
                      " 
     | 
| 
       446 
     | 
    
         
            -
             
     | 
| 
       447 
     | 
    
         
            -
             
     | 
| 
       448 
     | 
    
         
            -
             
     | 
| 
       449 
     | 
    
         
            -
             
     | 
| 
       450 
     | 
    
         
            -
             
     | 
| 
       451 
     | 
    
         
            -
                      " 
     | 
| 
       452 
     | 
    
         
            -
                      " 
     | 
| 
       453 
     | 
    
         
            -
             
     | 
| 
      
 714 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 715 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 716 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 717 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 718 
     | 
    
         
            +
                    },
         
     | 
| 
      
 719 
     | 
    
         
            +
                    {
         
     | 
| 
      
 720 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 721 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 722 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 723 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 724 
     | 
    
         
            +
                    },
         
     | 
| 
      
 725 
     | 
    
         
            +
                    {
         
     | 
| 
      
 726 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 727 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 728 
     | 
    
         
            +
                      "name": "managed",
         
     | 
| 
      
 729 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 730 
     | 
    
         
            +
                    },
         
     | 
| 
      
 731 
     | 
    
         
            +
                    {
         
     | 
| 
      
 732 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 733 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 734 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 735 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 736 
     | 
    
         
            +
                    },
         
     | 
| 
      
 737 
     | 
    
         
            +
                    {
         
     | 
| 
      
 738 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 739 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 740 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 741 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       454 
742 
     | 
    
         
             
                    }
         
     | 
| 
       455 
743 
     | 
    
         
             
                  ],
         
     | 
| 
       456 
     | 
    
         
            -
                  " 
     | 
| 
       457 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 744 
     | 
    
         
            +
                  "name": "LogAccessAdminTargetCreated",
         
     | 
| 
      
 745 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
       458 
746 
     | 
    
         
             
                },
         
     | 
| 
       459 
747 
     | 
    
         
             
                {
         
     | 
| 
       460 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 748 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 749 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 750 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       461 
751 
     | 
    
         
             
                    {
         
     | 
| 
       462 
752 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       463 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 753 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       464 
754 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       465 
     | 
    
         
            -
                    } 
     | 
| 
      
 755 
     | 
    
         
            +
                    }
         
     | 
| 
      
 756 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 757 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 758 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 759 
     | 
    
         
            +
                },
         
     | 
| 
      
 760 
     | 
    
         
            +
                {
         
     | 
| 
      
 761 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       466 
762 
     | 
    
         
             
                    {
         
     | 
| 
       467 
763 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       468 
764 
     | 
    
         
             
                      "name": "target",
         
     | 
| 
       469 
765 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       470 
     | 
    
         
            -
                    },
         
     | 
| 
       471 
     | 
    
         
            -
                    {
         
     | 
| 
       472 
     | 
    
         
            -
                      "internalType": "Selector",
         
     | 
| 
       473 
     | 
    
         
            -
                      "name": "selector",
         
     | 
| 
       474 
     | 
    
         
            -
                      "type": "bytes4"
         
     | 
| 
       475 
766 
     | 
    
         
             
                    }
         
     | 
| 
       476 
767 
     | 
    
         
             
                  ],
         
     | 
| 
       477 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 768 
     | 
    
         
            +
                  "name": "authorizedFunctions",
         
     | 
| 
       478 
769 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       479 
770 
     | 
    
         
             
                    {
         
     | 
| 
       480 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       481 
     | 
    
         
            -
                      "name": " 
     | 
| 
       482 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 771 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 772 
     | 
    
         
            +
                      "name": "numberOfFunctions",
         
     | 
| 
      
 773 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       483 
774 
     | 
    
         
             
                    }
         
     | 
| 
       484 
775 
     | 
    
         
             
                  ],
         
     | 
| 
       485 
776 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -511,6 +802,19 @@ 
     | 
|
| 
       511 
802 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       512 
803 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       513 
804 
     | 
    
         
             
                },
         
     | 
| 
      
 805 
     | 
    
         
            +
                {
         
     | 
| 
      
 806 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 807 
     | 
    
         
            +
                  "name": "getAuthorization",
         
     | 
| 
      
 808 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 809 
     | 
    
         
            +
                    {
         
     | 
| 
      
 810 
     | 
    
         
            +
                      "internalType": "contract IAuthorization",
         
     | 
| 
      
 811 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 812 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 813 
     | 
    
         
            +
                    }
         
     | 
| 
      
 814 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 815 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 816 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 817 
     | 
    
         
            +
                },
         
     | 
| 
       514 
818 
     | 
    
         
             
                {
         
     | 
| 
       515 
819 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       516 
820 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -557,6 +861,32 @@ 
     | 
|
| 
       557 
861 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       558 
862 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       559 
863 
     | 
    
         
             
                },
         
     | 
| 
      
 864 
     | 
    
         
            +
                {
         
     | 
| 
      
 865 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 866 
     | 
    
         
            +
                  "name": "getLinkedNftId",
         
     | 
| 
      
 867 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 868 
     | 
    
         
            +
                    {
         
     | 
| 
      
 869 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 870 
     | 
    
         
            +
                      "name": "linkedNftId",
         
     | 
| 
      
 871 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 872 
     | 
    
         
            +
                    }
         
     | 
| 
      
 873 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 874 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 875 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 876 
     | 
    
         
            +
                },
         
     | 
| 
      
 877 
     | 
    
         
            +
                {
         
     | 
| 
      
 878 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 879 
     | 
    
         
            +
                  "name": "getLinkedOwner",
         
     | 
| 
      
 880 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 881 
     | 
    
         
            +
                    {
         
     | 
| 
      
 882 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 883 
     | 
    
         
            +
                      "name": "linkedOwner",
         
     | 
| 
      
 884 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 885 
     | 
    
         
            +
                    }
         
     | 
| 
      
 886 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 887 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 888 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 889 
     | 
    
         
            +
                },
         
     | 
| 
       560 
890 
     | 
    
         
             
                {
         
     | 
| 
       561 
891 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       562 
892 
     | 
    
         
             
                  "name": "getPublicRole",
         
     | 
| 
         @@ -570,32 +900,46 @@ 
     | 
|
| 
       570 
900 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       571 
901 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       572 
902 
     | 
    
         
             
                },
         
     | 
| 
      
 903 
     | 
    
         
            +
                {
         
     | 
| 
      
 904 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 905 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 906 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 907 
     | 
    
         
            +
                    {
         
     | 
| 
      
 908 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 909 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 910 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 911 
     | 
    
         
            +
                    }
         
     | 
| 
      
 912 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 913 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 914 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 915 
     | 
    
         
            +
                },
         
     | 
| 
      
 916 
     | 
    
         
            +
                {
         
     | 
| 
      
 917 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 918 
     | 
    
         
            +
                  "name": "getRelease",
         
     | 
| 
      
 919 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 920 
     | 
    
         
            +
                    {
         
     | 
| 
      
 921 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 922 
     | 
    
         
            +
                      "name": "release",
         
     | 
| 
      
 923 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 924 
     | 
    
         
            +
                    }
         
     | 
| 
      
 925 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 926 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 927 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 928 
     | 
    
         
            +
                },
         
     | 
| 
       573 
929 
     | 
    
         
             
                {
         
     | 
| 
       574 
930 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       575 
931 
     | 
    
         
             
                    {
         
     | 
| 
       576 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 932 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
       577 
933 
     | 
    
         
             
                      "name": "name",
         
     | 
| 
       578 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 934 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       579 
935 
     | 
    
         
             
                    }
         
     | 
| 
       580 
936 
     | 
    
         
             
                  ],
         
     | 
| 
       581 
937 
     | 
    
         
             
                  "name": "getRoleForName",
         
     | 
| 
       582 
938 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       583 
939 
     | 
    
         
             
                    {
         
     | 
| 
       584 
     | 
    
         
            -
                      " 
     | 
| 
       585 
     | 
    
         
            -
             
     | 
| 
       586 
     | 
    
         
            -
             
     | 
| 
       587 
     | 
    
         
            -
                          "name": "roleId",
         
     | 
| 
       588 
     | 
    
         
            -
                          "type": "uint64"
         
     | 
| 
       589 
     | 
    
         
            -
                        },
         
     | 
| 
       590 
     | 
    
         
            -
                        {
         
     | 
| 
       591 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       592 
     | 
    
         
            -
                          "name": "exists",
         
     | 
| 
       593 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       594 
     | 
    
         
            -
                        }
         
     | 
| 
       595 
     | 
    
         
            -
                      ],
         
     | 
| 
       596 
     | 
    
         
            -
                      "internalType": "struct IAccess.RoleNameInfo",
         
     | 
| 
       597 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       598 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 940 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 941 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 942 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       599 
943 
     | 
    
         
             
                    }
         
     | 
| 
       600 
944 
     | 
    
         
             
                  ],
         
     | 
| 
       601 
945 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -647,11 +991,6 @@ 
     | 
|
| 
       647 
991 
     | 
    
         
             
                          "name": "maxMemberCount",
         
     | 
| 
       648 
992 
     | 
    
         
             
                          "type": "uint32"
         
     | 
| 
       649 
993 
     | 
    
         
             
                        },
         
     | 
| 
       650 
     | 
    
         
            -
                        {
         
     | 
| 
       651 
     | 
    
         
            -
                          "internalType": "Str",
         
     | 
| 
       652 
     | 
    
         
            -
                          "name": "name",
         
     | 
| 
       653 
     | 
    
         
            -
                          "type": "bytes32"
         
     | 
| 
       654 
     | 
    
         
            -
                        },
         
     | 
| 
       655 
994 
     | 
    
         
             
                        {
         
     | 
| 
       656 
995 
     | 
    
         
             
                          "internalType": "Timestamp",
         
     | 
| 
       657 
996 
     | 
    
         
             
                          "name": "createdAt",
         
     | 
| 
         @@ -661,6 +1000,11 @@ 
     | 
|
| 
       661 
1000 
     | 
    
         
             
                          "internalType": "Timestamp",
         
     | 
| 
       662 
1001 
     | 
    
         
             
                          "name": "pausedAt",
         
     | 
| 
       663 
1002 
     | 
    
         
             
                          "type": "uint40"
         
     | 
| 
      
 1003 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1004 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1005 
     | 
    
         
            +
                          "internalType": "Str",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 1007 
     | 
    
         
            +
                          "type": "bytes32"
         
     | 
| 
       664 
1008 
     | 
    
         
             
                        }
         
     | 
| 
       665 
1009 
     | 
    
         
             
                      ],
         
     | 
| 
       666 
1010 
     | 
    
         
             
                      "internalType": "struct IAccess.RoleInfo",
         
     | 
| 
         @@ -751,9 +1095,14 @@ 
     | 
|
| 
       751 
1095 
     | 
    
         
             
                          "type": "bytes32"
         
     | 
| 
       752 
1096 
     | 
    
         
             
                        },
         
     | 
| 
       753 
1097 
     | 
    
         
             
                        {
         
     | 
| 
       754 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       755 
     | 
    
         
            -
                          "name": " 
     | 
| 
       756 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1098 
     | 
    
         
            +
                          "internalType": "enum IAccess.TargetType",
         
     | 
| 
      
 1099 
     | 
    
         
            +
                          "name": "targetType",
         
     | 
| 
      
 1100 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1101 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1102 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1103 
     | 
    
         
            +
                          "internalType": "RoleId",
         
     | 
| 
      
 1104 
     | 
    
         
            +
                          "name": "roleId",
         
     | 
| 
      
 1105 
     | 
    
         
            +
                          "type": "uint64"
         
     | 
| 
       757 
1106 
     | 
    
         
             
                        },
         
     | 
| 
       758 
1107 
     | 
    
         
             
                        {
         
     | 
| 
       759 
1108 
     | 
    
         
             
                          "internalType": "Timestamp",
         
     | 
| 
         @@ -770,23 +1119,44 @@ 
     | 
|
| 
       770 
1119 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       771 
1120 
     | 
    
         
             
                },
         
     | 
| 
       772 
1121 
     | 
    
         
             
                {
         
     | 
| 
       773 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 1122 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1123 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 1124 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       774 
1125 
     | 
    
         
             
                    {
         
     | 
| 
       775 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       776 
     | 
    
         
            -
                      "name": " 
     | 
| 
       777 
     | 
    
         
            -
                      "type": " 
     | 
| 
       778 
     | 
    
         
            -
                    } 
     | 
| 
      
 1126 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1127 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1128 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1129 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1130 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1131 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1132 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1133 
     | 
    
         
            +
                },
         
     | 
| 
      
 1134 
     | 
    
         
            +
                {
         
     | 
| 
      
 1135 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1136 
     | 
    
         
            +
                  "name": "isLocked",
         
     | 
| 
      
 1137 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1138 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1139 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1140 
     | 
    
         
            +
                      "name": "locked",
         
     | 
| 
      
 1141 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1142 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1143 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1144 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1145 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1146 
     | 
    
         
            +
                },
         
     | 
| 
      
 1147 
     | 
    
         
            +
                {
         
     | 
| 
      
 1148 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       779 
1149 
     | 
    
         
             
                    {
         
     | 
| 
       780 
1150 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       781 
1151 
     | 
    
         
             
                      "name": "roleId",
         
     | 
| 
       782 
1152 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       783 
1153 
     | 
    
         
             
                    }
         
     | 
| 
       784 
1154 
     | 
    
         
             
                  ],
         
     | 
| 
       785 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1155 
     | 
    
         
            +
                  "name": "isRoleActive",
         
     | 
| 
       786 
1156 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       787 
1157 
     | 
    
         
             
                    {
         
     | 
| 
       788 
1158 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
       789 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 1159 
     | 
    
         
            +
                      "name": "isActive",
         
     | 
| 
       790 
1160 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
       791 
1161 
     | 
    
         
             
                    }
         
     | 
| 
       792 
1162 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -795,22 +1165,41 @@ 
     | 
|
| 
       795 
1165 
     | 
    
         
             
                },
         
     | 
| 
       796 
1166 
     | 
    
         
             
                {
         
     | 
| 
       797 
1167 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 1168 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1169 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 1170 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 1171 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 1172 
     | 
    
         
            +
                    },
         
     | 
| 
       798 
1173 
     | 
    
         
             
                    {
         
     | 
| 
       799 
1174 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       800 
1175 
     | 
    
         
             
                      "name": "account",
         
     | 
| 
       801 
1176 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       802 
     | 
    
         
            -
                    } 
     | 
| 
      
 1177 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1178 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1179 
     | 
    
         
            +
                  "name": "isRoleAdmin",
         
     | 
| 
      
 1180 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1181 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1182 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1183 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1184 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1185 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1186 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1187 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1188 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1189 
     | 
    
         
            +
                },
         
     | 
| 
      
 1190 
     | 
    
         
            +
                {
         
     | 
| 
      
 1191 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       803 
1192 
     | 
    
         
             
                    {
         
     | 
| 
       804 
1193 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       805 
1194 
     | 
    
         
             
                      "name": "roleId",
         
     | 
| 
       806 
1195 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       807 
1196 
     | 
    
         
             
                    }
         
     | 
| 
       808 
1197 
     | 
    
         
             
                  ],
         
     | 
| 
       809 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1198 
     | 
    
         
            +
                  "name": "isRoleCustom",
         
     | 
| 
       810 
1199 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       811 
1200 
     | 
    
         
             
                    {
         
     | 
| 
       812 
1201 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
       813 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 1202 
     | 
    
         
            +
                      "name": "isCustom",
         
     | 
| 
       814 
1203 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
       815 
1204 
     | 
    
         
             
                    }
         
     | 
| 
       816 
1205 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -818,13 +1207,24 @@ 
     | 
|
| 
       818 
1207 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       819 
1208 
     | 
    
         
             
                },
         
     | 
| 
       820 
1209 
     | 
    
         
             
                {
         
     | 
| 
       821 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       822 
     | 
    
         
            -
             
     | 
| 
      
 1210 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1211 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1212 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 1213 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 1214 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 1215 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1216 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1217 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1218 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 1219 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1220 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1221 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1222 
     | 
    
         
            +
                  "name": "isRoleMember",
         
     | 
| 
       823 
1223 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       824 
1224 
     | 
    
         
             
                    {
         
     | 
| 
       825 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 1225 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
       826 
1226 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       827 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 1227 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
       828 
1228 
     | 
    
         
             
                    }
         
     | 
| 
       829 
1229 
     | 
    
         
             
                  ],
         
     | 
| 
       830 
1230 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -868,6 +1268,25 @@ 
     | 
|
| 
       868 
1268 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       869 
1269 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       870 
1270 
     | 
    
         
             
                },
         
     | 
| 
      
 1271 
     | 
    
         
            +
                {
         
     | 
| 
      
 1272 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1273 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1274 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1275 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
      
 1276 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1277 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1278 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1279 
     | 
    
         
            +
                  "name": "roleExists",
         
     | 
| 
      
 1280 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1281 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1282 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1283 
     | 
    
         
            +
                      "name": "exists",
         
     | 
| 
      
 1284 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1285 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1286 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1287 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1288 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1289 
     | 
    
         
            +
                },
         
     | 
| 
       871 
1290 
     | 
    
         
             
                {
         
     | 
| 
       872 
1291 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       873 
1292 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -944,113 +1363,6 @@ 
     | 
|
| 
       944 
1363 
     | 
    
         
             
                  ],
         
     | 
| 
       945 
1364 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       946 
1365 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       947 
     | 
    
         
            -
                },
         
     | 
| 
       948 
     | 
    
         
            -
                {
         
     | 
| 
       949 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       950 
     | 
    
         
            -
                    {
         
     | 
| 
       951 
     | 
    
         
            -
                      "internalType": "bytes4",
         
     | 
| 
       952 
     | 
    
         
            -
                      "name": "selector",
         
     | 
| 
       953 
     | 
    
         
            -
                      "type": "bytes4"
         
     | 
| 
       954 
     | 
    
         
            -
                    },
         
     | 
| 
       955 
     | 
    
         
            -
                    {
         
     | 
| 
       956 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       957 
     | 
    
         
            -
                      "name": "name",
         
     | 
| 
       958 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       959 
     | 
    
         
            -
                    }
         
     | 
| 
       960 
     | 
    
         
            -
                  ],
         
     | 
| 
       961 
     | 
    
         
            -
                  "name": "toFunction",
         
     | 
| 
       962 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       963 
     | 
    
         
            -
                    {
         
     | 
| 
       964 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       965 
     | 
    
         
            -
                        {
         
     | 
| 
       966 
     | 
    
         
            -
                          "internalType": "Str",
         
     | 
| 
       967 
     | 
    
         
            -
                          "name": "name",
         
     | 
| 
       968 
     | 
    
         
            -
                          "type": "bytes32"
         
     | 
| 
       969 
     | 
    
         
            -
                        },
         
     | 
| 
       970 
     | 
    
         
            -
                        {
         
     | 
| 
       971 
     | 
    
         
            -
                          "internalType": "Selector",
         
     | 
| 
       972 
     | 
    
         
            -
                          "name": "selector",
         
     | 
| 
       973 
     | 
    
         
            -
                          "type": "bytes4"
         
     | 
| 
       974 
     | 
    
         
            -
                        },
         
     | 
| 
       975 
     | 
    
         
            -
                        {
         
     | 
| 
       976 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       977 
     | 
    
         
            -
                          "name": "createdAt",
         
     | 
| 
       978 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       979 
     | 
    
         
            -
                        }
         
     | 
| 
       980 
     | 
    
         
            -
                      ],
         
     | 
| 
       981 
     | 
    
         
            -
                      "internalType": "struct IAccess.FunctionInfo",
         
     | 
| 
       982 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       983 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       984 
     | 
    
         
            -
                    }
         
     | 
| 
       985 
     | 
    
         
            -
                  ],
         
     | 
| 
       986 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       987 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       988 
     | 
    
         
            -
                },
         
     | 
| 
       989 
     | 
    
         
            -
                {
         
     | 
| 
       990 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       991 
     | 
    
         
            -
                    {
         
     | 
| 
       992 
     | 
    
         
            -
                      "internalType": "RoleId",
         
     | 
| 
       993 
     | 
    
         
            -
                      "name": "adminRoleId",
         
     | 
| 
       994 
     | 
    
         
            -
                      "type": "uint64"
         
     | 
| 
       995 
     | 
    
         
            -
                    },
         
     | 
| 
       996 
     | 
    
         
            -
                    {
         
     | 
| 
       997 
     | 
    
         
            -
                      "internalType": "enum IAccess.RoleType",
         
     | 
| 
       998 
     | 
    
         
            -
                      "name": "roleType",
         
     | 
| 
       999 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1000 
     | 
    
         
            -
                    },
         
     | 
| 
       1001 
     | 
    
         
            -
                    {
         
     | 
| 
       1002 
     | 
    
         
            -
                      "internalType": "uint32",
         
     | 
| 
       1003 
     | 
    
         
            -
                      "name": "maxMemberCount",
         
     | 
| 
       1004 
     | 
    
         
            -
                      "type": "uint32"
         
     | 
| 
       1005 
     | 
    
         
            -
                    },
         
     | 
| 
       1006 
     | 
    
         
            -
                    {
         
     | 
| 
       1007 
     | 
    
         
            -
                      "internalType": "string",
         
     | 
| 
       1008 
     | 
    
         
            -
                      "name": "name",
         
     | 
| 
       1009 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       1010 
     | 
    
         
            -
                    }
         
     | 
| 
       1011 
     | 
    
         
            -
                  ],
         
     | 
| 
       1012 
     | 
    
         
            -
                  "name": "toRole",
         
     | 
| 
       1013 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1014 
     | 
    
         
            -
                    {
         
     | 
| 
       1015 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1016 
     | 
    
         
            -
                        {
         
     | 
| 
       1017 
     | 
    
         
            -
                          "internalType": "RoleId",
         
     | 
| 
       1018 
     | 
    
         
            -
                          "name": "adminRoleId",
         
     | 
| 
       1019 
     | 
    
         
            -
                          "type": "uint64"
         
     | 
| 
       1020 
     | 
    
         
            -
                        },
         
     | 
| 
       1021 
     | 
    
         
            -
                        {
         
     | 
| 
       1022 
     | 
    
         
            -
                          "internalType": "enum IAccess.RoleType",
         
     | 
| 
       1023 
     | 
    
         
            -
                          "name": "roleType",
         
     | 
| 
       1024 
     | 
    
         
            -
                          "type": "uint8"
         
     | 
| 
       1025 
     | 
    
         
            -
                        },
         
     | 
| 
       1026 
     | 
    
         
            -
                        {
         
     | 
| 
       1027 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       1028 
     | 
    
         
            -
                          "name": "maxMemberCount",
         
     | 
| 
       1029 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       1030 
     | 
    
         
            -
                        },
         
     | 
| 
       1031 
     | 
    
         
            -
                        {
         
     | 
| 
       1032 
     | 
    
         
            -
                          "internalType": "Str",
         
     | 
| 
       1033 
     | 
    
         
            -
                          "name": "name",
         
     | 
| 
       1034 
     | 
    
         
            -
                          "type": "bytes32"
         
     | 
| 
       1035 
     | 
    
         
            -
                        },
         
     | 
| 
       1036 
     | 
    
         
            -
                        {
         
     | 
| 
       1037 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1038 
     | 
    
         
            -
                          "name": "createdAt",
         
     | 
| 
       1039 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1040 
     | 
    
         
            -
                        },
         
     | 
| 
       1041 
     | 
    
         
            -
                        {
         
     | 
| 
       1042 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1043 
     | 
    
         
            -
                          "name": "pausedAt",
         
     | 
| 
       1044 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1045 
     | 
    
         
            -
                        }
         
     | 
| 
       1046 
     | 
    
         
            -
                      ],
         
     | 
| 
       1047 
     | 
    
         
            -
                      "internalType": "struct IAccess.RoleInfo",
         
     | 
| 
       1048 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1049 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       1050 
     | 
    
         
            -
                    }
         
     | 
| 
       1051 
     | 
    
         
            -
                  ],
         
     | 
| 
       1052 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1053 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1054 
1366 
     | 
    
         
             
                }
         
     | 
| 
       1055 
1367 
     | 
    
         
             
              ],
         
     | 
| 
       1056 
1368 
     | 
    
         
             
              "bytecode": "0x",
         
     |