@etherisc/gif-next 0.0.2-e6ad61d-739 → 0.0.2-e818783-565
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 +337 -19
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.json +672 -35
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +1345 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +969 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1064 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +830 -0
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +1180 -132
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +977 -156
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1908 -776
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +633 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2403 -852
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1403 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1140 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +741 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +607 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1060 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +681 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1266 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +725 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1040 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +685 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1774 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +793 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +627 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +686 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +602 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1090 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +937 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +844 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +450 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1511 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +741 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1237 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +840 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +595 -27
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +866 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +652 -50
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1158 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -66
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -132
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +261 -217
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.json +596 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +185 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +288 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +78 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +110 -4
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
 - package/contracts/components/Component.sol +227 -51
 - package/contracts/components/Distribution.sol +284 -0
 - package/contracts/components/IComponent.sol +76 -0
 - package/contracts/components/IDistributionComponent.sol +71 -0
 - package/contracts/components/IPoolComponent.sol +113 -0
 - package/contracts/components/IProductComponent.sol +40 -0
 - package/contracts/components/Pool.sol +280 -30
 - package/contracts/components/Product.sol +331 -49
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +126 -0
 - package/contracts/instance/Cloneable.sol +51 -0
 - package/contracts/instance/IInstance.sol +99 -22
 - package/contracts/instance/IInstanceService.sol +68 -0
 - package/contracts/instance/Instance.sol +289 -51
 - package/contracts/instance/InstanceAccessManager.sol +527 -0
 - package/contracts/instance/InstanceReader.sol +317 -0
 - package/contracts/instance/InstanceService.sol +478 -0
 - package/contracts/instance/InstanceServiceManager.sol +54 -0
 - package/contracts/instance/ObjectManager.sol +82 -0
 - package/contracts/instance/base/ComponentService.sol +121 -0
 - package/contracts/instance/base/IKeyValueStore.sol +49 -0
 - package/contracts/instance/base/ILifecycle.sol +30 -0
 - package/contracts/instance/base/KeyValueStore.sol +180 -0
 - package/contracts/instance/base/Lifecycle.sol +117 -0
 - package/contracts/instance/module/IAccess.sol +54 -0
 - package/contracts/instance/module/IBundle.sol +23 -0
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +41 -0
 - package/contracts/instance/module/IPolicy.sol +77 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +33 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ApplicationService.sol +355 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +436 -0
 - package/contracts/instance/service/BundleServiceManager.sol +51 -0
 - package/contracts/instance/service/ClaimService.sol +239 -0
 - package/contracts/instance/service/ClaimServiceManager.sol +35 -0
 - package/contracts/instance/service/DistributionService.sol +431 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +51 -0
 - package/contracts/instance/service/IApplicationService.sol +78 -0
 - package/contracts/instance/service/IBundleService.sol +96 -0
 - package/contracts/instance/service/IClaimService.sol +92 -0
 - package/contracts/instance/service/IDistributionService.sol +99 -0
 - package/contracts/instance/service/IPolicyService.sol +137 -0
 - package/contracts/instance/service/IPoolService.sol +99 -0
 - package/contracts/instance/service/IProductService.sol +40 -0
 - package/contracts/instance/service/PolicyService.sol +541 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +303 -0
 - package/contracts/instance/service/PoolServiceManager.sol +51 -0
 - package/contracts/instance/service/ProductService.sol +210 -0
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +137 -62
 - package/contracts/registry/IRegistry.sol +75 -41
 - package/contracts/registry/IRegistryService.sol +68 -0
 - package/contracts/registry/ITransferInterceptor.sol +7 -0
 - package/contracts/registry/Registry.sol +413 -128
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +282 -0
 - package/contracts/registry/RegistryServiceManager.sol +62 -0
 - package/contracts/registry/ReleaseManager.sol +324 -0
 - package/contracts/registry/TokenRegistry.sol +116 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +27 -0
 - package/contracts/shared/INftOwnable.sol +23 -0
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +15 -0
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +16 -0
 - package/contracts/shared/IVersionable.sol +53 -0
 - package/contracts/shared/NftOwnable.sol +120 -0
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +169 -0
 - package/contracts/shared/Registerable.sol +74 -0
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +72 -0
 - package/contracts/shared/TokenHandler.sol +33 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +59 -0
 - package/contracts/test/TestFee.sol +25 -0
 - package/contracts/test/TestRegisterable.sol +18 -0
 - package/contracts/test/TestRoleId.sol +14 -0
 - package/contracts/test/TestService.sol +25 -0
 - package/contracts/test/TestToken.sol +26 -0
 - package/contracts/test/TestVersion.sol +44 -0
 - package/contracts/test/TestVersionable.sol +17 -0
 - package/contracts/test/Usdc.sol +26 -0
 - package/contracts/types/AddressSet.sol +58 -0
 - package/contracts/types/Amount.sol +65 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/ClaimId.sol +75 -0
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +52 -20
 - package/contracts/types/Key32.sol +50 -0
 - package/contracts/types/NftId.sol +30 -1
 - package/contracts/types/NftIdSet.sol +62 -0
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +64 -14
 - package/contracts/types/PayoutId.sol +82 -0
 - package/contracts/types/Referral.sol +89 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +97 -0
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/StateId.sol +23 -4
 - package/contracts/types/Timestamp.sol +36 -6
 - package/contracts/types/UFixed.sol +139 -23
 - package/contracts/types/Version.sol +108 -0
 - package/package.json +12 -5
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
 - package/contracts/components/IPool.sol +0 -15
 - package/contracts/components/IProduct.sol +0 -16
 - package/contracts/experiment/errors/Require.sol +0 -38
 - package/contracts/experiment/errors/Revert.sol +0 -44
 - package/contracts/experiment/inheritance/A.sol +0 -53
 - package/contracts/experiment/inheritance/B.sol +0 -28
 - package/contracts/experiment/inheritance/C.sol +0 -34
 - package/contracts/experiment/inheritance/IA.sol +0 -13
 - package/contracts/experiment/inheritance/IB.sol +0 -10
 - package/contracts/experiment/inheritance/IC.sol +0 -12
 - package/contracts/experiment/statemachine/Dummy.sol +0 -27
 - package/contracts/experiment/statemachine/ISM.sol +0 -25
 - package/contracts/experiment/statemachine/README.md +0 -112
 - package/contracts/experiment/statemachine/SM.sol +0 -57
 - package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
 - package/contracts/experiment/types/TypeA.sol +0 -47
 - package/contracts/experiment/types/TypeB.sol +0 -29
 - package/contracts/instance/access/Access.sol +0 -165
 - package/contracts/instance/access/IAccess.sol +0 -63
 - package/contracts/instance/component/ComponentModule.sol +0 -274
 - package/contracts/instance/component/IComponent.sol +0 -74
 - package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
 - package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
 - package/contracts/instance/policy/IPolicy.sol +0 -50
 - package/contracts/instance/policy/PolicyModule.sol +0 -114
 - package/contracts/instance/pool/IPoolModule.sol +0 -23
 - package/contracts/instance/pool/PoolModule.sol +0 -81
 - package/contracts/instance/product/IProductService.sol +0 -36
 - package/contracts/instance/product/ProductService.sol +0 -136
 - package/contracts/instance/treasury/ITreasury.sol +0 -91
 - package/contracts/instance/treasury/TokenHandler.sol +0 -24
 - package/contracts/instance/treasury/TreasuryModule.sol +0 -168
 - package/contracts/registry/IChainNft.sol +0 -21
 
| 
         @@ -0,0 +1,1330 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "InstanceAccessManager",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/instance/InstanceAccessManager.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 19 
     | 
    
         
            +
                    {
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    },
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 35 
     | 
    
         
            +
                    {
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    },
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    }
         
     | 
| 
      
 56 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "name": "ErrorIAccessCallerIsNotRoleAdmin",
         
     | 
| 
      
 58 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 59 
     | 
    
         
            +
                },
         
     | 
| 
      
 60 
     | 
    
         
            +
                {
         
     | 
| 
      
 61 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 62 
     | 
    
         
            +
                    {
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 65 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 66 
     | 
    
         
            +
                    }
         
     | 
| 
      
 67 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "name": "ErrorIAccessRoleIdDoesNotExist",
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 70 
     | 
    
         
            +
                },
         
     | 
| 
      
 71 
     | 
    
         
            +
                {
         
     | 
| 
      
 72 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 73 
     | 
    
         
            +
                    {
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 76 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 77 
     | 
    
         
            +
                    }
         
     | 
| 
      
 78 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "name": "ErrorIAccessRoleIdExists",
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 81 
     | 
    
         
            +
                },
         
     | 
| 
      
 82 
     | 
    
         
            +
                {
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 84 
     | 
    
         
            +
                    {
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 87 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 88 
     | 
    
         
            +
                    }
         
     | 
| 
      
 89 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "name": "ErrorIAccessRoleIdTooBig",
         
     | 
| 
      
 91 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 92 
     | 
    
         
            +
                },
         
     | 
| 
      
 93 
     | 
    
         
            +
                {
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 95 
     | 
    
         
            +
                    {
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 98 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 99 
     | 
    
         
            +
                    }
         
     | 
| 
      
 100 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "name": "ErrorIAccessRoleIdTooSmall",
         
     | 
| 
      
 102 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 103 
     | 
    
         
            +
                },
         
     | 
| 
      
 104 
     | 
    
         
            +
                {
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 106 
     | 
    
         
            +
                    {
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 109 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 110 
     | 
    
         
            +
                    }
         
     | 
| 
      
 111 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 112 
     | 
    
         
            +
                  "name": "ErrorIAccessRoleNameEmpty",
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 114 
     | 
    
         
            +
                },
         
     | 
| 
      
 115 
     | 
    
         
            +
                {
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 117 
     | 
    
         
            +
                    {
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 120 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 121 
     | 
    
         
            +
                    },
         
     | 
| 
      
 122 
     | 
    
         
            +
                    {
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 124 
     | 
    
         
            +
                      "name": "existingRoleId",
         
     | 
| 
      
 125 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 126 
     | 
    
         
            +
                    },
         
     | 
| 
      
 127 
     | 
    
         
            +
                    {
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "internalType": "ShortString",
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 130 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 131 
     | 
    
         
            +
                    }
         
     | 
| 
      
 132 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 133 
     | 
    
         
            +
                  "name": "ErrorIAccessRoleNameExists",
         
     | 
| 
      
 134 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 135 
     | 
    
         
            +
                },
         
     | 
| 
      
 136 
     | 
    
         
            +
                {
         
     | 
| 
      
 137 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 138 
     | 
    
         
            +
                    {
         
     | 
| 
      
 139 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 140 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 141 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 142 
     | 
    
         
            +
                    },
         
     | 
| 
      
 143 
     | 
    
         
            +
                    {
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "internalType": "enum IAccess.Type",
         
     | 
| 
      
 145 
     | 
    
         
            +
                      "name": "rtype",
         
     | 
| 
      
 146 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 147 
     | 
    
         
            +
                    }
         
     | 
| 
      
 148 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 149 
     | 
    
         
            +
                  "name": "ErrorIAccessRoleTypeInvalid",
         
     | 
| 
      
 150 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 151 
     | 
    
         
            +
                },
         
     | 
| 
      
 152 
     | 
    
         
            +
                {
         
     | 
| 
      
 153 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 154 
     | 
    
         
            +
                    {
         
     | 
| 
      
 155 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 156 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 157 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 158 
     | 
    
         
            +
                    },
         
     | 
| 
      
 159 
     | 
    
         
            +
                    {
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "name": "targetAuthority",
         
     | 
| 
      
 162 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 163 
     | 
    
         
            +
                    }
         
     | 
| 
      
 164 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 165 
     | 
    
         
            +
                  "name": "ErrorIAccessTargetAuthorityInvalid",
         
     | 
| 
      
 166 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 167 
     | 
    
         
            +
                },
         
     | 
| 
      
 168 
     | 
    
         
            +
                {
         
     | 
| 
      
 169 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 170 
     | 
    
         
            +
                    {
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 173 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 174 
     | 
    
         
            +
                    }
         
     | 
| 
      
 175 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 176 
     | 
    
         
            +
                  "name": "ErrorIAccessTargetDoesNotExist",
         
     | 
| 
      
 177 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 178 
     | 
    
         
            +
                },
         
     | 
| 
      
 179 
     | 
    
         
            +
                {
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 181 
     | 
    
         
            +
                    {
         
     | 
| 
      
 182 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 183 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 184 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 185 
     | 
    
         
            +
                    },
         
     | 
| 
      
 186 
     | 
    
         
            +
                    {
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "internalType": "ShortString",
         
     | 
| 
      
 188 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 189 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 190 
     | 
    
         
            +
                    }
         
     | 
| 
      
 191 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 192 
     | 
    
         
            +
                  "name": "ErrorIAccessTargetExists",
         
     | 
| 
      
 193 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 194 
     | 
    
         
            +
                },
         
     | 
