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