| 
      
 195 
     | 
    
         
            +
                {
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 197 
     | 
    
         
            +
                    {
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 200 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 201 
     | 
    
         
            +
                    }
         
     | 
| 
      
 202 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 203 
     | 
    
         
            +
                  "name": "ErrorIAccessTargetNameEmpty",
         
     | 
| 
      
 204 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 205 
     | 
    
         
            +
                },
         
     | 
| 
      
 206 
     | 
    
         
            +
                {
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 208 
     | 
    
         
            +
                    {
         
     | 
| 
      
 209 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 210 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 212 
     | 
    
         
            +
                    },
         
     | 
| 
      
 213 
     | 
    
         
            +
                    {
         
     | 
| 
      
 214 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 215 
     | 
    
         
            +
                      "name": "existingTarget",
         
     | 
| 
      
 216 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 217 
     | 
    
         
            +
                    },
         
     | 
| 
      
 218 
     | 
    
         
            +
                    {
         
     | 
| 
      
 219 
     | 
    
         
            +
                      "internalType": "ShortString",
         
     | 
| 
      
 220 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 221 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 222 
     | 
    
         
            +
                    }
         
     | 
| 
      
 223 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 224 
     | 
    
         
            +
                  "name": "ErrorIAccessTargetNameExists",
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 226 
     | 
    
         
            +
                },
         
     | 
| 
      
 227 
     | 
    
         
            +
                {
         
     | 
| 
      
 228 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 229 
     | 
    
         
            +
                    {
         
     | 
| 
      
 230 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 231 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 232 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 233 
     | 
    
         
            +
                    }
         
     | 
| 
      
 234 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 235 
     | 
    
         
            +
                  "name": "ErrorIAccessTargetNotRegistered",
         
     | 
| 
      
 236 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 237 
     | 
    
         
            +
                },
         
     | 
| 
      
 238 
     | 
    
         
            +
                {
         
     | 
| 
      
 239 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 240 
     | 
    
         
            +
                    {
         
     | 
| 
      
 241 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 242 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 243 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 244 
     | 
    
         
            +
                    },
         
     | 
| 
      
 245 
     | 
    
         
            +
                    {
         
     | 
| 
      
 246 
     | 
    
         
            +
                      "internalType": "enum IAccess.Type",
         
     | 
| 
      
 247 
     | 
    
         
            +
                      "name": "ttype",
         
     | 
| 
      
 248 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 249 
     | 
    
         
            +
                    }
         
     | 
| 
      
 250 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 251 
     | 
    
         
            +
                  "name": "ErrorIAccessTargetTypeInvalid",
         
     | 
| 
      
 252 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 253 
     | 
    
         
            +
                },
         
     | 
| 
      
 254 
     | 
    
         
            +
                {
         
     | 
| 
      
 255 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 256 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 257 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 258 
     | 
    
         
            +
                },
         
     | 
| 
      
 259 
     | 
    
         
            +
                {
         
     | 
| 
      
 260 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 261 
     | 
    
         
            +
                  "name": "InvalidShortString",
         
     | 
| 
      
 262 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 263 
     | 
    
         
            +
                },
         
     | 
| 
      
 264 
     | 
    
         
            +
                {
         
     | 
| 
      
 265 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 266 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 267 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 268 
     | 
    
         
            +
                },
         
     | 
| 
      
 269 
     | 
    
         
            +
                {
         
     | 
| 
      
 270 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 271 
     | 
    
         
            +
                    {
         
     | 
| 
      
 272 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 273 
     | 
    
         
            +
                      "name": "str",
         
     | 
| 
      
 274 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 275 
     | 
    
         
            +
                    }
         
     | 
| 
      
 276 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 277 
     | 
    
         
            +
                  "name": "StringTooLong",
         
     | 
| 
      
 278 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 279 
     | 
    
         
            +
                },
         
     | 
| 
      
 280 
     | 
    
         
            +
                {
         
     | 
| 
      
 281 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 282 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 283 
     | 
    
         
            +
                    {
         
     | 
| 
      
 284 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 285 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 286 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 287 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 288 
     | 
    
         
            +
                    }
         
     | 
| 
      
 289 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 290 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 291 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 292 
     | 
    
         
            +
                },
         
     | 
| 
      
 293 
     | 
    
         
            +
                {
         
     | 
| 
      
 294 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 296 
     | 
    
         
            +
                    {
         
     | 
| 
      
 297 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 298 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 299 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 300 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 301 
     | 
    
         
            +
                    }
         
     | 
| 
      
 302 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 303 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 304 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 305 
     | 
    
         
            +
                },
         
     | 
| 
      
 306 
     | 
    
         
            +
                {
         
     | 
| 
      
 307 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 308 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 309 
     | 
    
         
            +
                    {
         
     | 
| 
      
 310 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 311 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 312 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 313 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 314 
     | 
    
         
            +
                    },
         
     | 
| 
      
 315 
     | 
    
         
            +
                    {
         
     | 
| 
      
 316 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 317 
     | 
    
         
            +
                      "internalType": "ShortString",
         
     | 
| 
      
 318 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 319 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 320 
     | 
    
         
            +
                    },
         
     | 
| 
      
 321 
     | 
    
         
            +
                    {
         
     | 
| 
      
 322 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 323 
     | 
    
         
            +
                      "internalType": "enum IAccess.Type",
         
     | 
| 
      
 324 
     | 
    
         
            +
                      "name": "rtype",
         
     | 
| 
      
 325 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 326 
     | 
    
         
            +
                    }
         
     | 
| 
      
 327 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 328 
     | 
    
         
            +
                  "name": "LogRoleCreation",
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 330 
     | 
    
         
            +
                },
         
     | 
| 
      
 331 
     | 
    
         
            +
                {
         
     | 
| 
      
 332 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 333 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 334 
     | 
    
         
            +
                    {
         
     | 
| 
      
 335 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 336 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 337 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 338 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 339 
     | 
    
         
            +
                    },
         
     | 
| 
      
 340 
     | 
    
         
            +
                    {
         
     | 
| 
      
 341 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 342 
     | 
    
         
            +
                      "internalType": "ShortString",
         
     | 
| 
      
 343 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 344 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 345 
     | 
    
         
            +
                    },
         
     | 
| 
      
 346 
     | 
    
         
            +
                    {
         
     | 
| 
      
 347 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 348 
     | 
    
         
            +
                      "internalType": "enum IAccess.Type",
         
     | 
| 
      
 349 
     | 
    
         
            +
                      "name": "ttype",
         
     | 
| 
      
 350 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 351 
     | 
    
         
            +
                    },
         
     | 
| 
      
 352 
     | 
    
         
            +
                    {
         
     | 
| 
      
 353 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 354 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 355 
     | 
    
         
            +
                      "name": "isLocked",
         
     | 
| 
      
 356 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 357 
     | 
    
         
            +
                    }
         
     | 
| 
      
 358 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 359 
     | 
    
         
            +
                  "name": "LogTargetCreation",
         
     | 
| 
      
 360 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 361 
     | 
    
         
            +
                },
         
     | 
| 
      
 362 
     | 
    
         
            +
                {
         
     | 
| 
      
 363 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 364 
     | 
    
         
            +
                  "name": "ADMIN_ROLE_NAME",
         
     | 
| 
      
 365 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 366 
     | 
    
         
            +
                    {
         
     | 
| 
      
 367 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 368 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 369 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 370 
     | 
    
         
            +
                    }
         
     | 
| 
      
 371 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 372 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 373 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 374 
     | 
    
         
            +
                },
         
     | 
| 
      
 375 
     | 
    
         
            +
                {
         
     | 
| 
      
 376 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 377 
     | 
    
         
            +
                  "name": "CUSTOM_ROLE_ID_MIN",
         
     | 
| 
      
 378 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 379 
     | 
    
         
            +
                    {
         
     | 
| 
      
 380 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 381 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 382 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 383 
     | 
    
         
            +
                    }
         
     | 
| 
      
 384 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 385 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 386 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 387 
     | 
    
         
            +
                },
         
     | 
| 
      
 388 
     | 
    
         
            +
                {
         
     | 
| 
      
 389 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 390 
     | 
    
         
            +
                  "name": "EXECUTION_DELAY",
         
     | 
| 
      
 391 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 392 
     | 
    
         
            +
                    {
         
     | 
| 
      
 393 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 394 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 395 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 396 
     | 
    
         
            +
                    }
         
     | 
| 
      
 397 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 398 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 399 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 400 
     | 
    
         
            +
                },
         
     | 
| 
      
 401 
     | 
    
         
            +
                {
         
     | 
| 
      
 402 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 403 
     | 
    
         
            +
                  "name": "INSTANCE_OWNER_ROLE_NAME",
         
     | 
| 
      
 404 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 405 
     | 
    
         
            +
                    {
         
     | 
| 
      
 406 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 407 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 408 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 409 
     | 
    
         
            +
                    }
         
     | 
| 
      
 410 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 411 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 412 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 413 
     | 
    
         
            +
                },
         
     | 
| 
      
 414 
     | 
    
         
            +
                {
         
     | 
| 
      
 415 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 416 
     | 
    
         
            +
                  "name": "INSTANCE_ROLE_NAME",
         
     | 
| 
      
 417 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 418 
     | 
    
         
            +
                    {
         
     | 
| 
      
 419 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 420 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 421 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 422 
     | 
    
         
            +
                    }
         
     | 
| 
      
 423 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 424 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 425 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 426 
     | 
    
         
            +
                },
         
     | 
| 
      
 427 
     | 
    
         
            +
                {
         
     | 
| 
      
 428 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "name": "PUBLIC_ROLE_NAME",
         
     | 
| 
      
 430 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 431 
     | 
    
         
            +
                    {
         
     | 
| 
      
 432 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 433 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 434 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 435 
     | 
    
         
            +
                    }
         
     | 
| 
      
 436 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 437 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 438 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 439 
     | 
    
         
            +
                },
         
     | 
| 
      
 440 
     | 
    
         
            +
                {
         
     | 
| 
      
 441 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 442 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 443 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 444 
     | 
    
         
            +
                    {
         
     | 
| 
      
 445 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 446 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 447 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 448 
     | 
    
         
            +
                    }
         
     | 
| 
      
 449 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 450 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 451 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 452 
     | 
    
         
            +
                },
         
     | 
| 
      
 453 
     | 
    
         
            +
                {
         
     | 
| 
      
 454 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 455 
     | 
    
         
            +
                    {
         
     | 
| 
      
 456 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 457 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 458 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 459 
     | 
    
         
            +
                    },
         
     | 
| 
      
 460 
     | 
    
         
            +
                    {
         
     | 
| 
      
 461 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 462 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 463 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 464 
     | 
    
         
            +
                    },
         
     | 
| 
      
 465 
     | 
    
         
            +
                    {
         
     | 
| 
      
 466 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 467 
     | 
    
         
            +
                      "name": "selector",
         
     | 
| 
      
 468 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 469 
     | 
    
         
            +
                    }
         
     | 
| 
      
 470 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 471 
     | 
    
         
            +
                  "name": "canCall",
         
     | 
| 
      
 472 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 473 
     | 
    
         
            +
                    {
         
     | 
| 
      
 474 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 475 
     | 
    
         
            +
                      "name": "immediate",
         
     | 
| 
      
 476 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 477 
     | 
    
         
            +
                    },
         
     | 
| 
      
 478 
     | 
    
         
            +
                    {
         
     | 
| 
      
 479 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 480 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 481 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 482 
     | 
    
         
            +
                    }
         
     | 
| 
      
 483 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 484 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 485 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 486 
     | 
    
         
            +
                },
         
     | 
| 
      
 487 
     | 
    
         
            +
                {
         
     | 
| 
      
 488 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 489 
     | 
    
         
            +
                    {
         
     | 
| 
      
 490 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 491 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 492 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 493 
     | 
    
         
            +
                    },
         
     | 
| 
      
 494 
     | 
    
         
            +
                    {
         
     | 
| 
      
 495 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 496 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 497 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 498 
     | 
    
         
            +
                    }
         
     | 
| 
      
 499 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 500 
     | 
    
         
            +
                  "name": "createCoreRole",
         
     | 
| 
      
 501 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 502 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 503 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 504 
     | 
    
         
            +
                },
         
     | 
| 
      
 505 
     | 
    
         
            +
                {
         
     | 
| 
      
 506 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 507 
     | 
    
         
            +
                    {
         
     | 
| 
      
 508 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 509 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 510 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 511 
     | 
    
         
            +
                    },
         
     | 
| 
      
 512 
     | 
    
         
            +
                    {
         
     | 
| 
      
 513 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 514 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 515 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 516 
     | 
    
         
            +
                    }
         
     | 
| 
      
 517 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 518 
     | 
    
         
            +
                  "name": "createCoreTarget",
         
     | 
| 
      
 519 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 520 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 522 
     | 
    
         
            +
                },
         
     | 
| 
      
 523 
     | 
    
         
            +
                {
         
     | 
| 
      
 524 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 525 
     | 
    
         
            +
                    {
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 528 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 529 
     | 
    
         
            +
                    },
         
     | 
| 
      
 530 
     | 
    
         
            +
                    {
         
     | 
| 
      
 531 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 532 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 533 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 534 
     | 
    
         
            +
                    },
         
     | 
| 
      
 535 
     | 
    
         
            +
                    {
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 537 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 538 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 539 
     | 
    
         
            +
                    }
         
     | 
| 
      
 540 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 541 
     | 
    
         
            +
                  "name": "createGifRole",
         
     | 
| 
      
 542 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 543 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 544 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 545 
     | 
    
         
            +
                },
         
     | 
| 
      
 546 
     | 
    
         
            +
                {
         
     | 
| 
      
 547 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 548 
     | 
    
         
            +
                    {
         
     | 
| 
      
 549 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 550 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 551 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 552 
     | 
    
         
            +
                    },
         
     | 
| 
      
 553 
     | 
    
         
            +
                    {
         
     | 
| 
      
 554 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 555 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 556 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 557 
     | 
    
         
            +
                    }
         
     | 
| 
      
 558 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 559 
     | 
    
         
            +
                  "name": "createGifTarget",
         
     | 
| 
      
 560 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 561 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 562 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 563 
     | 
    
         
            +
                },
         
     | 
| 
      
 564 
     | 
    
         
            +
                {
         
     | 
| 
      
 565 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 566 
     | 
    
         
            +
                    {
         
     | 
| 
      
 567 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 568 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
      
 569 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 570 
     | 
    
         
            +
                    },
         
     | 
| 
      
 571 
     | 
    
         
            +
                    {
         
     | 
| 
      
 572 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 573 
     | 
    
         
            +
                      "name": "adminName",
         
     | 
| 
      
 574 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 575 
     | 
    
         
            +
                    }
         
     | 
| 
      
 576 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 577 
     | 
    
         
            +
                  "name": "createRole",
         
     | 
| 
      
 578 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 579 
     | 
    
         
            +
                    {
         
     | 
| 
      
 580 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 581 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 582 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 583 
     | 
    
         
            +
                    },
         
     | 
| 
      
 584 
     | 
    
         
            +
                    {
         
     | 
| 
      
 585 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 586 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 587 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 588 
     | 
    
         
            +
                    }
         
     | 
| 
      
 589 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 590 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 591 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 592 
     | 
    
         
            +
                },
         
     | 
| 
      
 593 
     | 
    
         
            +
                {
         
     | 
| 
      
 594 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 595 
     | 
    
         
            +
                    {
         
     | 
| 
      
 596 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 597 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 598 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 599 
     | 
    
         
            +
                    },
         
     | 
| 
      
 600 
     | 
    
         
            +
                    {
         
     | 
| 
      
 601 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 602 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 603 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 604 
     | 
    
         
            +
                    }
         
     | 
| 
      
 605 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 606 
     | 
    
         
            +
                  "name": "createTarget",
         
     | 
| 
      
 607 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 608 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 609 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 610 
     | 
    
         
            +
                },
         
     | 
| 
      
 611 
     | 
    
         
            +
                {
         
     | 
| 
      
 612 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 613 
     | 
    
         
            +
                    {
         
     | 
| 
      
 614 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 615 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 616 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 617 
     | 
    
         
            +
                    }
         
     | 
| 
      
 618 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 619 
     | 
    
         
            +
                  "name": "getRoleAdmin",
         
     | 
| 
      
 620 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 621 
     | 
    
         
            +
                    {
         
     | 
| 
      
 622 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 623 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 624 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 625 
     | 
    
         
            +
                    }
         
     | 
| 
      
 626 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 627 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 628 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 629 
     | 
    
         
            +
                },
         
     | 
| 
      
 630 
     | 
    
         
            +
                {
         
     | 
| 
      
 631 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 632 
     | 
    
         
            +
                    {
         
     | 
| 
      
 633 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 634 
     | 
    
         
            +
                      "name": "idx",
         
     | 
| 
      
 635 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 636 
     | 
    
         
            +
                    }
         
     | 
| 
      
 637 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 638 
     | 
    
         
            +
                  "name": "getRoleId",
         
     | 
| 
      
 639 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 640 
     | 
    
         
            +
                    {
         
     | 
| 
      
 641 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 642 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 643 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 644 
     | 
    
         
            +
                    }
         
     | 
| 
      
 645 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 646 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 647 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 648 
     | 
    
         
            +
                },
         
     | 
| 
      
 649 
     | 
    
         
            +
                {
         
     | 
| 
      
 650 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 651 
     | 
    
         
            +
                    {
         
     | 
| 
      
 652 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 653 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 654 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 655 
     | 
    
         
            +
                    }
         
     | 
| 
      
 656 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 657 
     | 
    
         
            +
                  "name": "getRoleIdForName",
         
     | 
| 
      
 658 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 659 
     | 
    
         
            +
                    {
         
     | 
| 
      
 660 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 661 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 662 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 663 
     | 
    
         
            +
                    }
         
     | 
| 
      
 664 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 665 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 666 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 667 
     | 
    
         
            +
                },
         
     | 
| 
      
 668 
     | 
    
         
            +
                {
         
     | 
| 
      
 669 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 670 
     | 
    
         
            +
                    {
         
     | 
| 
      
 671 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 672 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 673 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 674 
     | 
    
         
            +
                    }
         
     | 
| 
      
 675 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 676 
     | 
    
         
            +
                  "name": "getRoleInfo",
         
     | 
| 
      
 677 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 678 
     | 
    
         
            +
                    {
         
     | 
| 
      
 679 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 680 
     | 
    
         
            +
                        {
         
     | 
| 
      
 681 
     | 
    
         
            +
                          "internalType": "ShortString",
         
     | 
| 
      
 682 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 683 
     | 
    
         
            +
                          "type": "bytes32"
         
     | 
| 
      
 684 
     | 
    
         
            +
                        },
         
     | 
| 
      
 685 
     | 
    
         
            +
                        {
         
     | 
| 
      
 686 
     | 
    
         
            +
                          "internalType": "enum IAccess.Type",
         
     | 
| 
      
 687 
     | 
    
         
            +
                          "name": "rtype",
         
     | 
| 
      
 688 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 689 
     | 
    
         
            +
                        },
         
     | 
| 
      
 690 
     | 
    
         
            +
                        {
         
     | 
| 
      
 691 
     | 
    
         
            +
                          "internalType": "RoleId",
         
     | 
| 
      
 692 
     | 
    
         
            +
                          "name": "admin",
         
     | 
| 
      
 693 
     | 
    
         
            +
                          "type": "uint64"
         
     | 
| 
      
 694 
     | 
    
         
            +
                        },
         
     | 
| 
      
 695 
     | 
    
         
            +
                        {
         
     | 
| 
      
 696 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 697 
     | 
    
         
            +
                          "name": "createdAt",
         
     | 
| 
      
 698 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 699 
     | 
    
         
            +
                        },
         
     | 
| 
      
 700 
     | 
    
         
            +
                        {
         
     | 
| 
      
 701 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 702 
     | 
    
         
            +
                          "name": "updatedAt",
         
     | 
| 
      
 703 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 704 
     | 
    
         
            +
                        }
         
     | 
| 
      
 705 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 706 
     | 
    
         
            +
                      "internalType": "struct IAccess.RoleInfo",
         
     | 
| 
      
 707 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 708 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 709 
     | 
    
         
            +
                    }
         
     | 
| 
      
 710 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 711 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 712 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 713 
     | 
    
         
            +
                },
         
     | 
| 
      
 714 
     | 
    
         
            +
                {
         
     | 
| 
      
 715 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 716 
     | 
    
         
            +
                    {
         
     | 
| 
      
 717 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 718 
     | 
    
         
            +
                      "name": "targetName",
         
     | 
| 
      
 719 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 720 
     | 
    
         
            +
                    }
         
     | 
| 
      
 721 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 722 
     | 
    
         
            +
                  "name": "getTargetAddress",
         
     | 
| 
      
 723 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 724 
     | 
    
         
            +
                    {
         
     | 
| 
      
 725 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 726 
     | 
    
         
            +
                      "name": "targetAddress",
         
     | 
| 
      
 727 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 728 
     | 
    
         
            +
                    }
         
     | 
| 
      
 729 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 730 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 731 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 732 
     | 
    
         
            +
                },
         
     | 
| 
      
 733 
     | 
    
         
            +
                {
         
     | 
| 
      
 734 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 735 
     | 
    
         
            +
                    {
         
     | 
| 
      
 736 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 737 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 738 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 739 
     | 
    
         
            +
                    }
         
     | 
| 
      
 740 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 741 
     | 
    
         
            +
                  "name": "getTargetInfo",
         
     | 
| 
      
 742 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 743 
     | 
    
         
            +
                    {
         
     | 
| 
      
 744 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 745 
     | 
    
         
            +
                        {
         
     | 
| 
      
 746 
     | 
    
         
            +
                          "internalType": "ShortString",
         
     | 
| 
      
 747 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 748 
     | 
    
         
            +
                          "type": "bytes32"
         
     | 
| 
      
 749 
     | 
    
         
            +
                        },
         
     | 
| 
      
 750 
     | 
    
         
            +
                        {
         
     | 
| 
      
 751 
     | 
    
         
            +
                          "internalType": "enum IAccess.Type",
         
     | 
| 
      
 752 
     | 
    
         
            +
                          "name": "ttype",
         
     | 
| 
      
 753 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 754 
     | 
    
         
            +
                        },
         
     | 
| 
      
 755 
     | 
    
         
            +
                        {
         
     | 
| 
      
 756 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 757 
     | 
    
         
            +
                          "name": "isLocked",
         
     | 
| 
      
 758 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 759 
     | 
    
         
            +
                        },
         
     | 
| 
      
 760 
     | 
    
         
            +
                        {
         
     | 
| 
      
 761 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 762 
     | 
    
         
            +
                          "name": "createdAt",
         
     | 
| 
      
 763 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 764 
     | 
    
         
            +
                        },
         
     | 
| 
      
 765 
     | 
    
         
            +
                        {
         
     | 
| 
      
 766 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 767 
     | 
    
         
            +
                          "name": "updatedAt",
         
     | 
| 
      
 768 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 769 
     | 
    
         
            +
                        }
         
     | 
| 
      
 770 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 771 
     | 
    
         
            +
                      "internalType": "struct IAccess.TargetInfo",
         
     | 
| 
      
 772 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 773 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 774 
     | 
    
         
            +
                    }
         
     | 
| 
      
 775 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 776 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 777 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 778 
     | 
    
         
            +
                },
         
     | 
| 
      
 779 
     | 
    
         
            +
                {
         
     | 
| 
      
 780 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 781 
     | 
    
         
            +
                    {
         
     | 
| 
      
 782 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 783 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 784 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 785 
     | 
    
         
            +
                    },
         
     | 
| 
      
 786 
     | 
    
         
            +
                    {
         
     | 
| 
      
 787 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 788 
     | 
    
         
            +
                      "name": "member",
         
     | 
| 
      
 789 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 790 
     | 
    
         
            +
                    }
         
     | 
| 
      
 791 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 792 
     | 
    
         
            +
                  "name": "grantRole",
         
     | 
| 
      
 793 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 794 
     | 
    
         
            +
                    {
         
     | 
| 
      
 795 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 796 
     | 
    
         
            +
                      "name": "granted",
         
     | 
| 
      
 797 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 798 
     | 
    
         
            +
                    }
         
     | 
| 
      
 799 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 800 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 801 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 802 
     | 
    
         
            +
                },
         
     | 
| 
      
 803 
     | 
    
         
            +
                {
         
     | 
| 
      
 804 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 805 
     | 
    
         
            +
                    {
         
     | 
| 
      
 806 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 807 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 808 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 809 
     | 
    
         
            +
                    },
         
     | 
| 
      
 810 
     | 
    
         
            +
                    {
         
     | 
| 
      
 811 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 812 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 813 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 814 
     | 
    
         
            +
                    }
         
     | 
| 
      
 815 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 816 
     | 
    
         
            +
                  "name": "hasRole",
         
     | 
| 
      
 817 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 818 
     | 
    
         
            +
                    {
         
     | 
| 
      
 819 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 820 
     | 
    
         
            +
                      "name": "accountHasRole",
         
     | 
| 
      
 821 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 822 
     | 
    
         
            +
                    }
         
     | 
| 
      
 823 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 824 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 825 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 826 
     | 
    
         
            +
                },
         
     | 
| 
      
 827 
     | 
    
         
            +
                {
         
     | 
| 
      
 828 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 829 
     | 
    
         
            +
                    {
         
     | 
| 
      
 830 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 831 
     | 
    
         
            +
                      "name": "instanceAddress",
         
     | 
| 
      
 832 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 833 
     | 
    
         
            +
                    }
         
     | 
| 
      
 834 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 835 
     | 
    
         
            +
                  "name": "initialize",
         
     | 
| 
      
 836 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 837 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 838 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 839 
     | 
    
         
            +
                },
         
     | 
| 
      
 840 
     | 
    
         
            +
                {
         
     | 
| 
      
 841 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 842 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 843 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 844 
     | 
    
         
            +
                    {
         
     | 
| 
      
 845 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 846 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 847 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 848 
     | 
    
         
            +
                    }
         
     | 
| 
      
 849 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 850 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 851 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 852 
     | 
    
         
            +
                },
         
     | 
| 
      
 853 
     | 
    
         
            +
                {
         
     | 
| 
      
 854 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 855 
     | 
    
         
            +
                    {
         
     | 
| 
      
 856 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 857 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 858 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 859 
     | 
    
         
            +
                    }
         
     | 
| 
      
 860 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 861 
     | 
    
         
            +
                  "name": "isTargetLocked",
         
     | 
| 
      
 862 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 863 
     | 
    
         
            +
                    {
         
     | 
| 
      
 864 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 865 
     | 
    
         
            +
                      "name": "locked",
         
     | 
| 
      
 866 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 867 
     | 
    
         
            +
                    }
         
     | 
| 
      
 868 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 869 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 870 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 871 
     | 
    
         
            +
                },
         
     | 
| 
      
 872 
     | 
    
         
            +
                {
         
     | 
| 
      
 873 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 874 
     | 
    
         
            +
                    {
         
     | 
| 
      
 875 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 876 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 877 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 878 
     | 
    
         
            +
                    }
         
     | 
| 
      
 879 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 880 
     | 
    
         
            +
                  "name": "renounceRole",
         
     | 
| 
      
 881 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 882 
     | 
    
         
            +
                    {
         
     | 
| 
      
 883 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 884 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 885 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 886 
     | 
    
         
            +
                    }
         
     | 
| 
      
 887 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 888 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 889 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 890 
     | 
    
         
            +
                },
         
     | 
| 
      
 891 
     | 
    
         
            +
                {
         
     | 
| 
      
 892 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 893 
     | 
    
         
            +
                    {
         
     | 
| 
      
 894 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 895 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 896 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 897 
     | 
    
         
            +
                    },
         
     | 
| 
      
 898 
     | 
    
         
            +
                    {
         
     | 
| 
      
 899 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 900 
     | 
    
         
            +
                      "name": "member",
         
     | 
| 
      
 901 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 902 
     | 
    
         
            +
                    }
         
     | 
| 
      
 903 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 904 
     | 
    
         
            +
                  "name": "revokeRole",
         
     | 
| 
      
 905 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 906 
     | 
    
         
            +
                    {
         
     | 
| 
      
 907 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 908 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 909 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 910 
     | 
    
         
            +
                    }
         
     | 
| 
      
 911 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 912 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 913 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 914 
     | 
    
         
            +
                },
         
     | 
| 
      
 915 
     | 
    
         
            +
                {
         
     | 
| 
      
 916 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 917 
     | 
    
         
            +
                    {
         
     | 
| 
      
 918 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 919 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 920 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 921 
     | 
    
         
            +
                    }
         
     | 
| 
      
 922 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 923 
     | 
    
         
            +
                  "name": "revokeRoleAllMembers",
         
     | 
| 
      
 924 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 925 
     | 
    
         
            +
                    {
         
     | 
| 
      
 926 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 927 
     | 
    
         
            +
                      "name": "revoked",
         
     | 
| 
      
 928 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 929 
     | 
    
         
            +
                    }
         
     | 
| 
      
 930 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 931 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 932 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 933 
     | 
    
         
            +
                },
         
     | 
| 
      
 934 
     | 
    
         
            +
                {
         
     | 
| 
      
 935 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 936 
     | 
    
         
            +
                    {
         
     | 
| 
      
 937 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 938 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 939 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 940 
     | 
    
         
            +
                    }
         
     | 
| 
      
 941 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 942 
     | 
    
         
            +
                  "name": "roleExists",
         
     | 
| 
      
 943 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 944 
     | 
    
         
            +
                    {
         
     | 
| 
      
 945 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 946 
     | 
    
         
            +
                      "name": "exists",
         
     | 
| 
      
 947 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 948 
     | 
    
         
            +
                    }
         
     | 
| 
      
 949 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 950 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 951 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 952 
     | 
    
         
            +
                },
         
     | 
| 
      
 953 
     | 
    
         
            +
                {
         
     | 
| 
      
 954 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 955 
     | 
    
         
            +
                    {
         
     | 
| 
      
 956 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 957 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 958 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 959 
     | 
    
         
            +
                    },
         
     | 
| 
      
 960 
     | 
    
         
            +
                    {
         
     | 
| 
      
 961 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 962 
     | 
    
         
            +
                      "name": "idx",
         
     | 
| 
      
 963 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 964 
     | 
    
         
            +
                    }
         
     | 
| 
      
 965 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 966 
     | 
    
         
            +
                  "name": "roleMember",
         
     | 
| 
      
 967 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 968 
     | 
    
         
            +
                    {
         
     | 
| 
      
 969 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 970 
     | 
    
         
            +
                      "name": "member",
         
     | 
| 
      
 971 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 972 
     | 
    
         
            +
                    }
         
     | 
| 
      
 973 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 974 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 975 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 976 
     | 
    
         
            +
                },
         
     | 
| 
      
 977 
     | 
    
         
            +
                {
         
     | 
| 
      
 978 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 979 
     | 
    
         
            +
                    {
         
     | 
| 
      
 980 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 981 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 982 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 983 
     | 
    
         
            +
                    }
         
     | 
| 
      
 984 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 985 
     | 
    
         
            +
                  "name": "roleMembers",
         
     | 
| 
      
 986 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 987 
     | 
    
         
            +
                    {
         
     | 
| 
      
 988 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 989 
     | 
    
         
            +
                      "name": "numberOfMembers",
         
     | 
| 
      
 990 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 991 
     | 
    
         
            +
                    }
         
     | 
| 
      
 992 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 993 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 994 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 995 
     | 
    
         
            +
                },
         
     | 
| 
      
 996 
     | 
    
         
            +
                {
         
     | 
| 
      
 997 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 998 
     | 
    
         
            +
                  "name": "roles",
         
     | 
| 
      
 999 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1000 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1001 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1002 
     | 
    
         
            +
                      "name": "numberOfRoles",
         
     | 
| 
      
 1003 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1004 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1005 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1006 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1007 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1008 
     | 
    
         
            +
                },
         
     | 
| 
      
 1009 
     | 
    
         
            +
                {
         
     | 
| 
      
 1010 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1011 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1012 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1013 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 1014 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1015 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1016 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1017 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 1018 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1019 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1020 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1021 
     | 
    
         
            +
                },
         
     | 
| 
      
 1022 
     | 
    
         
            +
                {
         
     | 
| 
      
 1023 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1024 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1025 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1026 
     | 
    
         
            +
                      "name": "targetName",
         
     | 
| 
      
 1027 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1028 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1029 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1030 
     | 
    
         
            +
                      "internalType": "bytes4[]",
         
     | 
| 
      
 1031 
     | 
    
         
            +
                      "name": "selectors",
         
     | 
| 
      
 1032 
     | 
    
         
            +
                      "type": "bytes4[]"
         
     | 
| 
      
 1033 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1034 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1035 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 1036 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 1037 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 1038 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1039 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1040 
     | 
    
         
            +
                  "name": "setCoreTargetFunctionRole",
         
     | 
| 
      
 1041 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1042 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1043 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1044 
     | 
    
         
            +
                },
         
     | 
| 
      
 1045 
     | 
    
         
            +
                {
         
     | 
| 
      
 1046 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1047 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1048 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 1049 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 1050 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 1051 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1052 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1053 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 1054 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 1055 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 1056 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1057 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1058 
     | 
    
         
            +
                  "name": "setRoleAdmin",
         
     | 
| 
      
 1059 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1060 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1061 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1062 
     | 
    
         
            +
                },
         
     | 
| 
      
 1063 
     | 
    
         
            +
                {
         
     | 
| 
      
 1064 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1065 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1066 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1067 
     | 
    
         
            +
                      "name": "targetName",
         
     | 
| 
      
 1068 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1069 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1070 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1071 
     | 
    
         
            +
                      "internalType": "bytes4[]",
         
     | 
| 
      
 1072 
     | 
    
         
            +
                      "name": "selectors",
         
     | 
| 
      
 1073 
     | 
    
         
            +
                      "type": "bytes4[]"
         
     | 
| 
      
 1074 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1075 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1076 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 1077 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 1078 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 1079 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1080 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1081 
     | 
    
         
            +
                  "name": "setTargetFunctionRole",
         
     | 
| 
      
 1082 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1083 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1084 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1085 
     | 
    
         
            +
                },
         
     | 
| 
      
 1086 
     | 
    
         
            +
                {
         
     | 
| 
      
 1087 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1088 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1089 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1090 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 1091 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1092 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1093 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1094 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1095 
     | 
    
         
            +
                      "name": "locked",
         
     | 
| 
      
 1096 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1097 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1098 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1099 
     | 
    
         
            +
                  "name": "setTargetLocked",
         
     | 
| 
      
 1100 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1101 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1102 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1103 
     | 
    
         
            +
                },
         
     | 
| 
      
 1104 
     | 
    
         
            +
                {
         
     | 
| 
      
 1105 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1106 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1107 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1108 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 1109 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1110 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1111 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1112 
     | 
    
         
            +
                  "name": "targetExists",
         
     | 
| 
      
 1113 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1114 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1115 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1116 
     | 
    
         
            +
                      "name": "exists",
         
     | 
| 
      
 1117 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1118 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1119 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1120 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1121 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1122 
     | 
    
         
            +
                }
         
     | 
| 
      
 1123 
     | 
    
         
            +
              ],
         
     | 
| 
      
 1124 
     | 
    
         
            +
              "bytecode": "0x608060405234801561001057600080fd5b50613a83806100206000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c80635dfa73db11610130578063bc62a0a5116100b8578063d05404431161007c578063d0540443146105a3578063d1f856ee146105ce578063d2192dbf146105e1578063eaf09b3714610614578063f2345aea1461062757600080fd5b8063bc62a0a514610524578063bcfb11b01461054c578063bf7e214f14610575578063c4d66de81461057d578063c6a001791461059057600080fd5b806386892313116100ff578063868923131461049b5780638fb36037146104ae578063b428b0b0146104cf578063b7009613146104e2578063b7d2b1621461051157600080fd5b80635dfa73db146104595780635fa8aad414610462578063605aa10a146104755780637a9e5e4b1461048857600080fd5b80633656481c116101be57806344ec4c301161018257806344ec4c30146103cc5780634a3a1e00146103df578063530dd456146103f25780635511a6f3146104265780635bfa50271461043957600080fd5b80633656481c1461033e57806337f135d714610369578063384c9a5714610386578063392f5f64146103995780633fd85561146103a157600080fd5b8063131021d911610205578063131021d9146102a55780631bdd0cf8146102e257806326decd401461030557806329db8c3d1461031857806330cae1871461032b57600080fd5b806303014974146102375780630c8ae53e1461025d57806312e1ebc51461027257806312f48f1514610292575b600080fd5b61024a61024536600461312e565b61063a565b6040519081526020015b60405180910390f35b61027061026b3660046131ed565b610661565b005b6102856102803660046132ac565b61075c565b6040516102549190613301565b6102706102a0366004613350565b61081a565b6102d560405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b81525081565b60405161025491906133c3565b6102f56102f036600461312e565b610833565b6040519015158152602001610254565b6102f56103133660046132ac565b610b53565b6102706103263660046131ed565b610bc2565b6102706103393660046133f6565b610c9b565b61035161034c36600461342f565b610d97565b6040516001600160a01b039091168152602001610254565b610371600081565b60405163ffffffff9091168152602001610254565b6102f561039436600461312e565b610dc2565b60035461024a565b6103b46103af366004613463565b610e48565b6040516001600160401b039091168152602001610254565b6102706103da366004613350565b610e8d565b6102706103ed36600461347c565b610f38565b6103b461040036600461312e565b6001600160401b0390811660009081526020819052604090206001015461010090041690565b6103b461043436600461342f565b610f4d565b61044c61044736600461312e565b610f7c565b604051610254919061349a565b6103b461271081565b610270610470366004613350565b611042565b6102f56104833660046132ac565b611057565b6102706104963660046132ac565b6110d0565b6102706104a93660046134fe565b611153565b6104b661128d565b6040516001600160e01b03199091168152602001610254565b6102f56104dd36600461352c565b6112c6565b6104f56104f0366004613572565b611575565b60408051921515835263ffffffff909116602083015201610254565b6102f561051f36600461352c565b6115fa565b6102d56040518060400160405280600981526020016841646d696e526f6c6560b81b81525081565b6102d56040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525081565b610351611758565b61027061058b3660046132ac565b611774565b6102f561059e36600461312e565b611ad1565b6102d56040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b6102f56105dc36600461352c565b611b32565b6105f46105ef3660046135b9565b611c2a565b604080516001600160401b03938416815292909116602083015201610254565b610351610622366004613612565b611c78565b61027061063536600461363e565b611ca1565b6001600160401b038116600090815260016020526040812061065b90611cc5565b92915050565b61066e335b600036611ccf565b600061067985611dcd565b6000818152600660205260409020549091506001600160a01b031660036001600160a01b03821660009081526005602052604090206001015460ff1660038111156106c6576106c66132c9565b036106f25780600360405163ecec011f60e01b81526004016106e99291906136a1565b60405180910390fd5b60036001600160401b03841660009081526020819052604090206001015460ff166003811115610724576107246132c9565b0361074757826003604051630bb1a0c760e01b81526004016106e99291906136be565b6107548183878787611e0b565b505050505050565b6040805160a080820183526000808352602080840182905283850182905260608401829052608084018290526001600160a01b038616825260058152908490208451928301909452835482526001840154929391929083019060ff1660038111156107c9576107c96132c9565b60038111156107da576107da6132c9565b81526001919091015460ff6101008204161515602083015264ffffffffff62010000820481166040840152600160381b9091041660609091015292915050565b61082333610666565b61082f82826001611ede565b5050565b6000816000610862826001600160401b0390811660009081526020819052604090206001015461010090041690565b600854604051631517388760e21b81526001600160401b038316600482015291925060009182916001600160a01b03169063d1f856ee9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156108d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f991906136db565b336040518363ffffffff1660e01b81526004016109179291906136f8565b6040805180830381865afa158015610933573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610957919061371a565b915091508063ffffffff1660001461097157610971613752565b816109ac57335b6040516366c7cee960e01b81526001600160a01b0390911660048201526001600160401b03851660248201526044016106e9565b6109b586611ad1565b6109dd5760405163f5edec3f60e01b81526001600160401b03871660048201526024016106e9565b6001600160401b03861660009081526001602052604081206109fe90611cc5565b905060005b81811015610b48576001600160401b0388166000908152600160205260408120610a2d9083612322565b6001600160401b038a166000908152600160205260409020909150610a52908261232e565b50600854604051631517388760e21b81526001600160401b038b1660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015610ac0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae491906136db565b836040518363ffffffff1660e01b8152600401610b029291906136f8565b600060405180830381600087803b158015610b1c57600080fd5b505af1158015610b30573d6000803e3d6000fd5b50505050508080610b409061377e565b915050610a03565b505050505050919050565b60085460405163a166aa8960e01b81526001600160a01b038381166004830152600092169063a166aa8990602401602060405180830381865afa158015610b9e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065b9190613797565b610bcb33610666565b6000610bd685611dcd565b6000818152600660205260409020549091506001600160a01b031660016001600160a01b03821660009081526005602052604090206001015460ff166003811115610c2357610c236132c9565b03610c465780600160405163ecec011f60e01b81526004016106e99291906136a1565b60016001600160401b03841660009081526020819052604090206001015460ff166003811115610c7857610c786132c9565b0361074757826001604051630bb1a0c760e01b81526004016106e99291906136be565b610ca433610666565b610cad82611ad1565b610cd55760405163f5edec3f60e01b81526001600160401b03831660048201526024016106e9565b60016001600160401b03831660009081526020819052604090206001015460ff166003811115610d0757610d076132c9565b03610d2a57816001604051630bb1a0c760e01b81526004016106e99291906136be565b610d3381611ad1565b610d5b5760405163f5edec3f60e01b81526001600160401b03821660048201526024016106e9565b6001600160401b0391821660009081526020819052604090206001018054929091166101000268ffffffffffffffff0019909216919091179055565b600080610da383611dcd565b6000908152600660205260409020546001600160a01b03169392505050565b6001600160401b038116600090815260208190526040812060019081015460ff1690816003811115610df657610df66132c9565b1480610e1357506002816003811115610e1157610e116132c9565b145b15610e35578281604051630bb1a0c760e01b81526004016106e99291906136be565b33610e408482612343565b949350505050565b600060038281548110610e5d57610e5d6137b4565b90600052602060002090600491828204019190066008029054906101000a90046001600160401b03169050919050565b610e9633610666565b60095460405163c3c5a54760e01b81526001600160a01b0384811660048301529091169063c3c5a54790602401602060405180830381865afa158015610ee0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f049190613797565b610f2c576040516306ad3ea560e51b81526001600160a01b03831660048201526024016106e9565b61082f82826002611ede565b610f4133610666565b61082f8282600161247d565b600060026000610f5c84611dcd565b81526020810191909152604001600020546001600160401b031692915050565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526001600160401b03821660009081526020818152604091829020825160a08101909352805483526001810154909183019060ff166003811115610fec57610fec6132c9565b6003811115610ffd57610ffd6132c9565b8152600191909101546001600160401b03610100820416602083015264ffffffffff600160481b820481166040840152600160701b9091041660609091015292915050565b61104b33610666565b61082f82826003611ede565b6001600160a01b038116600090815260056020526040808220600101549051638d38cd4b60e01b81526201000090910464ffffffffff16600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b906024015b602060405180830381865af4158015610b9e573d6000803e3d6000fd5b336110d9611758565b6001600160a01b0316816001600160a01b0316146111145760405162d1953b60e31b81526001600160a01b03821660048201526024016106e9565b816001600160a01b03163b60000361114a576040516361798f2f60e11b81526001600160a01b03831660048201526024016106e9565b61082f8261283e565b61115c33610666565b6001600160a01b03821660008181526005602052604090206001015460ff1690158061119957506000816003811115611197576111976132c9565b145b156111c25760405163b8c1f4e560e01b81526001600160a01b03841660048201526024016106e9565b60018160038111156111d6576111d66132c9565b036111f857828160405163ecec011f60e01b81526004016106e99291906136a1565b6001600160a01b0383811660008181526005602052604090819020600101805461ff00191661010087151590810291909117909155600854915163167bd39560e01b8152600481019390935260248301529091169063167bd39590604401600060405180830381600087803b15801561127057600080fd5b505af1158015611284573d6000803e3d6000fd5b50505050505050565b600080516020613a2e833981519152805460009190600160a01b900460ff166112b75760006112c0565b638fb3603760e01b5b91505090565b60008260006112f5826001600160401b0390811660009081526020819052604090206001015461010090041690565b600854604051631517388760e21b81526001600160401b038316600482015291925060009182916001600160a01b03169063d1f856ee9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c91906136db565b336040518363ffffffff1660e01b81526004016113aa9291906136f8565b6040805180830381865afa1580156113c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ea919061371a565b915091508063ffffffff1660001461140457611404613752565b8161140f5733610978565b61141887611ad1565b6114405760405163f5edec3f60e01b81526001600160401b03881660048201526024016106e9565b6001600160401b0387166000908152600160205260409020611462908761289f565b9450841561156b57600854604051631517388760e21b81526001600160401b03891660048201526001600160a01b03909116906325c471a09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156114d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fb91906136db565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038916602482015260006044820152606401600060405180830381600087803b15801561155257600080fd5b505af1158015611566573d6000803e3d6000fd5b505050505b5050505092915050565b60085460405163b700961360e01b815260009182916001600160a01b039091169063b7009613906115ae908890889088906004016137ca565b6040805180830381865afa1580156115ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ee919061371a565b91509150935093915050565b6000826000611629826001600160401b0390811660009081526020819052604090206001015461010090041690565b600854604051631517388760e21b81526001600160401b038316600482015291925060009182916001600160a01b03169063d1f856ee9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af415801561169c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c091906136db565b336040518363ffffffff1660e01b81526004016116de9291906136f8565b6040805180830381865afa1580156116fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171e919061371a565b915091508063ffffffff1660001461173857611738613752565b816117435733610978565b61174d8787612343565b979650505050505050565b600080516020613a2e833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156117b95750825b90506000826001600160401b031660011480156117d55750303b155b9050811580156117e3575080155b156118015760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561182b57845460ff60401b1916600160401b1785555b60008690506000816001600160a01b0316635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611870573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189491906137f7565b90506000826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fa91906137f7565b9050611905816128b4565b600880546001600160a01b038084166001600160a01b03199283161790925560098054928516929091169190911790556004805467ffffffffffffffff191661271017905561197e6119556128c8565b6040518060400160405280600981526020016841646d696e526f6c6560b81b815250600161247d565b6119b3611989612945565b6040518060400160405280600a8152602001695075626c6963526f6c6560b01b815250600161247d565b6119ea6119be612986565b6040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b815250600161247d565b611a266119f56129c2565b60405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b815250600261247d565b611a5b60016000611a356128c8565b6001600160401b03166001600160401b031681526020019081526020016000203061289f565b50611a6d611a67612986565b8a6112c6565b50611a81611a796129c2565b610339612986565b505050831561075457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050505050565b6001600160401b038116600090815260208190526040808220600101549051638d38cd4b60e01b8152600160481b90910464ffffffffff16600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b906024016110b3565b600854604051631517388760e21b81526001600160401b03841660048201526000916001600160a01b03169063d1f856ee9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015611ba0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc491906136db565b846040518363ffffffff1660e01b8152600401611be29291906136f8565b6040805180830381865afa158015611bfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c22919061371a565b509392505050565b600080611c3633610666565b611c3e6129fe565b9092509050611c4f8285600361247d565b611c5b8184600361247d565b611c658282610c9b565b611c71816103396129c2565b9250929050565b6001600160401b0382166000908152600160205260408120611c9a9083612322565b9392505050565b611caa33610666565b611cb68383600261247d565b611cc08382610c9b565b505050565b600061065b825490565b600080516020613a2e833981519152600080611d0a611cec611758565b8730611cfc600460008a8c613814565b611d059161383e565b612b40565b91509150816107545763ffffffff811615611daa57825460ff60a01b1916600160a01b178355611d38611758565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611d679392919061386e565b600060405180830381600087803b158015611d8157600080fd5b505af1158015611d95573d6000803e3d6000fd5b5050845460ff60a01b19168555506107549050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016106e9565b600080829050601f81511115611df8578260405163305a27a960e01b81526004016106e991906133c3565b8051611e03826138ae565b179392505050565b6001600160a01b038516611e3d5760405163b8c1f4e560e01b81526001600160a01b03861660048201526024016106e9565b611e4681611ad1565b611e6e5760405163f5edec3f60e01b81526001600160401b03821660048201526024016106e9565b6008546040516308d6122d60e01b815282916001600160a01b0316906308d6122d90611ea49089908890889087906004016138d5565b600060405180830381600087803b158015611ebe57600080fd5b505af1158015611ed2573d6000803e3d6000fd5b50505050505050505050565b6000611ee983611dcd565b9050611ef6848284612c37565b6001600160a01b03841660009081526005602052604090819020600101549051638d38cd4b60e01b81526201000090910464ffffffffff16600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b90602401602060405180830381865af4158015611f6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f939190613797565b15611fd4576001600160a01b03841660008181526005602052604090819020549051632969db5760e11b8152600481019290925260248201526044016106e9565b6000818152600660205260409020546001600160a01b03161561203557600081815260066020526040908190205490516361c0558f60e01b81526001600160a01b0380871660048301529091166024820152604481018290526064016106e9565b60085460405163a166aa8960e01b81526001600160a01b038681166004830152600092169063a166aa8990602401602060405180830381865afa158015612080573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a49190613797565b90506040518060a001604052808381526020018460038111156120c9576120c96132c9565b8152602001821515815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561211f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121439190613948565b64ffffffffff16815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612198573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bc9190613948565b64ffffffffff1690526001600160a01b0386166000908152600560209081526040909120825181559082015160018083018054909160ff199091169083600381111561220a5761220a6132c9565b021790555060408281015160019283018054606086015160809096015166ffffffffffff00199091166101009315159390930266ffffffffff00001916929092176201000064ffffffffff96871602176bffffffffff000000000000001916600160381b9590921694909402179092556000848152600660205282812080546001600160a01b03199081166001600160a01b038b169081179092556007805494850181559092527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68890920180549091169091179055517f1b6c9e4eef57701705db39664c8777cd8c15bb0f52556130a44b55e30cd501e89061231390879085908790869061396f565b60405180910390a15050505050565b6000611c9a8383612d23565b6000611c9a836001600160a01b038416612d4d565b600061234e83611ad1565b6123765760405163f5edec3f60e01b81526001600160401b03841660048201526024016106e9565b6001600160401b0383166000908152600160205260409020612398908361232e565b9050801561065b57600854604051631517388760e21b81526001600160401b03851660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af415801561240d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243191906136db565b846040518363ffffffff1660e01b815260040161244f9291906136f8565b600060405180830381600087803b15801561246957600080fd5b505af115801561156b573d6000803e3d6000fd5b600061248883611dcd565b9050612495848284612e47565b61249e84611ad1565b156124c7576040516330907ba960e01b81526001600160401b03851660048201526024016106e9565b6000818152600260205260409081902054905163a42e52e960e01b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063a42e52e990602401602060405180830381865af4158015612530573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125549190613797565b1561259d576000818152600260205260409081902054905163af48012f60e01b81526001600160401b0380871660048301529091166024820152604481018290526064016106e9565b6040518060a001604052808281526020018360038111156125c0576125c06132c9565b81526020016125cd6128c8565b6001600160401b0316815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612624573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126489190613948565b64ffffffffff16815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561269d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c19190613948565b64ffffffffff1690526001600160401b038516600090815260208181526040909120825181559082015160018083018054909160ff199091169083600381111561270d5761270d6132c9565b02179055506040828101516001928301805460608601516080909601516dffffffffffffffffffffffffff00199091166101006001600160401b0394851681026dffffffffff000000000000000000191691909117600160481b64ffffffffff988916021764ffffffffff60701b1916600160701b979092169690960217905560008581526002602052828120805467ffffffffffffffff19168a8416908117909155600380549586018155918290527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b600486040180549590921660080290950a918202199093169302929092179055517f946b8e9c3ff1c1ed025292a56da516b43a836f1a9f35bc2ee6de53d879d6d6b090612830908690849086906139a4565b60405180910390a150505050565b600080516020613a2e83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6000611c9a836001600160a01b038416613036565b6128bc613085565b6128c5816130d0565b50565b6040516368aebf7b60e01b81526000600482018190529073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af415801561291c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061294091906136db565b905090565b6040516368aebf7b60e01b81526001600160401b03600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016128ff565b6040516368aebf7b60e01b8152610a28600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016128ff565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016128ff565b60045460009081906001600160401b031681612a1b8260016139c8565b9050612a288260026139c8565b6004805467ffffffffffffffff19166001600160401b039283161781556040516368aebf7b60e01b81529184169082015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015612a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab991906136db565b6040516368aebf7b60e01b81526001600160401b038316600482015290945073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015612b14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b3891906136db565b925050509091565b600080600080876001600160a01b0316878787604051602401612b65939291906137ca565b60408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612b9a91906139e8565b600060405180830381855afa9150503d8060008114612bd5576040519150601f19603f3d011682016040523d82523d6000602084013e612bda565b606091505b50915091508115612c2c576040815110612c0c5780806020019051810190612c02919061371a565b9094509250612c2c565b6020815110612c2c5780806020019051810190612c299190613797565b93505b505094509492505050565b6000836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c9b91906137f7565b9050612ca5611758565b6001600160a01b0316816001600160a01b031614612ce957604051631db0625160e01b81526001600160a01b038086166004830152821660248201526044016106e9565b612cf2836130e1565b600003612d1d5760405163a12ddedf60e01b81526001600160a01b03851660048201526024016106e9565b50505050565b6000826000018281548110612d3a57612d3a6137b4565b9060005260206000200154905092915050565b60008181526001830160205260408120548015612e36576000612d71600183613a04565b8554909150600090612d8590600190613a04565b9050808214612dea576000866000018281548110612da557612da56137b4565b9060005260206000200154905080876000018481548110612dc857612dc86137b4565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612dfb57612dfb613a17565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061065b565b600091505061065b565b5092915050565b604051631517388760e21b81526001600160401b038416600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ec691906136db565b6001600160401b031690506003826003811115612ee557612ee56132c9565b148015612ef3575061271081105b15612f1c5760405163be511cc160e01b81526001600160401b03851660048201526024016106e9565b6003826003811115612f3057612f306132c9565b14158015612f4057506127108110155b8015612fd95750612f4f612945565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612fa8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fcc91906136db565b6001600160401b03168114155b1561300257604051630e08ff2d60e11b81526001600160401b03851660048201526024016106e9565b61300b836130e1565b600003612d1d57604051631367e80d60e31b81526001600160401b03851660048201526024016106e9565b600081815260018301602052604081205461307d5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561065b565b50600061065b565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166130ce57604051631afcd79f60e31b815260040160405180910390fd5b565b6130d8613085565b6128c58161283e565b600060ff8216601f81111561065b57604051632cd44ac360e21b815260040160405180910390fd5b6001600160401b03811681146128c557600080fd5b803561312981613109565b919050565b60006020828403121561314057600080fd5b8135611c9a81613109565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261317257600080fd5b81356001600160401b038082111561318c5761318c61314b565b604051601f8301601f19908116603f011681019082821181831017156131b4576131b461314b565b816040528381528660208588010111156131cd57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000806060858703121561320357600080fd5b84356001600160401b038082111561321a57600080fd5b61322688838901613161565b9550602087013591508082111561323c57600080fd5b818701915087601f83011261325057600080fd5b81358181111561325f57600080fd5b8860208260051b850101111561327457600080fd5b60208301955080945050505061328c6040860161311e565b905092959194509250565b6001600160a01b03811681146128c557600080fd5b6000602082840312156132be57600080fd5b8135611c9a81613297565b634e487b7160e01b600052602160045260246000fd5b600481106132fd57634e487b7160e01b600052602160045260246000fd5b9052565b8151815260208083015160a083019161331c908401826132df565b50604083015115156040830152606083015164ffffffffff8082166060850152806080860151166080850152505092915050565b6000806040838503121561336357600080fd5b823561336e81613297565b915060208301356001600160401b0381111561338957600080fd5b61339585828601613161565b9150509250929050565b60005b838110156133ba5781810151838201526020016133a2565b50506000910152565b60208152600082518060208401526133e281604085016020870161339f565b601f01601f19169190910160400192915050565b6000806040838503121561340957600080fd5b823561341481613109565b9150602083013561342481613109565b809150509250929050565b60006020828403121561344157600080fd5b81356001600160401b0381111561345757600080fd5b610e4084828501613161565b60006020828403121561347557600080fd5b5035919050565b6000806040838503121561348f57600080fd5b823561336e81613109565b8151815260208083015160a08301916134b5908401826132df565b506001600160401b036040840151166040830152606083015164ffffffffff8082166060850152806080860151166080850152505092915050565b80151581146128c557600080fd5b6000806040838503121561351157600080fd5b823561351c81613297565b91506020830135613424816134f0565b6000806040838503121561353f57600080fd5b823561354a81613109565b9150602083013561342481613297565b80356001600160e01b03198116811461312957600080fd5b60008060006060848603121561358757600080fd5b833561359281613297565b925060208401356135a281613297565b91506135b06040850161355a565b90509250925092565b600080604083850312156135cc57600080fd5b82356001600160401b03808211156135e357600080fd5b6135ef86838701613161565b9350602085013591508082111561360557600080fd5b5061339585828601613161565b6000806040838503121561362557600080fd5b823561363081613109565b946020939093013593505050565b60008060006060848603121561365357600080fd5b833561365e81613109565b925060208401356001600160401b0381111561367957600080fd5b61368586828701613161565b925050604084013561369681613109565b809150509250925092565b6001600160a01b038316815260408101611c9a60208301846132df565b6001600160401b038316815260408101611c9a60208301846132df565b6000602082840312156136ed57600080fd5b8151611c9a81613109565b6001600160401b039290921682526001600160a01b0316602082015260400190565b6000806040838503121561372d57600080fd5b8251613738816134f0565b602084015190925063ffffffff8116811461342457600080fd5b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161379057613790613768565b5060010190565b6000602082840312156137a957600080fd5b8151611c9a816134f0565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b60006020828403121561380957600080fd5b8151611c9a81613297565b6000808585111561382457600080fd5b8386111561383157600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156138665780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b805160208083015191908110156138cf576000198160200360031b1b821691505b50919050565b6001600160a01b038516815260606020808301829052908201849052600090859060808401835b87811015613929576001600160e01b03196139168561355a565b16825292820192908201906001016138fc565b508093505050506001600160401b038316604083015295945050505050565b60006020828403121561395a57600080fd5b815164ffffffffff81168114611c9a57600080fd5b6001600160a01b0385168152602081018490526080810161399360408301856132df565b821515606083015295945050505050565b6001600160401b03841681526020810183905260608101610e4060408301846132df565b6001600160401b03818116838216019080821115612e4057612e40613768565b600082516139fa81846020870161339f565b9190910192915050565b8181038181111561065b5761065b613768565b634e487b7160e01b600052603160045260246000fdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220a12730de3560cd621ff7488dacb5e00d0dca5f9a99dfcfddf1fcd5e304fe6a7364736f6c63430008140033",
         
     | 
| 
      
 1125 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102325760003560e01c80635dfa73db11610130578063bc62a0a5116100b8578063d05404431161007c578063d0540443146105a3578063d1f856ee146105ce578063d2192dbf146105e1578063eaf09b3714610614578063f2345aea1461062757600080fd5b8063bc62a0a514610524578063bcfb11b01461054c578063bf7e214f14610575578063c4d66de81461057d578063c6a001791461059057600080fd5b806386892313116100ff578063868923131461049b5780638fb36037146104ae578063b428b0b0146104cf578063b7009613146104e2578063b7d2b1621461051157600080fd5b80635dfa73db146104595780635fa8aad414610462578063605aa10a146104755780637a9e5e4b1461048857600080fd5b80633656481c116101be57806344ec4c301161018257806344ec4c30146103cc5780634a3a1e00146103df578063530dd456146103f25780635511a6f3146104265780635bfa50271461043957600080fd5b80633656481c1461033e57806337f135d714610369578063384c9a5714610386578063392f5f64146103995780633fd85561146103a157600080fd5b8063131021d911610205578063131021d9146102a55780631bdd0cf8146102e257806326decd401461030557806329db8c3d1461031857806330cae1871461032b57600080fd5b806303014974146102375780630c8ae53e1461025d57806312e1ebc51461027257806312f48f1514610292575b600080fd5b61024a61024536600461312e565b61063a565b6040519081526020015b60405180910390f35b61027061026b3660046131ed565b610661565b005b6102856102803660046132ac565b61075c565b6040516102549190613301565b6102706102a0366004613350565b61081a565b6102d560405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b81525081565b60405161025491906133c3565b6102f56102f036600461312e565b610833565b6040519015158152602001610254565b6102f56103133660046132ac565b610b53565b6102706103263660046131ed565b610bc2565b6102706103393660046133f6565b610c9b565b61035161034c36600461342f565b610d97565b6040516001600160a01b039091168152602001610254565b610371600081565b60405163ffffffff9091168152602001610254565b6102f561039436600461312e565b610dc2565b60035461024a565b6103b46103af366004613463565b610e48565b6040516001600160401b039091168152602001610254565b6102706103da366004613350565b610e8d565b6102706103ed36600461347c565b610f38565b6103b461040036600461312e565b6001600160401b0390811660009081526020819052604090206001015461010090041690565b6103b461043436600461342f565b610f4d565b61044c61044736600461312e565b610f7c565b604051610254919061349a565b6103b461271081565b610270610470366004613350565b611042565b6102f56104833660046132ac565b611057565b6102706104963660046132ac565b6110d0565b6102706104a93660046134fe565b611153565b6104b661128d565b6040516001600160e01b03199091168152602001610254565b6102f56104dd36600461352c565b6112c6565b6104f56104f0366004613572565b611575565b60408051921515835263ffffffff909116602083015201610254565b6102f561051f36600461352c565b6115fa565b6102d56040518060400160405280600981526020016841646d696e526f6c6560b81b81525081565b6102d56040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525081565b610351611758565b61027061058b3660046132ac565b611774565b6102f561059e36600461312e565b611ad1565b6102d56040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b6102f56105dc36600461352c565b611b32565b6105f46105ef3660046135b9565b611c2a565b604080516001600160401b03938416815292909116602083015201610254565b610351610622366004613612565b611c78565b61027061063536600461363e565b611ca1565b6001600160401b038116600090815260016020526040812061065b90611cc5565b92915050565b61066e335b600036611ccf565b600061067985611dcd565b6000818152600660205260409020549091506001600160a01b031660036001600160a01b03821660009081526005602052604090206001015460ff1660038111156106c6576106c66132c9565b036106f25780600360405163ecec011f60e01b81526004016106e99291906136a1565b60405180910390fd5b60036001600160401b03841660009081526020819052604090206001015460ff166003811115610724576107246132c9565b0361074757826003604051630bb1a0c760e01b81526004016106e99291906136be565b6107548183878787611e0b565b505050505050565b6040805160a080820183526000808352602080840182905283850182905260608401829052608084018290526001600160a01b038616825260058152908490208451928301909452835482526001840154929391929083019060ff1660038111156107c9576107c96132c9565b60038111156107da576107da6132c9565b81526001919091015460ff6101008204161515602083015264ffffffffff62010000820481166040840152600160381b9091041660609091015292915050565b61082333610666565b61082f82826001611ede565b5050565b6000816000610862826001600160401b0390811660009081526020819052604090206001015461010090041690565b600854604051631517388760e21b81526001600160401b038316600482015291925060009182916001600160a01b03169063d1f856ee9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156108d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f991906136db565b336040518363ffffffff1660e01b81526004016109179291906136f8565b6040805180830381865afa158015610933573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610957919061371a565b915091508063ffffffff1660001461097157610971613752565b816109ac57335b6040516366c7cee960e01b81526001600160a01b0390911660048201526001600160401b03851660248201526044016106e9565b6109b586611ad1565b6109dd5760405163f5edec3f60e01b81526001600160401b03871660048201526024016106e9565b6001600160401b03861660009081526001602052604081206109fe90611cc5565b905060005b81811015610b48576001600160401b0388166000908152600160205260408120610a2d9083612322565b6001600160401b038a166000908152600160205260409020909150610a52908261232e565b50600854604051631517388760e21b81526001600160401b038b1660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015610ac0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae491906136db565b836040518363ffffffff1660e01b8152600401610b029291906136f8565b600060405180830381600087803b158015610b1c57600080fd5b505af1158015610b30573d6000803e3d6000fd5b50505050508080610b409061377e565b915050610a03565b505050505050919050565b60085460405163a166aa8960e01b81526001600160a01b038381166004830152600092169063a166aa8990602401602060405180830381865afa158015610b9e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065b9190613797565b610bcb33610666565b6000610bd685611dcd565b6000818152600660205260409020549091506001600160a01b031660016001600160a01b03821660009081526005602052604090206001015460ff166003811115610c2357610c236132c9565b03610c465780600160405163ecec011f60e01b81526004016106e99291906136a1565b60016001600160401b03841660009081526020819052604090206001015460ff166003811115610c7857610c786132c9565b0361074757826001604051630bb1a0c760e01b81526004016106e99291906136be565b610ca433610666565b610cad82611ad1565b610cd55760405163f5edec3f60e01b81526001600160401b03831660048201526024016106e9565b60016001600160401b03831660009081526020819052604090206001015460ff166003811115610d0757610d076132c9565b03610d2a57816001604051630bb1a0c760e01b81526004016106e99291906136be565b610d3381611ad1565b610d5b5760405163f5edec3f60e01b81526001600160401b03821660048201526024016106e9565b6001600160401b0391821660009081526020819052604090206001018054929091166101000268ffffffffffffffff0019909216919091179055565b600080610da383611dcd565b6000908152600660205260409020546001600160a01b03169392505050565b6001600160401b038116600090815260208190526040812060019081015460ff1690816003811115610df657610df66132c9565b1480610e1357506002816003811115610e1157610e116132c9565b145b15610e35578281604051630bb1a0c760e01b81526004016106e99291906136be565b33610e408482612343565b949350505050565b600060038281548110610e5d57610e5d6137b4565b90600052602060002090600491828204019190066008029054906101000a90046001600160401b03169050919050565b610e9633610666565b60095460405163c3c5a54760e01b81526001600160a01b0384811660048301529091169063c3c5a54790602401602060405180830381865afa158015610ee0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f049190613797565b610f2c576040516306ad3ea560e51b81526001600160a01b03831660048201526024016106e9565b61082f82826002611ede565b610f4133610666565b61082f8282600161247d565b600060026000610f5c84611dcd565b81526020810191909152604001600020546001600160401b031692915050565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526001600160401b03821660009081526020818152604091829020825160a08101909352805483526001810154909183019060ff166003811115610fec57610fec6132c9565b6003811115610ffd57610ffd6132c9565b8152600191909101546001600160401b03610100820416602083015264ffffffffff600160481b820481166040840152600160701b9091041660609091015292915050565b61104b33610666565b61082f82826003611ede565b6001600160a01b038116600090815260056020526040808220600101549051638d38cd4b60e01b81526201000090910464ffffffffff16600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b906024015b602060405180830381865af4158015610b9e573d6000803e3d6000fd5b336110d9611758565b6001600160a01b0316816001600160a01b0316146111145760405162d1953b60e31b81526001600160a01b03821660048201526024016106e9565b816001600160a01b03163b60000361114a576040516361798f2f60e11b81526001600160a01b03831660048201526024016106e9565b61082f8261283e565b61115c33610666565b6001600160a01b03821660008181526005602052604090206001015460ff1690158061119957506000816003811115611197576111976132c9565b145b156111c25760405163b8c1f4e560e01b81526001600160a01b03841660048201526024016106e9565b60018160038111156111d6576111d66132c9565b036111f857828160405163ecec011f60e01b81526004016106e99291906136a1565b6001600160a01b0383811660008181526005602052604090819020600101805461ff00191661010087151590810291909117909155600854915163167bd39560e01b8152600481019390935260248301529091169063167bd39590604401600060405180830381600087803b15801561127057600080fd5b505af1158015611284573d6000803e3d6000fd5b50505050505050565b600080516020613a2e833981519152805460009190600160a01b900460ff166112b75760006112c0565b638fb3603760e01b5b91505090565b60008260006112f5826001600160401b0390811660009081526020819052604090206001015461010090041690565b600854604051631517388760e21b81526001600160401b038316600482015291925060009182916001600160a01b03169063d1f856ee9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c91906136db565b336040518363ffffffff1660e01b81526004016113aa9291906136f8565b6040805180830381865afa1580156113c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ea919061371a565b915091508063ffffffff1660001461140457611404613752565b8161140f5733610978565b61141887611ad1565b6114405760405163f5edec3f60e01b81526001600160401b03881660048201526024016106e9565b6001600160401b0387166000908152600160205260409020611462908761289f565b9450841561156b57600854604051631517388760e21b81526001600160401b03891660048201526001600160a01b03909116906325c471a09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156114d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fb91906136db565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038916602482015260006044820152606401600060405180830381600087803b15801561155257600080fd5b505af1158015611566573d6000803e3d6000fd5b505050505b5050505092915050565b60085460405163b700961360e01b815260009182916001600160a01b039091169063b7009613906115ae908890889088906004016137ca565b6040805180830381865afa1580156115ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ee919061371a565b91509150935093915050565b6000826000611629826001600160401b0390811660009081526020819052604090206001015461010090041690565b600854604051631517388760e21b81526001600160401b038316600482015291925060009182916001600160a01b03169063d1f856ee9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af415801561169c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c091906136db565b336040518363ffffffff1660e01b81526004016116de9291906136f8565b6040805180830381865afa1580156116fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171e919061371a565b915091508063ffffffff1660001461173857611738613752565b816117435733610978565b61174d8787612343565b979650505050505050565b600080516020613a2e833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156117b95750825b90506000826001600160401b031660011480156117d55750303b155b9050811580156117e3575080155b156118015760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561182b57845460ff60401b1916600160401b1785555b60008690506000816001600160a01b0316635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611870573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189491906137f7565b90506000826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fa91906137f7565b9050611905816128b4565b600880546001600160a01b038084166001600160a01b03199283161790925560098054928516929091169190911790556004805467ffffffffffffffff191661271017905561197e6119556128c8565b6040518060400160405280600981526020016841646d696e526f6c6560b81b815250600161247d565b6119b3611989612945565b6040518060400160405280600a8152602001695075626c6963526f6c6560b01b815250600161247d565b6119ea6119be612986565b6040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b815250600161247d565b611a266119f56129c2565b60405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b815250600261247d565b611a5b60016000611a356128c8565b6001600160401b03166001600160401b031681526020019081526020016000203061289f565b50611a6d611a67612986565b8a6112c6565b50611a81611a796129c2565b610339612986565b505050831561075457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050505050565b6001600160401b038116600090815260208190526040808220600101549051638d38cd4b60e01b8152600160481b90910464ffffffffff16600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b906024016110b3565b600854604051631517388760e21b81526001600160401b03841660048201526000916001600160a01b03169063d1f856ee9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015611ba0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc491906136db565b846040518363ffffffff1660e01b8152600401611be29291906136f8565b6040805180830381865afa158015611bfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c22919061371a565b509392505050565b600080611c3633610666565b611c3e6129fe565b9092509050611c4f8285600361247d565b611c5b8184600361247d565b611c658282610c9b565b611c71816103396129c2565b9250929050565b6001600160401b0382166000908152600160205260408120611c9a9083612322565b9392505050565b611caa33610666565b611cb68383600261247d565b611cc08382610c9b565b505050565b600061065b825490565b600080516020613a2e833981519152600080611d0a611cec611758565b8730611cfc600460008a8c613814565b611d059161383e565b612b40565b91509150816107545763ffffffff811615611daa57825460ff60a01b1916600160a01b178355611d38611758565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611d679392919061386e565b600060405180830381600087803b158015611d8157600080fd5b505af1158015611d95573d6000803e3d6000fd5b5050845460ff60a01b19168555506107549050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016106e9565b600080829050601f81511115611df8578260405163305a27a960e01b81526004016106e991906133c3565b8051611e03826138ae565b179392505050565b6001600160a01b038516611e3d5760405163b8c1f4e560e01b81526001600160a01b03861660048201526024016106e9565b611e4681611ad1565b611e6e5760405163f5edec3f60e01b81526001600160401b03821660048201526024016106e9565b6008546040516308d6122d60e01b815282916001600160a01b0316906308d6122d90611ea49089908890889087906004016138d5565b600060405180830381600087803b158015611ebe57600080fd5b505af1158015611ed2573d6000803e3d6000fd5b50505050505050505050565b6000611ee983611dcd565b9050611ef6848284612c37565b6001600160a01b03841660009081526005602052604090819020600101549051638d38cd4b60e01b81526201000090910464ffffffffff16600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b90602401602060405180830381865af4158015611f6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f939190613797565b15611fd4576001600160a01b03841660008181526005602052604090819020549051632969db5760e11b8152600481019290925260248201526044016106e9565b6000818152600660205260409020546001600160a01b03161561203557600081815260066020526040908190205490516361c0558f60e01b81526001600160a01b0380871660048301529091166024820152604481018290526064016106e9565b60085460405163a166aa8960e01b81526001600160a01b038681166004830152600092169063a166aa8990602401602060405180830381865afa158015612080573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a49190613797565b90506040518060a001604052808381526020018460038111156120c9576120c96132c9565b8152602001821515815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561211f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121439190613948565b64ffffffffff16815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612198573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bc9190613948565b64ffffffffff1690526001600160a01b0386166000908152600560209081526040909120825181559082015160018083018054909160ff199091169083600381111561220a5761220a6132c9565b021790555060408281015160019283018054606086015160809096015166ffffffffffff00199091166101009315159390930266ffffffffff00001916929092176201000064ffffffffff96871602176bffffffffff000000000000001916600160381b9590921694909402179092556000848152600660205282812080546001600160a01b03199081166001600160a01b038b169081179092556007805494850181559092527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68890920180549091169091179055517f1b6c9e4eef57701705db39664c8777cd8c15bb0f52556130a44b55e30cd501e89061231390879085908790869061396f565b60405180910390a15050505050565b6000611c9a8383612d23565b6000611c9a836001600160a01b038416612d4d565b600061234e83611ad1565b6123765760405163f5edec3f60e01b81526001600160401b03841660048201526024016106e9565b6001600160401b0383166000908152600160205260409020612398908361232e565b9050801561065b57600854604051631517388760e21b81526001600160401b03851660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af415801561240d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243191906136db565b846040518363ffffffff1660e01b815260040161244f9291906136f8565b600060405180830381600087803b15801561246957600080fd5b505af115801561156b573d6000803e3d6000fd5b600061248883611dcd565b9050612495848284612e47565b61249e84611ad1565b156124c7576040516330907ba960e01b81526001600160401b03851660048201526024016106e9565b6000818152600260205260409081902054905163a42e52e960e01b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063a42e52e990602401602060405180830381865af4158015612530573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125549190613797565b1561259d576000818152600260205260409081902054905163af48012f60e01b81526001600160401b0380871660048301529091166024820152604481018290526064016106e9565b6040518060a001604052808281526020018360038111156125c0576125c06132c9565b81526020016125cd6128c8565b6001600160401b0316815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612624573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126489190613948565b64ffffffffff16815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561269d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c19190613948565b64ffffffffff1690526001600160401b038516600090815260208181526040909120825181559082015160018083018054909160ff199091169083600381111561270d5761270d6132c9565b02179055506040828101516001928301805460608601516080909601516dffffffffffffffffffffffffff00199091166101006001600160401b0394851681026dffffffffff000000000000000000191691909117600160481b64ffffffffff988916021764ffffffffff60701b1916600160701b979092169690960217905560008581526002602052828120805467ffffffffffffffff19168a8416908117909155600380549586018155918290527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b600486040180549590921660080290950a918202199093169302929092179055517f946b8e9c3ff1c1ed025292a56da516b43a836f1a9f35bc2ee6de53d879d6d6b090612830908690849086906139a4565b60405180910390a150505050565b600080516020613a2e83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6000611c9a836001600160a01b038416613036565b6128bc613085565b6128c5816130d0565b50565b6040516368aebf7b60e01b81526000600482018190529073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af415801561291c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061294091906136db565b905090565b6040516368aebf7b60e01b81526001600160401b03600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016128ff565b6040516368aebf7b60e01b8152610a28600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016128ff565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016128ff565b60045460009081906001600160401b031681612a1b8260016139c8565b9050612a288260026139c8565b6004805467ffffffffffffffff19166001600160401b039283161781556040516368aebf7b60e01b81529184169082015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015612a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab991906136db565b6040516368aebf7b60e01b81526001600160401b038316600482015290945073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015612b14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b3891906136db565b925050509091565b600080600080876001600160a01b0316878787604051602401612b65939291906137ca565b60408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612b9a91906139e8565b600060405180830381855afa9150503d8060008114612bd5576040519150601f19603f3d011682016040523d82523d6000602084013e612bda565b606091505b50915091508115612c2c576040815110612c0c5780806020019051810190612c02919061371a565b9094509250612c2c565b6020815110612c2c5780806020019051810190612c299190613797565b93505b505094509492505050565b6000836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c9b91906137f7565b9050612ca5611758565b6001600160a01b0316816001600160a01b031614612ce957604051631db0625160e01b81526001600160a01b038086166004830152821660248201526044016106e9565b612cf2836130e1565b600003612d1d5760405163a12ddedf60e01b81526001600160a01b03851660048201526024016106e9565b50505050565b6000826000018281548110612d3a57612d3a6137b4565b9060005260206000200154905092915050565b60008181526001830160205260408120548015612e36576000612d71600183613a04565b8554909150600090612d8590600190613a04565b9050808214612dea576000866000018281548110612da557612da56137b4565b9060005260206000200154905080876000018481548110612dc857612dc86137b4565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612dfb57612dfb613a17565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061065b565b600091505061065b565b5092915050565b604051631517388760e21b81526001600160401b038416600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ec691906136db565b6001600160401b031690506003826003811115612ee557612ee56132c9565b148015612ef3575061271081105b15612f1c5760405163be511cc160e01b81526001600160401b03851660048201526024016106e9565b6003826003811115612f3057612f306132c9565b14158015612f4057506127108110155b8015612fd95750612f4f612945565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612fa8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fcc91906136db565b6001600160401b03168114155b1561300257604051630e08ff2d60e11b81526001600160401b03851660048201526024016106e9565b61300b836130e1565b600003612d1d57604051631367e80d60e31b81526001600160401b03851660048201526024016106e9565b600081815260018301602052604081205461307d5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561065b565b50600061065b565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166130ce57604051631afcd79f60e31b815260040160405180910390fd5b565b6130d8613085565b6128c58161283e565b600060ff8216601f81111561065b57604051632cd44ac360e21b815260040160405180910390fd5b6001600160401b03811681146128c557600080fd5b803561312981613109565b919050565b60006020828403121561314057600080fd5b8135611c9a81613109565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261317257600080fd5b81356001600160401b038082111561318c5761318c61314b565b604051601f8301601f19908116603f011681019082821181831017156131b4576131b461314b565b816040528381528660208588010111156131cd57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000806060858703121561320357600080fd5b84356001600160401b038082111561321a57600080fd5b61322688838901613161565b9550602087013591508082111561323c57600080fd5b818701915087601f83011261325057600080fd5b81358181111561325f57600080fd5b8860208260051b850101111561327457600080fd5b60208301955080945050505061328c6040860161311e565b905092959194509250565b6001600160a01b03811681146128c557600080fd5b6000602082840312156132be57600080fd5b8135611c9a81613297565b634e487b7160e01b600052602160045260246000fd5b600481106132fd57634e487b7160e01b600052602160045260246000fd5b9052565b8151815260208083015160a083019161331c908401826132df565b50604083015115156040830152606083015164ffffffffff8082166060850152806080860151166080850152505092915050565b6000806040838503121561336357600080fd5b823561336e81613297565b915060208301356001600160401b0381111561338957600080fd5b61339585828601613161565b9150509250929050565b60005b838110156133ba5781810151838201526020016133a2565b50506000910152565b60208152600082518060208401526133e281604085016020870161339f565b601f01601f19169190910160400192915050565b6000806040838503121561340957600080fd5b823561341481613109565b9150602083013561342481613109565b809150509250929050565b60006020828403121561344157600080fd5b81356001600160401b0381111561345757600080fd5b610e4084828501613161565b60006020828403121561347557600080fd5b5035919050565b6000806040838503121561348f57600080fd5b823561336e81613109565b8151815260208083015160a08301916134b5908401826132df565b506001600160401b036040840151166040830152606083015164ffffffffff8082166060850152806080860151166080850152505092915050565b80151581146128c557600080fd5b6000806040838503121561351157600080fd5b823561351c81613297565b91506020830135613424816134f0565b6000806040838503121561353f57600080fd5b823561354a81613109565b9150602083013561342481613297565b80356001600160e01b03198116811461312957600080fd5b60008060006060848603121561358757600080fd5b833561359281613297565b925060208401356135a281613297565b91506135b06040850161355a565b90509250925092565b600080604083850312156135cc57600080fd5b82356001600160401b03808211156135e357600080fd5b6135ef86838701613161565b9350602085013591508082111561360557600080fd5b5061339585828601613161565b6000806040838503121561362557600080fd5b823561363081613109565b946020939093013593505050565b60008060006060848603121561365357600080fd5b833561365e81613109565b925060208401356001600160401b0381111561367957600080fd5b61368586828701613161565b925050604084013561369681613109565b809150509250925092565b6001600160a01b038316815260408101611c9a60208301846132df565b6001600160401b038316815260408101611c9a60208301846132df565b6000602082840312156136ed57600080fd5b8151611c9a81613109565b6001600160401b039290921682526001600160a01b0316602082015260400190565b6000806040838503121561372d57600080fd5b8251613738816134f0565b602084015190925063ffffffff8116811461342457600080fd5b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161379057613790613768565b5060010190565b6000602082840312156137a957600080fd5b8151611c9a816134f0565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b60006020828403121561380957600080fd5b8151611c9a81613297565b6000808585111561382457600080fd5b8386111561383157600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156138665780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b805160208083015191908110156138cf576000198160200360031b1b821691505b50919050565b6001600160a01b038516815260606020808301829052908201849052600090859060808401835b87811015613929576001600160e01b03196139168561355a565b16825292820192908201906001016138fc565b508093505050506001600160401b038316604083015295945050505050565b60006020828403121561395a57600080fd5b815164ffffffffff81168114611c9a57600080fd5b6001600160a01b0385168152602081018490526080810161399360408301856132df565b821515606083015295945050505050565b6001600160401b03841681526020810183905260608101610e4060408301846132df565b6001600160401b03818116838216019080821115612e4057612e40613768565b600082516139fa81846020870161339f565b9190910192915050565b8181038181111561065b5761065b613768565b634e487b7160e01b600052603160045260246000fdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220a12730de3560cd621ff7488dacb5e00d0dca5f9a99dfcfddf1fcd5e304fe6a7364736f6c63430008140033",
         
     | 
| 
      
 1126 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 1127 
     | 
    
         
            +
                "contracts/types/RoleId.sol": {
         
     | 
| 
      
 1128 
     | 
    
         
            +
                  "RoleIdLib": [
         
     | 
| 
      
 1129 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1130 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1131 
     | 
    
         
            +
                      "start": 2235
         
     | 
| 
      
 1132 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1133 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1134 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1135 
     | 
    
         
            +
                      "start": 2726
         
     | 
| 
      
 1136 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1137 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1138 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1139 
     | 
    
         
            +
                      "start": 4942
         
     | 
| 
      
 1140 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1141 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1142 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1143 
     | 
    
         
            +
                      "start": 5309
         
     | 
| 
      
 1144 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1145 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1146 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1147 
     | 
    
         
            +
                      "start": 5762
         
     | 
| 
      
 1148 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1149 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1150 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1151 
     | 
    
         
            +
                      "start": 7046
         
     | 
| 
      
 1152 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1153 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1154 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1155 
     | 
    
         
            +
                      "start": 9203
         
     | 
| 
      
 1156 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1157 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1158 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1159 
     | 
    
         
            +
                      "start": 9494
         
     | 
| 
      
 1160 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1161 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1162 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1163 
     | 
    
         
            +
                      "start": 10497
         
     | 
| 
      
 1164 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1165 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1166 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1167 
     | 
    
         
            +
                      "start": 10628
         
     | 
| 
      
 1168 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1169 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1170 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1171 
     | 
    
         
            +
                      "start": 10688
         
     | 
| 
      
 1172 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1173 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1174 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1175 
     | 
    
         
            +
                      "start": 10748
         
     | 
| 
      
 1176 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1177 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1178 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1179 
     | 
    
         
            +
                      "start": 10875
         
     | 
| 
      
 1180 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1181 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1182 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1183 
     | 
    
         
            +
                      "start": 11002
         
     | 
| 
      
 1184 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1185 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1186 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1187 
     | 
    
         
            +
                      "start": 11912
         
     | 
| 
      
 1188 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1189 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1190 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1191 
     | 
    
         
            +
                      "start": 12174
         
     | 
| 
      
 1192 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1193 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1194 
     | 
    
         
            +
                },
         
     | 
| 
      
 1195 
     | 
    
         
            +
                "contracts/types/Timestamp.sol": {
         
     | 
| 
      
 1196 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 1197 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1198 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1199 
     | 
    
         
            +
                      "start": 4277
         
     | 
| 
      
 1200 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1201 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1202 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1203 
     | 
    
         
            +
                      "start": 6960
         
     | 
| 
      
 1204 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1205 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1206 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1207 
     | 
    
         
            +
                      "start": 8021
         
     | 
| 
      
 1208 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1209 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1210 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1211 
     | 
    
         
            +
                      "start": 8440
         
     | 
| 
      
 1212 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1213 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1214 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1215 
     | 
    
         
            +
                      "start": 8561
         
     | 
| 
      
 1216 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1217 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1218 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1219 
     | 
    
         
            +
                      "start": 9725
         
     | 
| 
      
 1220 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1221 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1222 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1223 
     | 
    
         
            +
                      "start": 9846
         
     | 
| 
      
 1224 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1225 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1226 
     | 
    
         
            +
                }
         
     | 
| 
      
 1227 
     | 
    
         
            +
              },
         
     | 
| 
      
 1228 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 1229 
     | 
    
         
            +
                "contracts/types/RoleId.sol": {
         
     | 
| 
      
 1230 
     | 
    
         
            +
                  "RoleIdLib": [
         
     | 
| 
      
 1231 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1232 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1233 
     | 
    
         
            +
                      "start": 2203
         
     | 
| 
      
 1234 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1235 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1236 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1237 
     | 
    
         
            +
                      "start": 2694
         
     | 
| 
      
 1238 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1239 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1240 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1241 
     | 
    
         
            +
                      "start": 4910
         
     | 
| 
      
 1242 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1243 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1244 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1245 
     | 
    
         
            +
                      "start": 5277
         
     | 
| 
      
 1246 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1247 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1248 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1249 
     | 
    
         
            +
                      "start": 5730
         
     | 
| 
      
 1250 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1251 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1252 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1253 
     | 
    
         
            +
                      "start": 7014
         
     | 
| 
      
 1254 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1255 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1256 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1257 
     | 
    
         
            +
                      "start": 9171
         
     | 
| 
      
 1258 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1259 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1260 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1261 
     | 
    
         
            +
                      "start": 9462
         
     | 
| 
      
 1262 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1263 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1264 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1265 
     | 
    
         
            +
                      "start": 10465
         
     | 
| 
      
 1266 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1267 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1268 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1269 
     | 
    
         
            +
                      "start": 10596
         
     | 
| 
      
 1270 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1271 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1272 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1273 
     | 
    
         
            +
                      "start": 10656
         
     | 
| 
      
 1274 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1275 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1276 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1277 
     | 
    
         
            +
                      "start": 10716
         
     | 
| 
      
 1278 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1279 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1280 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1281 
     | 
    
         
            +
                      "start": 10843
         
     | 
| 
      
 1282 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1283 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1284 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1285 
     | 
    
         
            +
                      "start": 10970
         
     | 
| 
      
 1286 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1287 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1288 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1289 
     | 
    
         
            +
                      "start": 11880
         
     | 
| 
      
 1290 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1291 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1292 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1293 
     | 
    
         
            +
                      "start": 12142
         
     | 
| 
      
 1294 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1295 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1296 
     | 
    
         
            +
                },
         
     | 
| 
      
 1297 
     | 
    
         
            +
                "contracts/types/Timestamp.sol": {
         
     | 
| 
      
 1298 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 1299 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1300 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1301 
     | 
    
         
            +
                      "start": 4245
         
     | 
| 
      
 1302 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1303 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1304 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1305 
     | 
    
         
            +
                      "start": 6928
         
     | 
| 
      
 1306 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1307 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1308 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1309 
     | 
    
         
            +
                      "start": 7989
         
     | 
| 
      
 1310 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1311 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1312 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1313 
     | 
    
         
            +
                      "start": 8408
         
     | 
| 
      
 1314 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1315 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1316 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1317 
     | 
    
         
            +
                      "start": 8529
         
     | 
| 
      
 1318 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1319 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1320 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1321 
     | 
    
         
            +
                      "start": 9693
         
     | 
| 
      
 1322 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1323 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1324 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1325 
     | 
    
         
            +
                      "start": 9814
         
     | 
| 
      
 1326 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1327 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1328 
     | 
    
         
            +
                }
         
     | 
| 
      
 1329 
     | 
    
         
            +
              }
         
     | 
| 
      
 1330 
     | 
    
         
            +
            }
         
     |