@etherisc/gif-next 0.0.2-e9a637d-547 → 0.0.2-e9c25ee-730
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 +136 -22
 - package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
 - package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
 - package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
 - package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
 - package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1672 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
 - package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1255 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -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 +1322 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1209 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/{components/IDistributionComponent.sol/IDistributionComponent.json → distribution/Distribution.sol/Distribution.json} +285 -324
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1633 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +896 -0
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → distribution/IDistributionComponent.sol/IDistributionComponent.json} +274 -275
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +339 -329
 - package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
 - package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1445 -0
 - package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
 - package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2002 -0
 - package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
 - package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1388 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1612 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2389 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +596 -94
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +367 -106
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +585 -207
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2366 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1985 -576
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +378 -425
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +163 -174
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1927 -876
 - package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -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 +223 -0
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
 - package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +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 +938 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +753 -0
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +302 -175
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
 - package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +253 -241
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -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} +320 -465
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +289 -68
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +886 -0
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +609 -223
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
 - package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +368 -426
 - package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +879 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +740 -0
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
 - package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +455 -482
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +180 -163
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +623 -0
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +997 -0
 - package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +95 -65
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
 - package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +349 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +911 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +764 -0
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
 - package/artifacts/contracts/product/Product.sol/Product.json +1098 -0
 - package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
 - package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
 - package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +483 -29
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +286 -109
 - package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +982 -137
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2195 -0
 - package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +361 -250
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +174 -109
 - package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2160 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1393 -0
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +317 -154
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +265 -186
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1556 -0
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +816 -0
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +142 -132
 - package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +616 -0
 - package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +137 -131
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1196 -0
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +688 -0
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -10
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +144 -3
 - 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 +69 -5
 - package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
 - package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +776 -0
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -70
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -100
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +66 -109
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
 - package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
 - package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +749 -587
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1167 -0
 - package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
 - package/artifacts/contracts/staking/Staking.sol/Staking.json +1888 -0
 - package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +792 -0
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +560 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1380 -0
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +736 -0
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -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 +398 -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 +203 -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 +373 -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/Key32Set.sol/LibKey32Set.dbg.json +4 -0
 - package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -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 +241 -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 +204 -0
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -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/type/StateId.sol/StateIdLib.json +105 -0
 - package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
 - package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
 - package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
 - package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
 - package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
 - package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
 - package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
 - package/contracts/accounting/AccountingService.sol +262 -0
 - package/contracts/accounting/AccountingServiceManager.sol +38 -0
 - package/contracts/accounting/IAccountingService.sol +45 -0
 - package/contracts/authorization/AccessAdmin.sol +875 -0
 - package/contracts/authorization/AccessAdminLib.sol +379 -0
 - package/contracts/authorization/AccessManagerCloneable.sol +158 -0
 - package/contracts/authorization/Authorization.sol +261 -0
 - package/contracts/authorization/IAccess.sol +67 -0
 - package/contracts/authorization/IAccessAdmin.sol +136 -0
 - package/contracts/authorization/IAuthorization.sol +27 -0
 - package/contracts/authorization/IServiceAuthorization.sol +78 -0
 - package/contracts/authorization/ServiceAuthorization.sol +320 -0
 - package/contracts/distribution/BasicDistribution.sol +141 -0
 - package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
 - package/contracts/distribution/Distribution.sol +245 -0
 - package/contracts/distribution/DistributionService.sol +440 -0
 - package/contracts/distribution/DistributionServiceManager.sol +39 -0
 - package/contracts/distribution/IDistributionComponent.sol +50 -0
 - package/contracts/distribution/IDistributionService.sol +109 -0
 - package/contracts/examples/fire/DamageLevel.sol +59 -0
 - package/contracts/examples/fire/FirePool.sol +86 -0
 - package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
 - package/contracts/examples/fire/FireProduct.sol +433 -0
 - package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
 - package/contracts/examples/fire/FireUSD.sol +26 -0
 - package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
 - package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
 - package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
 - package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
 - package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
 - package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
 - package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
 - package/contracts/instance/BundleSet.sol +130 -0
 - package/contracts/instance/IInstance.sol +117 -38
 - package/contracts/instance/IInstanceService.sol +71 -50
 - package/contracts/instance/Instance.sol +252 -110
 - package/contracts/instance/InstanceAdmin.sol +569 -0
 - package/contracts/instance/InstanceAuthorizationV3.sol +262 -0
 - package/contracts/instance/InstanceReader.sol +528 -82
 - package/contracts/instance/InstanceService.sol +385 -391
 - package/contracts/instance/InstanceServiceManager.sol +14 -29
 - package/contracts/instance/InstanceStore.sol +174 -95
 - package/contracts/instance/RiskSet.sol +118 -0
 - package/contracts/instance/base/BalanceStore.sol +123 -0
 - package/contracts/instance/base/Cloneable.sol +28 -0
 - package/contracts/instance/base/ObjectCounter.sol +20 -0
 - package/contracts/instance/base/ObjectLifecycle.sol +113 -0
 - package/contracts/instance/base/ObjectSet.sol +77 -0
 - package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
 - package/contracts/instance/module/IBundle.sol +9 -11
 - package/contracts/instance/module/IComponents.sol +44 -23
 - package/contracts/instance/module/IDistribution.sol +25 -12
 - package/contracts/instance/module/IPolicy.sol +71 -38
 - package/contracts/instance/module/IRisk.sol +6 -1
 - package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
 - package/contracts/oracle/BasicOracle.sol +45 -0
 - package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
 - package/contracts/oracle/IOracle.sol +41 -0
 - package/contracts/oracle/IOracleComponent.sol +33 -0
 - package/contracts/oracle/IOracleService.sol +66 -0
 - package/contracts/oracle/Oracle.sol +154 -0
 - package/contracts/oracle/OracleService.sol +310 -0
 - package/contracts/oracle/OracleServiceManager.sol +39 -0
 - package/contracts/pool/BasicPool.sol +173 -0
 - package/contracts/pool/BasicPoolAuthorization.sol +82 -0
 - package/contracts/pool/BundleService.sol +395 -0
 - package/contracts/pool/BundleServiceManager.sol +39 -0
 - package/contracts/{instance/service → pool}/IBundleService.sol +52 -30
 - package/contracts/pool/IPoolComponent.sol +62 -0
 - package/contracts/pool/IPoolService.sol +165 -0
 - package/contracts/pool/Pool.sol +343 -0
 - package/contracts/pool/PoolLib.sol +260 -0
 - package/contracts/pool/PoolService.sol +733 -0
 - package/contracts/pool/PoolServiceManager.sol +39 -0
 - package/contracts/product/ApplicationService.sol +274 -0
 - package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
 - package/contracts/product/BasicProduct.sol +49 -0
 - package/contracts/product/BasicProductAuthorization.sol +61 -0
 - package/contracts/product/ClaimService.sol +630 -0
 - package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
 - package/contracts/{instance/service → product}/IApplicationService.sol +22 -35
 - package/contracts/product/IClaimService.sol +135 -0
 - package/contracts/product/IPolicyService.sol +95 -0
 - package/contracts/product/IPricingService.sol +40 -0
 - package/contracts/product/IProductComponent.sol +62 -0
 - package/contracts/product/IRiskService.sol +33 -0
 - package/contracts/product/PolicyService.sol +664 -0
 - package/contracts/product/PolicyServiceLib.sol +86 -0
 - package/contracts/product/PolicyServiceManager.sol +39 -0
 - package/contracts/product/PricingService.sol +309 -0
 - package/contracts/product/PricingServiceManager.sol +39 -0
 - package/contracts/product/Product.sol +467 -0
 - package/contracts/product/RiskService.sol +154 -0
 - package/contracts/product/RiskServiceManager.sol +39 -0
 - package/contracts/registry/ChainNft.sol +79 -40
 - package/contracts/registry/IRegistry.sol +99 -30
 - package/contracts/registry/IRegistryService.sol +34 -40
 - package/contracts/registry/IRelease.sol +29 -0
 - package/contracts/registry/ITransferInterceptor.sol +1 -2
 - package/contracts/registry/Registry.sol +460 -197
 - package/contracts/registry/RegistryAdmin.sol +291 -0
 - package/contracts/registry/RegistryAuthorization.sol +277 -0
 - package/contracts/registry/RegistryService.sol +89 -130
 - package/contracts/registry/RegistryServiceManager.sol +23 -32
 - package/contracts/registry/ReleaseAdmin.sol +268 -0
 - package/contracts/registry/ReleaseLifecycle.sol +32 -0
 - package/contracts/registry/ReleaseRegistry.sol +517 -0
 - package/contracts/registry/ServiceAuthorizationV3.sol +341 -0
 - package/contracts/registry/TokenRegistry.sol +264 -64
 - package/contracts/shared/Component.sol +210 -0
 - package/contracts/shared/ComponentService.sol +708 -0
 - package/contracts/shared/ComponentServiceManager.sol +38 -0
 - package/contracts/shared/ComponentVerifyingService.sol +128 -0
 - package/contracts/shared/ContractLib.sol +292 -0
 - package/contracts/shared/IComponent.sol +58 -0
 - package/contracts/shared/IComponentService.sol +112 -0
 - package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
 - package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
 - package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
 - package/contracts/shared/INftOwnable.sol +4 -2
 - package/contracts/shared/IPolicyHolder.sol +23 -14
 - package/contracts/shared/IRegisterable.sol +23 -1
 - package/contracts/shared/IRegistryLinked.sol +0 -1
 - package/contracts/shared/IService.sol +13 -5
 - package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +12 -4
 - package/contracts/shared/InstanceLinkedComponent.sol +195 -0
 - package/contracts/shared/KeyValueStore.sol +131 -0
 - package/contracts/shared/Lifecycle.sol +88 -0
 - package/contracts/shared/NftIdSet.sol +65 -0
 - package/contracts/shared/NftOwnable.sol +34 -27
 - package/contracts/shared/PolicyHolder.sol +22 -41
 - package/contracts/shared/Registerable.sol +52 -20
 - package/contracts/shared/RegistryLinked.sol +9 -19
 - package/contracts/shared/Service.sol +34 -40
 - package/contracts/shared/TokenHandler.sol +322 -13
 - package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
 - package/contracts/staking/IStaking.sol +179 -0
 - package/contracts/staking/IStakingService.sol +172 -0
 - package/contracts/staking/Staking.sol +546 -0
 - package/contracts/staking/StakingLib.sol +281 -0
 - package/contracts/staking/StakingLifecycle.sol +23 -0
 - package/contracts/staking/StakingManager.sol +52 -0
 - package/contracts/staking/StakingReader.sol +180 -0
 - package/contracts/staking/StakingService.sol +464 -0
 - package/contracts/staking/StakingServiceManager.sol +45 -0
 - package/contracts/staking/StakingStore.sol +606 -0
 - package/contracts/staking/TargetManagerLib.sol +211 -0
 - package/contracts/{types → type}/AddressSet.sol +1 -1
 - package/contracts/type/Amount.sol +150 -0
 - package/contracts/{types → type}/Blocknumber.sol +26 -3
 - package/contracts/{types → type}/ClaimId.sol +31 -3
 - package/contracts/{types → type}/Fee.sol +28 -26
 - package/contracts/{types → type}/Key32.sol +2 -2
 - package/contracts/type/Key32Set.sol +62 -0
 - package/contracts/{types → type}/NftId.sol +21 -16
 - package/contracts/{types → type}/NftIdSet.sol +2 -2
 - package/contracts/type/ObjectType.sol +307 -0
 - package/contracts/type/PayoutId.sol +82 -0
 - package/contracts/{types → type}/Referral.sol +2 -1
 - package/contracts/type/RequestId.sol +75 -0
 - package/contracts/type/RiskId.sol +75 -0
 - package/contracts/type/RoleId.sol +180 -0
 - package/contracts/type/Seconds.sol +101 -0
 - package/contracts/type/Selector.sol +107 -0
 - package/contracts/{types → type}/StateId.sol +47 -4
 - package/contracts/type/String.sol +53 -0
 - package/contracts/{types → type}/Timestamp.sol +20 -6
 - package/contracts/type/UFixed.sol +262 -0
 - package/contracts/{types → type}/Version.sol +58 -7
 - package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
 - package/contracts/{shared → upgradeability}/ProxyManager.sol +104 -39
 - package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
 - package/contracts/{shared → upgradeability}/Versionable.sol +7 -4
 - package/package.json +12 -8
 - 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/BundleManager.sol/BundleManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
 - 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 -1348
 - 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/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -237
 - 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 -1039
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -673
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1231
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -817
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1798
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
 - 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 -1092
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
 - 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/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
 - 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 -161
 - 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 -100
 - 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 -100
 - 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/StateId.sol/StateIdLib.json +0 -92
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
 - 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/Distribution.sol +0 -280
 - package/contracts/components/IComponent.sol +0 -76
 - 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 -303
 - package/contracts/components/Product.sol +0 -293
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
 - package/contracts/instance/BundleManager.sol +0 -127
 - package/contracts/instance/Cloneable.sol +0 -51
 - package/contracts/instance/InstanceAccessManager.sol +0 -540
 - package/contracts/instance/ObjectManager.sol +0 -82
 - package/contracts/instance/base/ComponentService.sol +0 -121
 - package/contracts/instance/base/KeyValueStore.sol +0 -180
 - package/contracts/instance/base/Lifecycle.sol +0 -109
 - package/contracts/instance/module/IAccess.sol +0 -54
 - package/contracts/instance/module/ISetup.sol +0 -33
 - package/contracts/instance/module/ITreasury.sol +0 -23
 - package/contracts/instance/service/ApplicationService.sol +0 -351
 - package/contracts/instance/service/BundleService.sol +0 -431
 - package/contracts/instance/service/BundleServiceManager.sol +0 -51
 - package/contracts/instance/service/ClaimService.sol +0 -151
 - package/contracts/instance/service/DistributionService.sol +0 -437
 - package/contracts/instance/service/DistributionServiceManager.sol +0 -51
 - package/contracts/instance/service/IClaimService.sol +0 -61
 - package/contracts/instance/service/IDistributionService.sol +0 -99
 - package/contracts/instance/service/IPolicyService.sol +0 -72
 - package/contracts/instance/service/IPoolService.sol +0 -99
 - package/contracts/instance/service/IProductService.sol +0 -40
 - package/contracts/instance/service/PolicyService.sol +0 -362
 - 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 -209
 - package/contracts/instance/service/ProductServiceManager.sol +0 -54
 - package/contracts/registry/RegistryAccessManager.sol +0 -216
 - package/contracts/registry/ReleaseManager.sol +0 -324
 - 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/TestToken.sol +0 -26
 - package/contracts/test/TestVersion.sol +0 -44
 - package/contracts/test/TestVersionable.sol +0 -17
 - package/contracts/types/Amount.sol +0 -60
 - package/contracts/types/ChainId.sol +0 -38
 - package/contracts/types/NumberId.sol +0 -52
 - package/contracts/types/ObjectType.sol +0 -157
 - package/contracts/types/PayoutId.sol +0 -54
 - package/contracts/types/RiskId.sol +0 -43
 - package/contracts/types/RoleId.sol +0 -97
 - package/contracts/types/Seconds.sol +0 -54
 - package/contracts/types/UFixed.sol +0 -326
 - /package/contracts/{types → type}/DistributorType.sol +0 -0
 
| 
         @@ -0,0 +1,2002 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "FireProduct",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/examples/fire/FireProduct.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    },
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "instanceNftid",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    },
         
     | 
| 
      
 18 
     | 
    
         
            +
                    {
         
     | 
| 
      
 19 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "name": "componentName",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 22 
     | 
    
         
            +
                    },
         
     | 
| 
      
 23 
     | 
    
         
            +
                    {
         
     | 
| 
      
 24 
     | 
    
         
            +
                      "internalType": "contract IAuthorization",
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 27 
     | 
    
         
            +
                    }
         
     | 
| 
      
 28 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 29 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "type": "constructor"
         
     | 
| 
      
 31 
     | 
    
         
            +
                },
         
     | 
| 
      
 32 
     | 
    
         
            +
                {
         
     | 
| 
      
 33 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 34 
     | 
    
         
            +
                    {
         
     | 
| 
      
 35 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 38 
     | 
    
         
            +
                    }
         
     | 
| 
      
 39 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 40 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 42 
     | 
    
         
            +
                },
         
     | 
| 
      
 43 
     | 
    
         
            +
                {
         
     | 
| 
      
 44 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 45 
     | 
    
         
            +
                    {
         
     | 
| 
      
 46 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 49 
     | 
    
         
            +
                    },
         
     | 
| 
      
 50 
     | 
    
         
            +
                    {
         
     | 
| 
      
 51 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 54 
     | 
    
         
            +
                    }
         
     | 
| 
      
 55 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 58 
     | 
    
         
            +
                },
         
     | 
| 
      
 59 
     | 
    
         
            +
                {
         
     | 
| 
      
 60 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 61 
     | 
    
         
            +
                    {
         
     | 
| 
      
 62 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 65 
     | 
    
         
            +
                    }
         
     | 
| 
      
 66 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 69 
     | 
    
         
            +
                },
         
     | 
| 
      
 70 
     | 
    
         
            +
                {
         
     | 
| 
      
 71 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 72 
     | 
    
         
            +
                    {
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 76 
     | 
    
         
            +
                    }
         
     | 
| 
      
 77 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "name": "ErrorAuthorityInvalid",
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 80 
     | 
    
         
            +
                },
         
     | 
| 
      
 81 
     | 
    
         
            +
                {
         
     | 
| 
      
 82 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "name": "ErrorComponentNameLengthZero",
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 85 
     | 
    
         
            +
                },
         
     | 
| 
      
 86 
     | 
    
         
            +
                {
         
     | 
| 
      
 87 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 88 
     | 
    
         
            +
                    {
         
     | 
| 
      
 89 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 90 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 91 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 92 
     | 
    
         
            +
                    }
         
     | 
| 
      
 93 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "name": "ErrorComponentNotChainNft",
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 96 
     | 
    
         
            +
                },
         
     | 
| 
      
 97 
     | 
    
         
            +
                {
         
     | 
| 
      
 98 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "name": "ErrorComponentProductNftIdNonzero",
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 101 
     | 
    
         
            +
                },
         
     | 
| 
      
 102 
     | 
    
         
            +
                {
         
     | 
| 
      
 103 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "name": "ErrorComponentProductNftIdZero",
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 106 
     | 
    
         
            +
                },
         
     | 
| 
      
 107 
     | 
    
         
            +
                {
         
     | 
| 
      
 108 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 109 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         
     | 
| 
      
 110 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 111 
     | 
    
         
            +
                },
         
     | 
| 
      
 112 
     | 
    
         
            +
                {
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 114 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressZero",
         
     | 
| 
      
 115 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 116 
     | 
    
         
            +
                },
         
     | 
| 
      
 117 
     | 
    
         
            +
                {
         
     | 
| 
      
 118 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 119 
     | 
    
         
            +
                  "name": "ErrorComponentWalletNotComponent",
         
     | 
| 
      
 120 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 121 
     | 
    
         
            +
                },
         
     | 
| 
      
 122 
     | 
    
         
            +
                {
         
     | 
| 
      
 123 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 124 
     | 
    
         
            +
                  "name": "ErrorFireProductAlreadyClaimed",
         
     | 
| 
      
 125 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 126 
     | 
    
         
            +
                },
         
     | 
| 
      
 127 
     | 
    
         
            +
                {
         
     | 
| 
      
 128 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 129 
     | 
    
         
            +
                    {
         
     | 
| 
      
 130 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 131 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 132 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 133 
     | 
    
         
            +
                    }
         
     | 
| 
      
 134 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 135 
     | 
    
         
            +
                  "name": "ErrorFireProductCityUnknown",
         
     | 
| 
      
 136 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 137 
     | 
    
         
            +
                },
         
     | 
| 
      
 138 
     | 
    
         
            +
                {
         
     | 
| 
      
 139 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 140 
     | 
    
         
            +
                  "name": "ErrorFireProductFireAlreadyReported",
         
     | 
| 
      
 141 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 142 
     | 
    
         
            +
                },
         
     | 
| 
      
 143 
     | 
    
         
            +
                {
         
     | 
| 
      
 144 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 145 
     | 
    
         
            +
                    {
         
     | 
| 
      
 146 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 147 
     | 
    
         
            +
                      "name": "fireId",
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 149 
     | 
    
         
            +
                    },
         
     | 
| 
      
 150 
     | 
    
         
            +
                    {
         
     | 
| 
      
 151 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 152 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 153 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 154 
     | 
    
         
            +
                    }
         
     | 
| 
      
 155 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 156 
     | 
    
         
            +
                  "name": "ErrorFireProductFireNotInCoveredCity",
         
     | 
| 
      
 157 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 158 
     | 
    
         
            +
                },
         
     | 
| 
      
 159 
     | 
    
         
            +
                {
         
     | 
| 
      
 160 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 161 
     | 
    
         
            +
                    {
         
     | 
| 
      
 162 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 163 
     | 
    
         
            +
                      "name": "fireId",
         
     | 
| 
      
 164 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 165 
     | 
    
         
            +
                    }
         
     | 
| 
      
 166 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 167 
     | 
    
         
            +
                  "name": "ErrorFireProductFireUnknown",
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 169 
     | 
    
         
            +
                },
         
     | 
| 
      
 170 
     | 
    
         
            +
                {
         
     | 
| 
      
 171 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 172 
     | 
    
         
            +
                    {
         
     | 
| 
      
 173 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 174 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 175 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 176 
     | 
    
         
            +
                    },
         
     | 
| 
      
 177 
     | 
    
         
            +
                    {
         
     | 
| 
      
 178 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 179 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 180 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 181 
     | 
    
         
            +
                    }
         
     | 
| 
      
 182 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 183 
     | 
    
         
            +
                  "name": "ErrorFireProductNotPolicyOwner",
         
     | 
| 
      
 184 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 185 
     | 
    
         
            +
                },
         
     | 
| 
      
 186 
     | 
    
         
            +
                {
         
     | 
| 
      
 187 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 188 
     | 
    
         
            +
                    {
         
     | 
| 
      
 189 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 190 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 191 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 192 
     | 
    
         
            +
                    },
         
     | 
| 
      
 193 
     | 
    
         
            +
                    {
         
     | 
| 
      
 194 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 195 
     | 
    
         
            +
                      "name": "expiredAt",
         
     | 
| 
      
 196 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 197 
     | 
    
         
            +
                    }
         
     | 
| 
      
 198 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 199 
     | 
    
         
            +
                  "name": "ErrorFireProductPolicyExpired",
         
     | 
| 
      
 200 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 201 
     | 
    
         
            +
                },
         
     | 
| 
      
 202 
     | 
    
         
            +
                {
         
     | 
| 
      
 203 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 204 
     | 
    
         
            +
                    {
         
     | 
| 
      
 205 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 206 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 207 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 208 
     | 
    
         
            +
                    }
         
     | 
| 
      
 209 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 210 
     | 
    
         
            +
                  "name": "ErrorFireProductPolicyNotActive",
         
     | 
| 
      
 211 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 212 
     | 
    
         
            +
                },
         
     | 
| 
      
 213 
     | 
    
         
            +
                {
         
     | 
| 
      
 214 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 215 
     | 
    
         
            +
                    {
         
     | 
| 
      
 216 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 217 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 218 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 219 
     | 
    
         
            +
                    },
         
     | 
| 
      
 220 
     | 
    
         
            +
                    {
         
     | 
| 
      
 221 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 222 
     | 
    
         
            +
                      "name": "activateAt",
         
     | 
| 
      
 223 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 224 
     | 
    
         
            +
                    }
         
     | 
| 
      
 225 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 226 
     | 
    
         
            +
                  "name": "ErrorFireProductPolicyNotYetActive",
         
     | 
| 
      
 227 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 228 
     | 
    
         
            +
                },
         
     | 
| 
      
 229 
     | 
    
         
            +
                {
         
     | 
| 
      
 230 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 231 
     | 
    
         
            +
                  "name": "ErrorFireProductTimestampInFuture",
         
     | 
| 
      
 232 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 233 
     | 
    
         
            +
                },
         
     | 
| 
      
 234 
     | 
    
         
            +
                {
         
     | 
| 
      
 235 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 236 
     | 
    
         
            +
                    {
         
     | 
| 
      
 237 
     | 
    
         
            +
                      "internalType": "DamageLevel",
         
     | 
| 
      
 238 
     | 
    
         
            +
                      "name": "damageLevel",
         
     | 
| 
      
 239 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 240 
     | 
    
         
            +
                    }
         
     | 
| 
      
 241 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 242 
     | 
    
         
            +
                  "name": "ErrorFireProductUnknownDamageLevel",
         
     | 
| 
      
 243 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 244 
     | 
    
         
            +
                },
         
     | 
| 
      
 245 
     | 
    
         
            +
                {
         
     | 
| 
      
 246 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 247 
     | 
    
         
            +
                    {
         
     | 
| 
      
 248 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 249 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 250 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 251 
     | 
    
         
            +
                    },
         
     | 
| 
      
 252 
     | 
    
         
            +
                    {
         
     | 
| 
      
 253 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 254 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 255 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 256 
     | 
    
         
            +
                    }
         
     | 
| 
      
 257 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 258 
     | 
    
         
            +
                  "name": "ErrorInstanceLinkedComponentNotProduct",
         
     | 
| 
      
 259 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 260 
     | 
    
         
            +
                },
         
     | 
| 
      
 261 
     | 
    
         
            +
                {
         
     | 
| 
      
 262 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 263 
     | 
    
         
            +
                    {
         
     | 
| 
      
 264 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 265 
     | 
    
         
            +
                      "name": "requiredType",
         
     | 
| 
      
 266 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 267 
     | 
    
         
            +
                    },
         
     | 
| 
      
 268 
     | 
    
         
            +
                    {
         
     | 
| 
      
 269 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 270 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 271 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 272 
     | 
    
         
            +
                    }
         
     | 
| 
      
 273 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 274 
     | 
    
         
            +
                  "name": "ErrorInstanceLinkedComponentTypeMismatch",
         
     | 
| 
      
 275 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 276 
     | 
    
         
            +
                },
         
     | 
| 
      
 277 
     | 
    
         
            +
                {
         
     | 
| 
      
 278 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 279 
     | 
    
         
            +
                    {
         
     | 
| 
      
 280 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 281 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 282 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 283 
     | 
    
         
            +
                    }
         
     | 
| 
      
 284 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 285 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 286 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 287 
     | 
    
         
            +
                },
         
     | 
| 
      
 288 
     | 
    
         
            +
                {
         
     | 
| 
      
 289 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 290 
     | 
    
         
            +
                    {
         
     | 
| 
      
 291 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 292 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 293 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 294 
     | 
    
         
            +
                    }
         
     | 
| 
      
 295 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 296 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 297 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 298 
     | 
    
         
            +
                },
         
     | 
| 
      
 299 
     | 
    
         
            +
                {
         
     | 
| 
      
 300 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 301 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 302 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 303 
     | 
    
         
            +
                },
         
     | 
| 
      
 304 
     | 
    
         
            +
                {
         
     | 
| 
      
 305 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 306 
     | 
    
         
            +
                    {
         
     | 
| 
      
 307 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 308 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 309 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 310 
     | 
    
         
            +
                    },
         
     | 
| 
      
 311 
     | 
    
         
            +
                    {
         
     | 
| 
      
 312 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 313 
     | 
    
         
            +
                      "name": "expectedObjectType",
         
     | 
| 
      
 314 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 315 
     | 
    
         
            +
                    }
         
     | 
| 
      
 316 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 317 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInvalidType",
         
     | 
| 
      
 318 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 319 
     | 
    
         
            +
                },
         
     | 
| 
      
 320 
     | 
    
         
            +
                {
         
     | 
| 
      
 321 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 322 
     | 
    
         
            +
                    {
         
     | 
| 
      
 323 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 324 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 325 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 326 
     | 
    
         
            +
                    }
         
     | 
| 
      
 327 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 328 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 330 
     | 
    
         
            +
                },
         
     | 
| 
      
 331 
     | 
    
         
            +
                {
         
     | 
| 
      
 332 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 333 
     | 
    
         
            +
                    {
         
     | 
| 
      
 334 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 335 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 336 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 337 
     | 
    
         
            +
                    }
         
     | 
| 
      
 338 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 339 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 340 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 341 
     | 
    
         
            +
                },
         
     | 
| 
      
 342 
     | 
    
         
            +
                {
         
     | 
| 
      
 343 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 344 
     | 
    
         
            +
                  "name": "ErrorRegisterableNotActive",
         
     | 
| 
      
 345 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 346 
     | 
    
         
            +
                },
         
     | 
| 
      
 347 
     | 
    
         
            +
                {
         
     | 
| 
      
 348 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 349 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 350 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 351 
     | 
    
         
            +
                },
         
     | 
| 
      
 352 
     | 
    
         
            +
                {
         
     | 
| 
      
 353 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 354 
     | 
    
         
            +
                  "name": "MathOverflowedMulDiv",
         
     | 
| 
      
 355 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 356 
     | 
    
         
            +
                },
         
     | 
| 
      
 357 
     | 
    
         
            +
                {
         
     | 
| 
      
 358 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 359 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 360 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 361 
     | 
    
         
            +
                },
         
     | 
| 
      
 362 
     | 
    
         
            +
                {
         
     | 
| 
      
 363 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 364 
     | 
    
         
            +
                  "name": "UFixedLibDivisionByZero",
         
     | 
| 
      
 365 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 366 
     | 
    
         
            +
                },
         
     | 
| 
      
 367 
     | 
    
         
            +
                {
         
     | 
| 
      
 368 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 369 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 370 
     | 
    
         
            +
                    {
         
     | 
| 
      
 371 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 372 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 373 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 374 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 375 
     | 
    
         
            +
                    }
         
     | 
| 
      
 376 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 377 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 378 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 379 
     | 
    
         
            +
                },
         
     | 
| 
      
 380 
     | 
    
         
            +
                {
         
     | 
| 
      
 381 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 382 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 383 
     | 
    
         
            +
                    {
         
     | 
| 
      
 384 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 385 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 386 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 387 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 388 
     | 
    
         
            +
                    }
         
     | 
| 
      
 389 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 390 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 391 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 392 
     | 
    
         
            +
                },
         
     | 
| 
      
 393 
     | 
    
         
            +
                {
         
     | 
| 
      
 394 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 395 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 396 
     | 
    
         
            +
                    {
         
     | 
| 
      
 397 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 398 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 399 
     | 
    
         
            +
                      "name": "tokenHandler",
         
     | 
| 
      
 400 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 401 
     | 
    
         
            +
                    },
         
     | 
| 
      
 402 
     | 
    
         
            +
                    {
         
     | 
| 
      
 403 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 404 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 405 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 406 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 407 
     | 
    
         
            +
                    },
         
     | 
| 
      
 408 
     | 
    
         
            +
                    {
         
     | 
| 
      
 409 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 410 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 411 
     | 
    
         
            +
                      "name": "limit",
         
     | 
| 
      
 412 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 413 
     | 
    
         
            +
                    },
         
     | 
| 
      
 414 
     | 
    
         
            +
                    {
         
     | 
| 
      
 415 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 416 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 417 
     | 
    
         
            +
                      "name": "isMaxAmount",
         
     | 
| 
      
 418 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 419 
     | 
    
         
            +
                    }
         
     | 
| 
      
 420 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 421 
     | 
    
         
            +
                  "name": "LogComponentTokenHandlerApproved",
         
     | 
| 
      
 422 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 423 
     | 
    
         
            +
                },
         
     | 
| 
      
 424 
     | 
    
         
            +
                {
         
     | 
| 
      
 425 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 426 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 427 
     | 
    
         
            +
                    {
         
     | 
| 
      
 428 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 429 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 430 
     | 
    
         
            +
                      "name": "oldWallet",
         
     | 
| 
      
 431 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 432 
     | 
    
         
            +
                    },
         
     | 
| 
      
 433 
     | 
    
         
            +
                    {
         
     | 
| 
      
 434 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 435 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 436 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 437 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 438 
     | 
    
         
            +
                    }
         
     | 
| 
      
 439 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 440 
     | 
    
         
            +
                  "name": "LogComponentWalletAddressChanged",
         
     | 
| 
      
 441 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 442 
     | 
    
         
            +
                },
         
     | 
| 
      
 443 
     | 
    
         
            +
                {
         
     | 
| 
      
 444 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 445 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 446 
     | 
    
         
            +
                    {
         
     | 
| 
      
 447 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 448 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 449 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 450 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 451 
     | 
    
         
            +
                    },
         
     | 
| 
      
 452 
     | 
    
         
            +
                    {
         
     | 
| 
      
 453 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 454 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 455 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 456 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 457 
     | 
    
         
            +
                    },
         
     | 
| 
      
 458 
     | 
    
         
            +
                    {
         
     | 
| 
      
 459 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 460 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 461 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 462 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 463 
     | 
    
         
            +
                    }
         
     | 
| 
      
 464 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 465 
     | 
    
         
            +
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
      
 466 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 467 
     | 
    
         
            +
                },
         
     | 
| 
      
 468 
     | 
    
         
            +
                {
         
     | 
| 
      
 469 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 470 
     | 
    
         
            +
                  "name": "COMPONENT_LOCATION_V1",
         
     | 
| 
      
 471 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 472 
     | 
    
         
            +
                    {
         
     | 
| 
      
 473 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 474 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 475 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 476 
     | 
    
         
            +
                    }
         
     | 
| 
      
 477 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 478 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 479 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 480 
     | 
    
         
            +
                },
         
     | 
| 
      
 481 
     | 
    
         
            +
                {
         
     | 
| 
      
 482 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 483 
     | 
    
         
            +
                  "name": "INSTANCE_LINKED_COMPONENT_LOCATION_V1",
         
     | 
| 
      
 484 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 485 
     | 
    
         
            +
                    {
         
     | 
| 
      
 486 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 487 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 488 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 489 
     | 
    
         
            +
                    }
         
     | 
| 
      
 490 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 491 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 492 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 493 
     | 
    
         
            +
                },
         
     | 
| 
      
 494 
     | 
    
         
            +
                {
         
     | 
| 
      
 495 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 496 
     | 
    
         
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         
     | 
| 
      
 497 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 498 
     | 
    
         
            +
                    {
         
     | 
| 
      
 499 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 500 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 501 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 502 
     | 
    
         
            +
                    }
         
     | 
| 
      
 503 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 504 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 505 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 506 
     | 
    
         
            +
                },
         
     | 
| 
      
 507 
     | 
    
         
            +
                {
         
     | 
| 
      
 508 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 509 
     | 
    
         
            +
                  "name": "PRODUCT_STORAGE_LOCATION_V1",
         
     | 
| 
      
 510 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 511 
     | 
    
         
            +
                    {
         
     | 
| 
      
 512 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 513 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 514 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 515 
     | 
    
         
            +
                    }
         
     | 
| 
      
 516 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 517 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 518 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 519 
     | 
    
         
            +
                },
         
     | 
| 
      
 520 
     | 
    
         
            +
                {
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 522 
     | 
    
         
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
      
 523 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 524 
     | 
    
         
            +
                    {
         
     | 
| 
      
 525 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 528 
     | 
    
         
            +
                    }
         
     | 
| 
      
 529 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 530 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 531 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 532 
     | 
    
         
            +
                },
         
     | 
| 
      
 533 
     | 
    
         
            +
                {
         
     | 
| 
      
 534 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 535 
     | 
    
         
            +
                    {
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 537 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 538 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 539 
     | 
    
         
            +
                    },
         
     | 
| 
      
 540 
     | 
    
         
            +
                    {
         
     | 
| 
      
 541 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 542 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 543 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 544 
     | 
    
         
            +
                    }
         
     | 
| 
      
 545 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 546 
     | 
    
         
            +
                  "name": "approveTokenHandler",
         
     | 
| 
      
 547 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 548 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 549 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 550 
     | 
    
         
            +
                },
         
     | 
| 
      
 551 
     | 
    
         
            +
                {
         
     | 
| 
      
 552 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 553 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 554 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 555 
     | 
    
         
            +
                    {
         
     | 
| 
      
 556 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 557 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 558 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 559 
     | 
    
         
            +
                    }
         
     | 
| 
      
 560 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 561 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 562 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 563 
     | 
    
         
            +
                },
         
     | 
| 
      
 564 
     | 
    
         
            +
                {
         
     | 
| 
      
 565 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 566 
     | 
    
         
            +
                    {
         
     | 
| 
      
 567 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 568 
     | 
    
         
            +
                      "name": "sumInsured",
         
     | 
| 
      
 569 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 570 
     | 
    
         
            +
                    },
         
     | 
| 
      
 571 
     | 
    
         
            +
                    {
         
     | 
| 
      
 572 
     | 
    
         
            +
                      "internalType": "RiskId",
         
     | 
| 
      
 573 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 574 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 575 
     | 
    
         
            +
                    },
         
     | 
| 
      
 576 
     | 
    
         
            +
                    {
         
     | 
| 
      
 577 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
      
 578 
     | 
    
         
            +
                      "name": "lifetime",
         
     | 
| 
      
 579 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 580 
     | 
    
         
            +
                    },
         
     | 
| 
      
 581 
     | 
    
         
            +
                    {
         
     | 
| 
      
 582 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 583 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 584 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 585 
     | 
    
         
            +
                    }
         
     | 
| 
      
 586 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 587 
     | 
    
         
            +
                  "name": "calculateNetPremium",
         
     | 
| 
      
 588 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 589 
     | 
    
         
            +
                    {
         
     | 
| 
      
 590 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 591 
     | 
    
         
            +
                      "name": "netPremiumAmount",
         
     | 
| 
      
 592 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 593 
     | 
    
         
            +
                    }
         
     | 
| 
      
 594 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 595 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 596 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 597 
     | 
    
         
            +
                },
         
     | 
| 
      
 598 
     | 
    
         
            +
                {
         
     | 
| 
      
 599 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 600 
     | 
    
         
            +
                    {
         
     | 
| 
      
 601 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 602 
     | 
    
         
            +
                      "name": "sumInsuredAmount",
         
     | 
| 
      
 603 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 604 
     | 
    
         
            +
                    },
         
     | 
| 
      
 605 
     | 
    
         
            +
                    {
         
     | 
| 
      
 606 
     | 
    
         
            +
                      "internalType": "RiskId",
         
     | 
| 
      
 607 
     | 
    
         
            +
                      "name": "riskId",
         
     | 
| 
      
 608 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 609 
     | 
    
         
            +
                    },
         
     | 
| 
      
 610 
     | 
    
         
            +
                    {
         
     | 
| 
      
 611 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
      
 612 
     | 
    
         
            +
                      "name": "lifetime",
         
     | 
| 
      
 613 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 614 
     | 
    
         
            +
                    },
         
     | 
| 
      
 615 
     | 
    
         
            +
                    {
         
     | 
| 
      
 616 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 617 
     | 
    
         
            +
                      "name": "applicationData",
         
     | 
| 
      
 618 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 619 
     | 
    
         
            +
                    },
         
     | 
| 
      
 620 
     | 
    
         
            +
                    {
         
     | 
| 
      
 621 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 622 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 623 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 624 
     | 
    
         
            +
                    },
         
     | 
| 
      
 625 
     | 
    
         
            +
                    {
         
     | 
| 
      
 626 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 627 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 628 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 629 
     | 
    
         
            +
                    }
         
     | 
| 
      
 630 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 631 
     | 
    
         
            +
                  "name": "calculatePremium",
         
     | 
| 
      
 632 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 633 
     | 
    
         
            +
                    {
         
     | 
| 
      
 634 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 635 
     | 
    
         
            +
                      "name": "premiumAmount",
         
     | 
| 
      
 636 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 637 
     | 
    
         
            +
                    }
         
     | 
| 
      
 638 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 639 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 640 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 641 
     | 
    
         
            +
                },
         
     | 
| 
      
 642 
     | 
    
         
            +
                {
         
     | 
| 
      
 643 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 644 
     | 
    
         
            +
                    {
         
     | 
| 
      
 645 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 646 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 647 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 648 
     | 
    
         
            +
                    },
         
     | 
| 
      
 649 
     | 
    
         
            +
                    {
         
     | 
| 
      
 650 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 651 
     | 
    
         
            +
                      "name": "sumInsured",
         
     | 
| 
      
 652 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 653 
     | 
    
         
            +
                    },
         
     | 
| 
      
 654 
     | 
    
         
            +
                    {
         
     | 
| 
      
 655 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
      
 656 
     | 
    
         
            +
                      "name": "lifetime",
         
     | 
| 
      
 657 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 658 
     | 
    
         
            +
                    },
         
     | 
| 
      
 659 
     | 
    
         
            +
                    {
         
     | 
| 
      
 660 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 661 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 662 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 663 
     | 
    
         
            +
                    }
         
     | 
| 
      
 664 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 665 
     | 
    
         
            +
                  "name": "calculatePremium",
         
     | 
| 
      
 666 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 667 
     | 
    
         
            +
                    {
         
     | 
| 
      
 668 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 669 
     | 
    
         
            +
                      "name": "premiumAmount",
         
     | 
| 
      
 670 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 671 
     | 
    
         
            +
                    }
         
     | 
| 
      
 672 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 673 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 674 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 675 
     | 
    
         
            +
                },
         
     | 
| 
      
 676 
     | 
    
         
            +
                {
         
     | 
| 
      
 677 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 678 
     | 
    
         
            +
                  "name": "cities",
         
     | 
| 
      
 679 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 680 
     | 
    
         
            +
                    {
         
     | 
| 
      
 681 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 682 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 683 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 684 
     | 
    
         
            +
                    }
         
     | 
| 
      
 685 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 686 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 687 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 688 
     | 
    
         
            +
                },
         
     | 
| 
      
 689 
     | 
    
         
            +
                {
         
     | 
| 
      
 690 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 691 
     | 
    
         
            +
                    {
         
     | 
| 
      
 692 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 693 
     | 
    
         
            +
                      "name": "idx",
         
     | 
| 
      
 694 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 695 
     | 
    
         
            +
                    }
         
     | 
| 
      
 696 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 697 
     | 
    
         
            +
                  "name": "city",
         
     | 
| 
      
 698 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 699 
     | 
    
         
            +
                    {
         
     | 
| 
      
 700 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 701 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 702 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 703 
     | 
    
         
            +
                    }
         
     | 
| 
      
 704 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 705 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 706 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 707 
     | 
    
         
            +
                },
         
     | 
| 
      
 708 
     | 
    
         
            +
                {
         
     | 
| 
      
 709 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 710 
     | 
    
         
            +
                    {
         
     | 
| 
      
 711 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 712 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 713 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 714 
     | 
    
         
            +
                    }
         
     | 
| 
      
 715 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 716 
     | 
    
         
            +
                  "name": "close",
         
     | 
| 
      
 717 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 718 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 719 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 720 
     | 
    
         
            +
                },
         
     | 
| 
      
 721 
     | 
    
         
            +
                {
         
     | 
| 
      
 722 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 723 
     | 
    
         
            +
                    {
         
     | 
| 
      
 724 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 725 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 726 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 727 
     | 
    
         
            +
                    },
         
     | 
| 
      
 728 
     | 
    
         
            +
                    {
         
     | 
| 
      
 729 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 730 
     | 
    
         
            +
                      "name": "sumInsured",
         
     | 
| 
      
 731 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 732 
     | 
    
         
            +
                    },
         
     | 
| 
      
 733 
     | 
    
         
            +
                    {
         
     | 
| 
      
 734 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
      
 735 
     | 
    
         
            +
                      "name": "lifetime",
         
     | 
| 
      
 736 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 737 
     | 
    
         
            +
                    },
         
     | 
| 
      
 738 
     | 
    
         
            +
                    {
         
     | 
| 
      
 739 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 740 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 741 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 742 
     | 
    
         
            +
                    }
         
     | 
| 
      
 743 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 744 
     | 
    
         
            +
                  "name": "createApplication",
         
     | 
| 
      
 745 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 746 
     | 
    
         
            +
                    {
         
     | 
| 
      
 747 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 748 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 749 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 750 
     | 
    
         
            +
                    }
         
     | 
| 
      
 751 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 752 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 753 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 754 
     | 
    
         
            +
                },
         
     | 
| 
      
 755 
     | 
    
         
            +
                {
         
     | 
| 
      
 756 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 757 
     | 
    
         
            +
                    {
         
     | 
| 
      
 758 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 759 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 760 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 761 
     | 
    
         
            +
                    },
         
     | 
| 
      
 762 
     | 
    
         
            +
                    {
         
     | 
| 
      
 763 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 764 
     | 
    
         
            +
                      "name": "activateAt",
         
     | 
| 
      
 765 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 766 
     | 
    
         
            +
                    }
         
     | 
| 
      
 767 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 768 
     | 
    
         
            +
                  "name": "createPolicy",
         
     | 
| 
      
 769 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 770 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 771 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 772 
     | 
    
         
            +
                },
         
     | 
| 
      
 773 
     | 
    
         
            +
                {
         
     | 
| 
      
 774 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 775 
     | 
    
         
            +
                    {
         
     | 
| 
      
 776 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 777 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 778 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 779 
     | 
    
         
            +
                    }
         
     | 
| 
      
 780 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 781 
     | 
    
         
            +
                  "name": "decline",
         
     | 
| 
      
 782 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 783 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 784 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 785 
     | 
    
         
            +
                },
         
     | 
| 
      
 786 
     | 
    
         
            +
                {
         
     | 
| 
      
 787 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 788 
     | 
    
         
            +
                    {
         
     | 
| 
      
 789 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 790 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 791 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 792 
     | 
    
         
            +
                    },
         
     | 
| 
      
 793 
     | 
    
         
            +
                    {
         
     | 
| 
      
 794 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 795 
     | 
    
         
            +
                      "name": "expireAt",
         
     | 
| 
      
 796 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 797 
     | 
    
         
            +
                    }
         
     | 
| 
      
 798 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 799 
     | 
    
         
            +
                  "name": "expire",
         
     | 
| 
      
 800 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 801 
     | 
    
         
            +
                    {
         
     | 
| 
      
 802 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 803 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 804 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 805 
     | 
    
         
            +
                    }
         
     | 
| 
      
 806 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 807 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 808 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 809 
     | 
    
         
            +
                },
         
     | 
| 
      
 810 
     | 
    
         
            +
                {
         
     | 
| 
      
 811 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 812 
     | 
    
         
            +
                    {
         
     | 
| 
      
 813 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 814 
     | 
    
         
            +
                      "name": "fireId",
         
     | 
| 
      
 815 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 816 
     | 
    
         
            +
                    }
         
     | 
| 
      
 817 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 818 
     | 
    
         
            +
                  "name": "fire",
         
     | 
| 
      
 819 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 820 
     | 
    
         
            +
                    {
         
     | 
| 
      
 821 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 822 
     | 
    
         
            +
                        {
         
     | 
| 
      
 823 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 824 
     | 
    
         
            +
                          "name": "cityName",
         
     | 
| 
      
 825 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 826 
     | 
    
         
            +
                        },
         
     | 
| 
      
 827 
     | 
    
         
            +
                        {
         
     | 
| 
      
 828 
     | 
    
         
            +
                          "internalType": "DamageLevel",
         
     | 
| 
      
 829 
     | 
    
         
            +
                          "name": "damageLevel",
         
     | 
| 
      
 830 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 831 
     | 
    
         
            +
                        },
         
     | 
| 
      
 832 
     | 
    
         
            +
                        {
         
     | 
| 
      
 833 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 834 
     | 
    
         
            +
                          "name": "reportedAt",
         
     | 
| 
      
 835 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 836 
     | 
    
         
            +
                        }
         
     | 
| 
      
 837 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 838 
     | 
    
         
            +
                      "internalType": "struct FireProduct.Fire",
         
     | 
| 
      
 839 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 840 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 841 
     | 
    
         
            +
                    }
         
     | 
| 
      
 842 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 843 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 844 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 845 
     | 
    
         
            +
                },
         
     | 
| 
      
 846 
     | 
    
         
            +
                {
         
     | 
| 
      
 847 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 848 
     | 
    
         
            +
                  "name": "getAuthorization",
         
     | 
| 
      
 849 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 850 
     | 
    
         
            +
                    {
         
     | 
| 
      
 851 
     | 
    
         
            +
                      "internalType": "contract IAuthorization",
         
     | 
| 
      
 852 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 853 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 854 
     | 
    
         
            +
                    }
         
     | 
| 
      
 855 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 856 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 857 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 858 
     | 
    
         
            +
                },
         
     | 
| 
      
 859 
     | 
    
         
            +
                {
         
     | 
| 
      
 860 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 861 
     | 
    
         
            +
                  "name": "getComponentInfo",
         
     | 
| 
      
 862 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 863 
     | 
    
         
            +
                    {
         
     | 
| 
      
 864 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 865 
     | 
    
         
            +
                        {
         
     | 
| 
      
 866 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 867 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 868 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 869 
     | 
    
         
            +
                        },
         
     | 
| 
      
 870 
     | 
    
         
            +
                        {
         
     | 
| 
      
 871 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 872 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 873 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 874 
     | 
    
         
            +
                        },
         
     | 
| 
      
 875 
     | 
    
         
            +
                        {
         
     | 
| 
      
 876 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 877 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 878 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 879 
     | 
    
         
            +
                        }
         
     | 
| 
      
 880 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 881 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 882 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 883 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 884 
     | 
    
         
            +
                    }
         
     | 
| 
      
 885 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 886 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 887 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 888 
     | 
    
         
            +
                },
         
     | 
| 
      
 889 
     | 
    
         
            +
                {
         
     | 
| 
      
 890 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 891 
     | 
    
         
            +
                  "name": "getInitialComponentInfo",
         
     | 
| 
      
 892 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 893 
     | 
    
         
            +
                    {
         
     | 
| 
      
 894 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 895 
     | 
    
         
            +
                        {
         
     | 
| 
      
 896 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 897 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 898 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 899 
     | 
    
         
            +
                        },
         
     | 
| 
      
 900 
     | 
    
         
            +
                        {
         
     | 
| 
      
 901 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 902 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 903 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 904 
     | 
    
         
            +
                        },
         
     | 
| 
      
 905 
     | 
    
         
            +
                        {
         
     | 
| 
      
 906 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 907 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 908 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 909 
     | 
    
         
            +
                        }
         
     | 
| 
      
 910 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 911 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 912 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 913 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 914 
     | 
    
         
            +
                    }
         
     | 
| 
      
 915 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 916 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 917 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 918 
     | 
    
         
            +
                },
         
     | 
| 
      
 919 
     | 
    
         
            +
                {
         
     | 
| 
      
 920 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 921 
     | 
    
         
            +
                  "name": "getInitialFeeInfo",
         
     | 
| 
      
 922 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 923 
     | 
    
         
            +
                    {
         
     | 
| 
      
 924 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 925 
     | 
    
         
            +
                        {
         
     | 
| 
      
 926 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 927 
     | 
    
         
            +
                            {
         
     | 
| 
      
 928 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 929 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 930 
     | 
    
         
            +
                              "type": "uint160"
         
     | 
| 
      
 931 
     | 
    
         
            +
                            },
         
     | 
| 
      
 932 
     | 
    
         
            +
                            {
         
     | 
| 
      
 933 
     | 
    
         
            +
                              "internalType": "Amount",
         
     | 
| 
      
 934 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 935 
     | 
    
         
            +
                              "type": "uint96"
         
     | 
| 
      
 936 
     | 
    
         
            +
                            }
         
     | 
| 
      
 937 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 938 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 939 
     | 
    
         
            +
                          "name": "productFee",
         
     | 
| 
      
 940 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 941 
     | 
    
         
            +
                        },
         
     | 
| 
      
 942 
     | 
    
         
            +
                        {
         
     | 
| 
      
 943 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 944 
     | 
    
         
            +
                            {
         
     | 
| 
      
 945 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 946 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 947 
     | 
    
         
            +
                              "type": "uint160"
         
     | 
| 
      
 948 
     | 
    
         
            +
                            },
         
     | 
| 
      
 949 
     | 
    
         
            +
                            {
         
     | 
| 
      
 950 
     | 
    
         
            +
                              "internalType": "Amount",
         
     | 
| 
      
 951 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 952 
     | 
    
         
            +
                              "type": "uint96"
         
     | 
| 
      
 953 
     | 
    
         
            +
                            }
         
     | 
| 
      
 954 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 955 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 956 
     | 
    
         
            +
                          "name": "processingFee",
         
     | 
| 
      
 957 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 958 
     | 
    
         
            +
                        },
         
     | 
| 
      
 959 
     | 
    
         
            +
                        {
         
     | 
| 
      
 960 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 961 
     | 
    
         
            +
                            {
         
     | 
| 
      
 962 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 963 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 964 
     | 
    
         
            +
                              "type": "uint160"
         
     | 
| 
      
 965 
     | 
    
         
            +
                            },
         
     | 
| 
      
 966 
     | 
    
         
            +
                            {
         
     | 
| 
      
 967 
     | 
    
         
            +
                              "internalType": "Amount",
         
     | 
| 
      
 968 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 969 
     | 
    
         
            +
                              "type": "uint96"
         
     | 
| 
      
 970 
     | 
    
         
            +
                            }
         
     | 
| 
      
 971 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 972 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 973 
     | 
    
         
            +
                          "name": "distributionFee",
         
     | 
| 
      
 974 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 975 
     | 
    
         
            +
                        },
         
     | 
| 
      
 976 
     | 
    
         
            +
                        {
         
     | 
| 
      
 977 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 978 
     | 
    
         
            +
                            {
         
     | 
| 
      
 979 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 980 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 981 
     | 
    
         
            +
                              "type": "uint160"
         
     | 
| 
      
 982 
     | 
    
         
            +
                            },
         
     | 
| 
      
 983 
     | 
    
         
            +
                            {
         
     | 
| 
      
 984 
     | 
    
         
            +
                              "internalType": "Amount",
         
     | 
| 
      
 985 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 986 
     | 
    
         
            +
                              "type": "uint96"
         
     | 
| 
      
 987 
     | 
    
         
            +
                            }
         
     | 
| 
      
 988 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 989 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 990 
     | 
    
         
            +
                          "name": "minDistributionOwnerFee",
         
     | 
| 
      
 991 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 992 
     | 
    
         
            +
                        },
         
     | 
| 
      
 993 
     | 
    
         
            +
                        {
         
     | 
| 
      
 994 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 995 
     | 
    
         
            +
                            {
         
     | 
| 
      
 996 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 997 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 998 
     | 
    
         
            +
                              "type": "uint160"
         
     | 
| 
      
 999 
     | 
    
         
            +
                            },
         
     | 
| 
      
 1000 
     | 
    
         
            +
                            {
         
     | 
| 
      
 1001 
     | 
    
         
            +
                              "internalType": "Amount",
         
     | 
| 
      
 1002 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 1003 
     | 
    
         
            +
                              "type": "uint96"
         
     | 
| 
      
 1004 
     | 
    
         
            +
                            }
         
     | 
| 
      
 1005 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 1006 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 1007 
     | 
    
         
            +
                          "name": "poolFee",
         
     | 
| 
      
 1008 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 1009 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1010 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1011 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 1012 
     | 
    
         
            +
                            {
         
     | 
| 
      
 1013 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 1014 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 1015 
     | 
    
         
            +
                              "type": "uint160"
         
     | 
| 
      
 1016 
     | 
    
         
            +
                            },
         
     | 
| 
      
 1017 
     | 
    
         
            +
                            {
         
     | 
| 
      
 1018 
     | 
    
         
            +
                              "internalType": "Amount",
         
     | 
| 
      
 1019 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 1020 
     | 
    
         
            +
                              "type": "uint96"
         
     | 
| 
      
 1021 
     | 
    
         
            +
                            }
         
     | 
| 
      
 1022 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 1023 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 1024 
     | 
    
         
            +
                          "name": "stakingFee",
         
     | 
| 
      
 1025 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 1026 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1027 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1028 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 1029 
     | 
    
         
            +
                            {
         
     | 
| 
      
 1030 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 1031 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 1032 
     | 
    
         
            +
                              "type": "uint160"
         
     | 
| 
      
 1033 
     | 
    
         
            +
                            },
         
     | 
| 
      
 1034 
     | 
    
         
            +
                            {
         
     | 
| 
      
 1035 
     | 
    
         
            +
                              "internalType": "Amount",
         
     | 
| 
      
 1036 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 1037 
     | 
    
         
            +
                              "type": "uint96"
         
     | 
| 
      
 1038 
     | 
    
         
            +
                            }
         
     | 
| 
      
 1039 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 1040 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 1041 
     | 
    
         
            +
                          "name": "performanceFee",
         
     | 
| 
      
 1042 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 1043 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1044 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1045 
     | 
    
         
            +
                      "internalType": "struct IComponents.FeeInfo",
         
     | 
| 
      
 1046 
     | 
    
         
            +
                      "name": "feeInfo",
         
     | 
| 
      
 1047 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1048 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1049 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1050 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1051 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1052 
     | 
    
         
            +
                },
         
     | 
| 
      
 1053 
     | 
    
         
            +
                {
         
     | 
| 
      
 1054 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1055 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 1056 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1057 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1058 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1059 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1060 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1061 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 1062 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1063 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1064 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1065 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1066 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 1067 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1068 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1069 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1070 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 1071 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 1072 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1073 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1074 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1075 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1076 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 1077 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1078 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1079 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1080 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1081 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 1082 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1083 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1084 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1085 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1086 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 1087 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1088 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1089 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1090 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1091 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 1092 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1093 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1094 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1095 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 1096 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 1097 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1098 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1099 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1100 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1101 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1102 
     | 
    
         
            +
                },
         
     | 
| 
      
 1103 
     | 
    
         
            +
                {
         
     | 
| 
      
 1104 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1105 
     | 
    
         
            +
                  "name": "getInitialProductInfo",
         
     | 
| 
      
 1106 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1107 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1108 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1109 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1110 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1111 
     | 
    
         
            +
                          "name": "isProcessingFundedClaims",
         
     | 
| 
      
 1112 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1113 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1114 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1115 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1116 
     | 
    
         
            +
                          "name": "isInterceptingPolicyTransfers",
         
     | 
| 
      
 1117 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1118 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1119 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1120 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1121 
     | 
    
         
            +
                          "name": "hasDistribution",
         
     | 
| 
      
 1122 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1123 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1124 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1125 
     | 
    
         
            +
                          "internalType": "uint8",
         
     | 
| 
      
 1126 
     | 
    
         
            +
                          "name": "expectedNumberOfOracles",
         
     | 
| 
      
 1127 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1128 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1129 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1130 
     | 
    
         
            +
                          "internalType": "uint8",
         
     | 
| 
      
 1131 
     | 
    
         
            +
                          "name": "numberOfOracles",
         
     | 
| 
      
 1132 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1133 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1134 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1135 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1136 
     | 
    
         
            +
                          "name": "poolNftId",
         
     | 
| 
      
 1137 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1138 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1139 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1140 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1141 
     | 
    
         
            +
                          "name": "distributionNftId",
         
     | 
| 
      
 1142 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1143 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1144 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1145 
     | 
    
         
            +
                          "internalType": "NftId[]",
         
     | 
| 
      
 1146 
     | 
    
         
            +
                          "name": "oracleNftId",
         
     | 
| 
      
 1147 
     | 
    
         
            +
                          "type": "uint96[]"
         
     | 
| 
      
 1148 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1149 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1150 
     | 
    
         
            +
                      "internalType": "struct IComponents.ProductInfo",
         
     | 
| 
      
 1151 
     | 
    
         
            +
                      "name": "poolInfo",
         
     | 
| 
      
 1152 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1153 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1154 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1155 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1156 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1157 
     | 
    
         
            +
                },
         
     | 
| 
      
 1158 
     | 
    
         
            +
                {
         
     | 
| 
      
 1159 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1160 
     | 
    
         
            +
                  "name": "getInstance",
         
     | 
| 
      
 1161 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1162 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1163 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 1164 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 1165 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1166 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1167 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1168 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1169 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1170 
     | 
    
         
            +
                },
         
     | 
| 
      
 1171 
     | 
    
         
            +
                {
         
     | 
| 
      
 1172 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1173 
     | 
    
         
            +
                  "name": "getName",
         
     | 
| 
      
 1174 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1175 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1176 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1177 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 1178 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1179 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1180 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1181 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1182 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1183 
     | 
    
         
            +
                },
         
     | 
| 
      
 1184 
     | 
    
         
            +
                {
         
     | 
| 
      
 1185 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1186 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 1187 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1188 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1189 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1190 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1191 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1192 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1193 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1194 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1195 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1196 
     | 
    
         
            +
                },
         
     | 
| 
      
 1197 
     | 
    
         
            +
                {
         
     | 
| 
      
 1198 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1199 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 1200 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1201 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1202 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1203 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1204 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1205 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1206 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1207 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1208 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1209 
     | 
    
         
            +
                },
         
     | 
| 
      
 1210 
     | 
    
         
            +
                {
         
     | 
| 
      
 1211 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1212 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 1213 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1214 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1215 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 1216 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1217 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1218 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1219 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1220 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1221 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1222 
     | 
    
         
            +
                },
         
     | 
| 
      
 1223 
     | 
    
         
            +
                {
         
     | 
| 
      
 1224 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1225 
     | 
    
         
            +
                  "name": "getRelease",
         
     | 
| 
      
 1226 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1227 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1228 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 1229 
     | 
    
         
            +
                      "name": "release",
         
     | 
| 
      
 1230 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1231 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1232 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1233 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1234 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1235 
     | 
    
         
            +
                },
         
     | 
| 
      
 1236 
     | 
    
         
            +
                {
         
     | 
| 
      
 1237 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1238 
     | 
    
         
            +
                  "name": "getToken",
         
     | 
| 
      
 1239 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1240 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1241 
     | 
    
         
            +
                      "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 1242 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 1243 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1244 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1245 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1246 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1247 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1248 
     | 
    
         
            +
                },
         
     | 
| 
      
 1249 
     | 
    
         
            +
                {
         
     | 
| 
      
 1250 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1251 
     | 
    
         
            +
                  "name": "getTokenHandler",
         
     | 
| 
      
 1252 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1253 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1254 
     | 
    
         
            +
                      "internalType": "contract TokenHandler",
         
     | 
| 
      
 1255 
     | 
    
         
            +
                      "name": "tokenHandler",
         
     | 
| 
      
 1256 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1257 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1258 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1259 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1260 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1261 
     | 
    
         
            +
                },
         
     | 
| 
      
 1262 
     | 
    
         
            +
                {
         
     | 
| 
      
 1263 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1264 
     | 
    
         
            +
                  "name": "getVersion",
         
     | 
| 
      
 1265 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1266 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1267 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 1268 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 1269 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 1270 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1271 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1272 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1273 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1274 
     | 
    
         
            +
                },
         
     | 
| 
      
 1275 
     | 
    
         
            +
                {
         
     | 
| 
      
 1276 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1277 
     | 
    
         
            +
                  "name": "getWallet",
         
     | 
| 
      
 1278 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1279 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1280 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1281 
     | 
    
         
            +
                      "name": "walletAddress",
         
     | 
| 
      
 1282 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1283 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1284 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1285 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1286 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1287 
     | 
    
         
            +
                },
         
     | 
| 
      
 1288 
     | 
    
         
            +
                {
         
     | 
| 
      
 1289 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1290 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1291 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1292 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 1293 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1294 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1295 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1296 
     | 
    
         
            +
                  "name": "initializeCity",
         
     | 
| 
      
 1297 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1298 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1299 
     | 
    
         
            +
                      "internalType": "RiskId",
         
     | 
| 
      
 1300 
     | 
    
         
            +
                      "name": "risk",
         
     | 
| 
      
 1301 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 1302 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1303 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1304 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1305 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1306 
     | 
    
         
            +
                },
         
     | 
| 
      
 1307 
     | 
    
         
            +
                {
         
     | 
| 
      
 1308 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1309 
     | 
    
         
            +
                  "name": "isActive",
         
     | 
| 
      
 1310 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1311 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1312 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1313 
     | 
    
         
            +
                      "name": "active",
         
     | 
| 
      
 1314 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1315 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1316 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1317 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1318 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1319 
     | 
    
         
            +
                },
         
     | 
| 
      
 1320 
     | 
    
         
            +
                {
         
     | 
| 
      
 1321 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1322 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 1323 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1324 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1325 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1326 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1327 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1328 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1329 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1330 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1331 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1332 
     | 
    
         
            +
                },
         
     | 
| 
      
 1333 
     | 
    
         
            +
                {
         
     | 
| 
      
 1334 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1335 
     | 
    
         
            +
                  "name": "isNftInterceptor",
         
     | 
| 
      
 1336 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1337 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1338 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1339 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 1340 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1341 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1342 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1343 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1344 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1345 
     | 
    
         
            +
                },
         
     | 
| 
      
 1346 
     | 
    
         
            +
                {
         
     | 
| 
      
 1347 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1348 
     | 
    
         
            +
                  "name": "isRegistered",
         
     | 
| 
      
 1349 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1350 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1351 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1352 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1353 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1354 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1355 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1356 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1357 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1358 
     | 
    
         
            +
                },
         
     | 
| 
      
 1359 
     | 
    
         
            +
                {
         
     | 
| 
      
 1360 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1361 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 1362 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1363 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1364 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1365 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 1366 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1367 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1368 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1369 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1370 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1371 
     | 
    
         
            +
                },
         
     | 
| 
      
 1372 
     | 
    
         
            +
                {
         
     | 
| 
      
 1373 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1374 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1375 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1376 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 1377 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1378 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1379 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1380 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1381 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 1382 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1383 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1384 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1385 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1386 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 1387 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1388 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1389 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1390 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1391 
     | 
    
         
            +
                      "name": "operator",
         
     | 
| 
      
 1392 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1393 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1394 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1395 
     | 
    
         
            +
                  "name": "nftTransferFrom",
         
     | 
| 
      
 1396 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1397 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1398 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1399 
     | 
    
         
            +
                },
         
     | 
| 
      
 1400 
     | 
    
         
            +
                {
         
     | 
| 
      
 1401 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1402 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1403 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1404 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 1405 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1406 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1407 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1408 
     | 
    
         
            +
                  "name": "pauseCity",
         
     | 
| 
      
 1409 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1410 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1411 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1412 
     | 
    
         
            +
                },
         
     | 
| 
      
 1413 
     | 
    
         
            +
                {
         
     | 
| 
      
 1414 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1415 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1416 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1417 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 1418 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1419 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1420 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1421 
     | 
    
         
            +
                      "internalType": "ClaimId",
         
     | 
| 
      
 1422 
     | 
    
         
            +
                      "name": "claimId",
         
     | 
| 
      
 1423 
     | 
    
         
            +
                      "type": "uint16"
         
     | 
| 
      
 1424 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1425 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1426 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 1427 
     | 
    
         
            +
                      "name": "availableAmount",
         
     | 
| 
      
 1428 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1429 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1430 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1431 
     | 
    
         
            +
                  "name": "processFundedClaim",
         
     | 
| 
      
 1432 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1433 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1434 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1435 
     | 
    
         
            +
                },
         
     | 
| 
      
 1436 
     | 
    
         
            +
                {
         
     | 
| 
      
 1437 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1438 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1439 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1440 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
      
 1441 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1442 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1443 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1444 
     | 
    
         
            +
                  "name": "registerComponent",
         
     | 
| 
      
 1445 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1446 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1447 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1448 
     | 
    
         
            +
                      "name": "componentNftId",
         
     | 
| 
      
 1449 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1450 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1451 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1452 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1453 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1454 
     | 
    
         
            +
                },
         
     | 
| 
      
 1455 
     | 
    
         
            +
                {
         
     | 
| 
      
 1456 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1457 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1458 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1459 
     | 
    
         
            +
                      "name": "fireId",
         
     | 
| 
      
 1460 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1461 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1462 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1463 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1464 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 1465 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1466 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1467 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1468 
     | 
    
         
            +
                      "internalType": "DamageLevel",
         
     | 
| 
      
 1469 
     | 
    
         
            +
                      "name": "damageLevel",
         
     | 
| 
      
 1470 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 1471 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1472 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1473 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 1474 
     | 
    
         
            +
                      "name": "reportedAt",
         
     | 
| 
      
 1475 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 1476 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1477 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1478 
     | 
    
         
            +
                  "name": "reportFire",
         
     | 
| 
      
 1479 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1480 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1481 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1482 
     | 
    
         
            +
                },
         
     | 
| 
      
 1483 
     | 
    
         
            +
                {
         
     | 
| 
      
 1484 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1485 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1486 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1487 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 1488 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1489 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1490 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1491 
     | 
    
         
            +
                  "name": "riskId",
         
     | 
| 
      
 1492 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1493 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1494 
     | 
    
         
            +
                      "internalType": "RiskId",
         
     | 
| 
      
 1495 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1496 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 1497 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1498 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1499 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1500 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1501 
     | 
    
         
            +
                },
         
     | 
| 
      
 1502 
     | 
    
         
            +
                {
         
     | 
| 
      
 1503 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1504 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1505 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1506 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 1507 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1508 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1509 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1510 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 1511 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1512 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1513 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1514 
     | 
    
         
            +
                },
         
     | 
| 
      
 1515 
     | 
    
         
            +
                {
         
     | 
| 
      
 1516 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1517 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1518 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1519 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1520 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1521 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 1522 
     | 
    
         
            +
                          "type": "uint160"
         
     | 
| 
      
 1523 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1524 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1525 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 1526 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 1527 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1528 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1529 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1530 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 1531 
     | 
    
         
            +
                      "name": "productFee",
         
     | 
| 
      
 1532 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1533 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1534 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1535 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1536 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1537 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1538 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 1539 
     | 
    
         
            +
                          "type": "uint160"
         
     | 
| 
      
 1540 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1541 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1542 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 1543 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 1544 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1545 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1546 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1547 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 1548 
     | 
    
         
            +
                      "name": "processingFee",
         
     | 
| 
      
 1549 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1550 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1551 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1552 
     | 
    
         
            +
                  "name": "setFees",
         
     | 
| 
      
 1553 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1554 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1555 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1556 
     | 
    
         
            +
                },
         
     | 
| 
      
 1557 
     | 
    
         
            +
                {
         
     | 
| 
      
 1558 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1559 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1560 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1561 
     | 
    
         
            +
                      "name": "locked",
         
     | 
| 
      
 1562 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1563 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1564 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1565 
     | 
    
         
            +
                  "name": "setLocked",
         
     | 
| 
      
 1566 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1567 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1568 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1569 
     | 
    
         
            +
                },
         
     | 
| 
      
 1570 
     | 
    
         
            +
                {
         
     | 
| 
      
 1571 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1572 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1573 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1574 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 1575 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1576 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1577 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1578 
     | 
    
         
            +
                  "name": "setWallet",
         
     | 
| 
      
 1579 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1580 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1581 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1582 
     | 
    
         
            +
                },
         
     | 
| 
      
 1583 
     | 
    
         
            +
                {
         
     | 
| 
      
 1584 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1585 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1586 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1587 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 1588 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1589 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1590 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1591 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1592 
     | 
    
         
            +
                      "name": "fireId",
         
     | 
| 
      
 1593 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1594 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1595 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1596 
     | 
    
         
            +
                  "name": "submitClaim",
         
     | 
| 
      
 1597 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1598 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1599 
     | 
    
         
            +
                      "internalType": "ClaimId",
         
     | 
| 
      
 1600 
     | 
    
         
            +
                      "name": "claimId",
         
     | 
| 
      
 1601 
     | 
    
         
            +
                      "type": "uint16"
         
     | 
| 
      
 1602 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1603 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1604 
     | 
    
         
            +
                      "internalType": "PayoutId",
         
     | 
| 
      
 1605 
     | 
    
         
            +
                      "name": "payoutId",
         
     | 
| 
      
 1606 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 1607 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1608 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1609 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1610 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1611 
     | 
    
         
            +
                },
         
     | 
| 
      
 1612 
     | 
    
         
            +
                {
         
     | 
| 
      
 1613 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1614 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1615 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1616 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 1617 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1618 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1619 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1620 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 1621 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1622 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1623 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1624 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1625 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1626 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1627 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1628 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1629 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1630 
     | 
    
         
            +
                },
         
     | 
| 
      
 1631 
     | 
    
         
            +
                {
         
     | 
| 
      
 1632 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1633 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1634 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1635 
     | 
    
         
            +
                      "name": "cityName",
         
     | 
| 
      
 1636 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1637 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1638 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1639 
     | 
    
         
            +
                  "name": "unpauseCity",
         
     | 
| 
      
 1640 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1641 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1642 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1643 
     | 
    
         
            +
                },
         
     | 
| 
      
 1644 
     | 
    
         
            +
                {
         
     | 
| 
      
 1645 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1646 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1647 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 1648 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 1649 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1650 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1651 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1652 
     | 
    
         
            +
                  "name": "withdrawFees",
         
     | 
| 
      
 1653 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1654 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1655 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 1656 
     | 
    
         
            +
                      "name": "withdrawnAmount",
         
     | 
| 
      
 1657 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1658 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1659 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1660 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1661 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1662 
     | 
    
         
            +
                }
         
     | 
| 
      
 1663 
     | 
    
         
            +
              ],
         
     | 
| 
      
 1664 
     | 
    
         
            +
              "bytecode": "0x608060405234801561000f575f80fd5b50604051616dd1380380616dd183398101604081905261002e91611483565b3361003c8585858585610046565b5050505050611824565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03165f8115801561008f5750825b90505f826001600160401b031660011480156100aa5750303b155b9050811580156100b8575080155b156100d65760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561010457845460ff60401b1916680100000000000000001785555b6105788a8a8a6040518061010001604052805f151581526020015f151581526020015f151581526020015f60ff1681526020015f60ff16815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610187573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101ab9190611508565b6001600160601b0316815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610200573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102249190611508565b6001600160601b031681526020015f60405190808252806020026020018201604052801561025c578160200160208202803683370190505b508152506040518060e0016040528073__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af41580156102b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102d59190611523565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015610320573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103449190611523565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af415801561038f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103b39190611523565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af41580156103fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104229190611523565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af415801561046d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104919190611523565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af41580156104dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105009190611523565b815260200173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af415801561054b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061056f9190611523565b90528c8c6105ca565b83156105be57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050505050565b6105d26105ff565b6105f68787878787878760405180602001604052805f81525061064f60201b60201c565b50505050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661064d57604051631afcd79f60e31b815260040160405180910390fd5b565b6106576105ff565b61066d888888600c60208a01518890888861095e565b5f7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6800865181546020808a015160408b015160608c015160808d015160a08e015160c08f015161ffff1990971697151561ff00191697909717610100941515949094029390931763ffff00001916620100009215159290920263ff000000191691909117630100000060ff9283160217600160201b600160881b0319166401000000009190921602600160281b600160881b03191617650100000000006001600160601b039485160217600160881b600160e81b031916600160881b939092169290920217825560e08801518051929350889284926107729260018501929101906112c6565b5050855180516020918201516001600160601b03908116600160a01b9081026001600160a01b03938416176002870155838a01518051908501518316820290841617600387015560408a01518051908501518316820290841617600487015560608a01518051908501518316820290841617600587015560808a01518051908501518316820290841617600687015560a08a01518051908501518316820290841617600787015560c08a015180519401519091160291161760088301555061084061083b602c90565b610b92565b600a820180546001600160a01b0319166001600160a01b039290921691909117905561086d61083b601490565b600b820180546001600160a01b0319166001600160a01b039290921691909117905561089a61083b601590565b600c820180546001600160a01b0319166001600160a01b03929092169190911790556108c761083b602d90565b600d820180546001600160a01b0319166001600160a01b03929092169190911790556108f461083b602a90565b600e820180546001600160a01b0319166001600160a01b039290921691909117905561092161083b600b90565b6009820180546001600160a01b0319166001600160a01b0392909216919091179055610953630cdf80bd60e31b610c29565b505050505050505050565b6109666105ff565b5f610972898988610c5c565b90505f7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0060405163bf8e179760e01b81526001600160601b03841660048201529091506001600160a01b038b169063bf8e179790602401602060405180830381865afa1580156109e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a089190611581565b81546001600160a01b0319166001600160a01b039190911690811782556040805163bf7e214f60e01b81529051610aa7929163bf7e214f9160048083019260209291908290030181865afa158015610a62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a869190611581565b8b8b8b8b8a8a60405180602001604052805f8152508b610d0760201b60201c565b8054604080516302cd307160e01b815290516001600160a01b03909216916302cd3071916004808201926020929091908290030181865afa158015610aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b129190611581565b6001820180546001600160a01b03199081166001600160a01b0393841617909155600283018054909116918816919091179055610b5061083b600b90565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055610b82634a531f3360e01b610c29565b6105be63a9c1bc6f60e01b610c29565b5f610ba56001546001600160a01b031690565b6001600160a01b031663d39e604383610bbc610dd7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015610bff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c239190611581565b92915050565b610c316105ff565b610c59816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b5f60ff8216600c03610c7d57610c748484600a610e6d565b50829050610d00565b5f610c8a8585600c610e6d565b60405163677d3feb60e11b81526001600160601b03861660048201529091506001600160a01b0382169063cefa7fd690602401602060405180830381865afa158015610cd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfc9190611508565b9150505b9392505050565b610d0f6105ff565b85515f03610d305760405163591eebf360e11b815260040160405180910390fd5b610d3f89898988888888610f37565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0080610d6b8882611620565b5060018101805460ff191686151517905560028101610d8a8382611620565b50610d95600b610b92565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055610dc7634a531f3360e01b610c29565b6105be6306e9e5ff60e31b610c29565b5f610e097ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00546001600160a01b031690565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e6891906116f3565b905090565b6040516305247a1760e51b81526001600160601b038316600482015283905f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015610ebb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610ee2919081019061173b565b9050610ef981604001518460ff9081169116141590565b15610f2f57604080820151905163b0c1f6eb60e01b815260ff808616600483015290911660248201526044015b60405180910390fd5b509392505050565b610f3f6105ff565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015610f95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fb9919061180b565b610fe15760405163cf6935e560e01b81526001600160a01b0388166004820152602401610f26565b610fea8761108b565b610ff4868361109c565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d0100000000000000000000000000861515021781559050600181016110708382611620565b50611081634a531f3360e01b610c29565b5050505050505050565b6110936105ff565b610c598161112e565b6110a46105ff565b6110ac61113f565b6110b582611187565b6001600160a01b0381166110dc5760405163f17ef42d60e01b815260040160405180910390fd5b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b039093169290920291909117905550565b6111366105ff565b610c5981611253565b6111476105ff565b61064d6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61118f6105ff565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156111e5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611209919061180b565b6112315760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610f26565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b828054828255905f5260205f209060010160029004810192821561136b579160200282015f5b8382111561133657835183826101000a8154816001600160601b0302191690836001600160601b031602179055509260200192600c01602081600b010492830192600103026112ec565b80156113695782816101000a8154906001600160601b030219169055600c01602081600b01049283019260010302611336565b505b5061137792915061137b565b5090565b5b80821115611377575f815560010161137c565b6001600160a01b0381168114610c59575f80fd5b80516113ae8161138f565b919050565b6001600160601b0381168114610c59575f80fd5b80516113ae816113b3565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b0381118282101715611408576114086113d2565b60405290565b5f806001600160401b03841115611427576114276113d2565b50604051601f19601f85018116603f011681018181106001600160401b0382111715611455576114556113d2565b60405283815290508082840185101561146c575f80fd5b8383602083015e5f60208583010152509392505050565b5f805f8060808587031215611496575f80fd5b84516114a18161138f565b60208601519094506114b2816113b3565b60408601519093506001600160401b038111156114cd575f80fd5b8501601f810187136114dd575f80fd5b6114ec8782516020840161140e565b92505060608501516114fd8161138f565b939692955090935050565b5f60208284031215611518575f80fd5b8151610d00816113b3565b5f6040828403128015611534575f80fd5b50604080519081016001600160401b0381118282101715611557576115576113d2565b60405282516115658161138f565b81526020830151611575816113b3565b60208201529392505050565b5f60208284031215611591575f80fd5b8151610d008161138f565b600181811c908216806115b057607f821691505b6020821081036115ce57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561161b57805f5260205f20601f840160051c810160208510156115f95750805b601f840160051c820191505b81811015611618575f8155600101611605565b50505b505050565b81516001600160401b03811115611639576116396113d2565b61164d81611647845461159c565b846115d4565b6020601f82116001811461167f575f83156116685750848201515b5f19600385901b1c1916600184901b178455611618565b5f84815260208120601f198516915b828110156116ae578785015182556020948501946001909201910161168e565b50848210156116cb57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60ff81168114610c59575f80fd5b80516113ae816116da565b5f60208284031215611703575f80fd5b8151610d00816116da565b805180151581146113ae575f80fd5b5f82601f83011261172c575f80fd5b610d008383516020850161140e565b5f6020828403121561174b575f80fd5b81516001600160401b03811115611760575f80fd5b820160e08185031215611771575f80fd5b6117796113e6565b611782826113c7565b8152611790602083016113c7565b60208201526117a1604083016116e8565b60408201526117b26060830161170e565b60608201526117c3608083016113a3565b60808201526117d460a083016113a3565b60a082015260c08201516001600160401b038111156117f1575f80fd5b6117fd8682850161171d565b60c083015250949350505050565b5f6020828403121561181b575f80fd5b610d008261170e565b6155a0806118315f395ff3fe608060405234801561000f575f80fd5b5060043610610333575f3560e01c806376b707b7116101af578063b8bc787e116100fe578063e1f216fa1161009e578063eb0df31911610079578063eb0df319146107a5578063f179d064146107b8578063f29d9cd8146107cb578063f322c70a146107fe575f80fd5b8063e1f216fa14610757578063e9b2460c1461076a578063ea15869f1461077e575f80fd5b8063c9d87e69116100d9578063c9d87e69146106f9578063d8fb257714610701578063de7b5d1414610714578063deaa59df14610744575f80fd5b8063b8bc787e146106c9578063bf7e214f146106dc578063c108bd4c146106e4575f80fd5b806390edbd3511610169578063aa5ae5aa11610144578063aa5ae5aa14610687578063ad12ad601461069a578063ada9652e146106ad578063b423086c146106c1575f80fd5b806390edbd351461064c5780639ffcede914610661578063a7407c7114610674575f80fd5b806376b707b7146105b85780637a9e5e4b146105d25780637baa9a0b146105e5578063844e0f201461060e578063893d20e8146106235780638fb360371461062b575f80fd5b806322366844116102855780635349d2a8116102255780636078a3b2116102005780636078a3b21461055a578063644c45e01461056d57806364854f9b146105755780636bd1c0eb14610588575f80fd5b80635349d2a81461052e5780635741e5e9146105415780635ab1bd5314610549575f80fd5b8063330234fc11610260578063330234fc146104e0578063419197fe1461050057806343d752d3146105135780634545177f1461051b575f80fd5b806322366844146104a957806322f3e2d4146104b15780632eb3e6f4146104b9575f80fd5b806313299604116102f05780631c6b2190116102cb5780631c6b2190146104465780631eff4b2214610459578063211e28b61461048e57806321df0da7146104a1575f80fd5b806313299604146103f1578063138461e01461041157806317d7de7c14610431575f80fd5b806301ffc9a714610337578063034dac63146103785780630aaba8e81461038d5780630bb9b257146103a05780630d8e6e2c146103c05780630fec111c146103dc575b5f80fd5b610363610345366004614099565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61038b61038636600461422e565b610811565b005b61038b61039b3660046142a9565b610ab3565b6103b36103ae3660046142c4565b610b12565b60405161036f9190614309565b6103c8610bfc565b60405162ffffff909116815260200161036f565b6103e4610c83565b60405161036f919061434e565b6103f9610e3d565b6040516001600160a01b03909116815260200161036f565b610419610ea5565b6040516001600160601b03909116815260200161036f565b610439610eaf565b60405161036f91906143da565b6104196104543660046142a9565b610ebf565b6104807f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161036f565b61038b61049c3660046143f9565b610f15565b6103f9610f5c565b610363610fa0565b610363611096565b6104807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6104f36104ee366004614414565b61110d565b60405161036f9190614445565b61038b61050e36600461446e565b61129e565b6103f96112f0565b6104396105293660046142c4565b611302565b61041961053c3660046144ba565b6113ad565b61036361146f565b6001546001600160a01b03166103f9565b61041961056836600461454f565b611525565b6104196115ee565b61041961058336600461456a565b611609565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b03166103f9565b6105c0611747565b60405160ff909116815260200161036f565b61038b6105e036600461454f565b6117af565b6105f86105f33660046145cf565b611831565b60405164ffffffffff909116815260200161036f565b610616611896565b60405161036f919061461c565b6103f9611a6f565b610633611ba0565b6040516001600160e01b0319909116815260200161036f565b610654611bd5565b60405161036f91906146aa565b61038b61066f3660046142a9565b611bfa565b61041961068236600461456a565b611c54565b61038b6106953660046145cf565b611d8e565b61038b6106a83660046146f8565b611dfa565b6104805f805160206154eb83398151915281565b610654611e9c565b6104f36106d7366004614414565b611eac565b6103f9611ebd565b6106ec611ed8565b60405161036f9190614780565b600254610480565b61038b61070f366004614414565b61202c565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b03166103f9565b61038b61075236600461454f565b61212d565b61038b61076536600461481f565b61217a565b6104805f8051602061552b83398151915281565b6104807fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b61038b6107b3366004614414565b612197565b6104196107c6366004614867565b612293565b6107de6107d93660046148d7565b612592565b6040805161ffff909316835264ffffffffff90911660208301520161036f565b61038b61080c366004614961565b612859565b61081d335b5f366128a7565b60038360405161082d91906149ab565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91610883916001600160c01b031960c09290921b9190911690600401614445565b602060405180830381865af415801561089e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c291906149c1565b156108eb57826040516316add56760e21b81526004016108e291906143da565b60405180910390fd5b6109698173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610936573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095a91906149e7565b64ffffffffff90811691161190565b156109875760405163a9f68a6b60e01b815260040160405180910390fd5b5f8481526004602081905260409182902060010154915163790a38ad60e01b815261010090920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156109f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1791906149c1565b610a3457604051636ec7628b60e11b815260040160405180910390fd5b6040805160608101825284815260ff841660208083019190915264ffffffffff8416828401525f87815260049091529190912081518190610a759082614a7e565b5060208201516001909101805460409093015164ffffffffff166101000265ffffffffffff1990931660ff9092169190911791909117905550505050565b610abc33610816565b610ac4611a6f565b6001600160a01b0316336001600160a01b031614610af75760405163086391f760e31b81523360048201526024016108e2565b806015610b0482826129a5565b610b0d83612a5c565b505050565b604080516060808201835281525f60208201819052918101919091525f8281526004602052604090819020815160608101909252805482908290610b5590614a02565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8190614a02565b8015610bcc5780601f10610ba357610100808354040283529160200191610bcc565b820191905f5260205f20905b815481529060010190602001808311610baf57829003601f168201915b50505091835250506001919091015460ff81166020830152610100900464ffffffffff1660409091015292915050565b604051632efe011360e01b8152600160048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610c5a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7e9190614b38565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610d2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d539190614b65565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610d9b611a6f565b6001600160a01b03168152602001826001018054610db890614a02565b80601f0160208091040260200160405190810160405280929190818152602001828054610de490614a02565b8015610e2f5780601f10610e0657610100808354040283529160200191610e2f565b820191905f5260205f20905b815481529060010190602001808311610e1257829003601f168201915b505050505081525091505090565b5f610e466112f0565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7e9190614b8b565b5f610c7e30612ad9565b6060610eb9611bd5565b51919050565b5f610ec933610816565b610ed1611a6f565b6001600160a01b0316336001600160a01b031614610f045760405163086391f760e31b81523360048201526024016108e2565b610f0d82612cd2565b90505b919050565b610f1d611a6f565b6001600160a01b0316336001600160a01b031614610f505760405163086391f760e31b81523360048201526024016108e2565b610f5981612d2a565b50565b5f610f656112f0565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e81573d5f803e3d5ffd5b5f610fb36001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610ff7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101b9190614b65565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611072573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7e91906149c1565b5f61109f611ebd565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156110e3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061110791906149c1565b15905090565b5f60038260405161111e91906149ab565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91611174916001600160c01b031960c09290921b9190911690600401614445565b602060405180830381865af415801561118f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b391906149c1565b6111e0576003826040516111c791906149ab565b9081526040519081900360200190205460c01b92915050565b600280546001810182555f919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0161121b8382614a7e565b5061125c8260405160200161123091906149ab565b60405160208183030381529060405261124890614ba6565b60405180602001604052805f815250612d7b565b90508060038360405161126f91906149ab565b908152604051908190036020019020805460c09290921c67ffffffffffffffff19909216919091179055919050565b6112a733610816565b6112af611a6f565b6001600160a01b0316336001600160a01b0316146112e25760405163086391f760e31b81523360048201526024016108e2565b6112ec8282612e13565b5050565b5f6112f9611bd5565b60200151905090565b60606002828154811061131757611317614bc9565b905f5260205f2001805461132a90614a02565b80601f016020809104026020016040519081016040528092919081815260200182805461135690614a02565b80156113a15780601f10611378576101008083540402835291602001916113a1565b820191905f5260205f20905b81548152906001019060200180831161138457829003601f168201915b50505050509050919050565b5f8260166113bb82826129a5565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680e545f906001600160a01b031663f4bfe53a6113f56115ee565b8b8d8c8c8c8c6040518863ffffffff1660e01b815260040161141d9796959493929190614bdd565b61024060405180830381865afa158015611439573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061145d9190614c5a565b60a001519a9950505050505050505050565b5f611478610fa0565b156114fc576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156114cc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526114f39190810190614e1b565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f015460ff1690565b5f61152e611a6f565b6001600160a01b0316336001600160a01b0316146115615760405163086391f760e31b81523360048201526024016108e2565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68095460405163303c51d960e11b81526001600160a01b03848116600483015290911690636078a3b2906024015b6020604051808303815f875af11580156115ca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0d9190614b65565b5f805160206154eb833981519152546001600160601b031690565b5f61161333610816565b81601661162082826129a5565b335f61162b8961110d565b90505f6116af89838a60405180602001604052805f8152508b73__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561168b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053c9190614ef6565b905061173983838b848c8c73__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611701573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117259190614ef6565b60405180602001604052805f815250612e98565b9a9950505050505050505050565b5f611750611ebd565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7e9190614f11565b336117b8611ebd565b6001600160a01b0316816001600160a01b0316146117f35760405162d1953b60e31b81526001600160a01b03821660048201526024016108e2565b816001600160a01b03163b5f03611828576040516361798f2f60e11b81526001600160a01b03831660048201526024016108e2565b6112ec82612f42565b5f61183b33610816565b611843611a6f565b6001600160a01b0316336001600160a01b0316146118765760405163086391f760e31b81523360048201526024016108e2565b82601561188382826129a5565b61188d8585612fa2565b95945050505050565b61189e613f98565b5060408051610120810182527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6802546001600160a01b0380821660e084019081526001600160601b03600160a01b938490048116610100860152908452845180860186527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6803548084168252849004821660208083019190915280860191909152855180870187527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680454808516825285900483168183015285870152855180870187527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68055480851682528590048316818301526060860152855180870187527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68065480851682528590048316818301526080860152855180870187527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680754808516825285900483168183015260a086015285518087019096527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680854928316865292909104169083015260c081019190915290565b5f805f805160206154eb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611adb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aff91906149c1565b15611b8a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b849190614b8b565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061550b83398151915280545f9190600160a01b900460ff16611bc7575f611b84565b638fb3603760e01b91505090565b611bdd614070565b611be5610fa0565b15611bf257610c7e613033565b610c7e611e9c565b611c0333610816565b611c0b611a6f565b6001600160a01b0316336001600160a01b031614611c3e5760405163086391f760e31b81523360048201526024016108e2565b806015611c4b82826129a5565b610b0d836131e0565b5f816016611c6282826129a5565b5f600388604051611c7391906149ab565b90815260405190819003602001812054637bc32ecf60e01b825260c01b915073__$32e9ecefef68cb354d118e0496fdd3f4bc$__90637bc32ecf90611cc6906001600160c01b0319851690600401614445565b602060405180830381865af4158015611ce1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d0591906149c1565b15611d2557876040516316add56760e21b81526004016108e291906143da565b611d8287828860405180602001604052805f8152508973__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561168b573d5f803e3d5ffd5b98975050505050505050565b611d9733610816565b611d9f611a6f565b6001600160a01b0316336001600160a01b031614611dd25760405163086391f760e31b81523360048201526024016108e2565b816015611ddf82826129a5565b611de98484613238565b50611df484846132c9565b50505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e659190614b8b565b6001600160a01b0316336001600160a01b031614611e975760405162f0630960e01b81523360048201526024016108e2565b611df4565b611ea4614070565b610c7e613033565b5f6003826040516111c791906149ab565b5f8051602061550b833981519152546001600160a01b031690565b60408051610100810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082019290925260e08101919091525f8051602061552b833981519152604080516101008082018352835460ff808216151584529181048216151560208085019190915262010000820483161515848601526301000000820483166060850152640100000000820490921660808401526001600160601b03650100000000008204811660a0850152600160881b9091041660c083015260018401805484518184028101840190955280855292949360e0860193909283018282801561201e57602002820191905f5260205f20905f905b82829054906101000a90046001600160601b03166001600160601b0316815260200190600c0190602082600b01049283019260010382029150808411611fdb5790505b505050505081525050905090565b61203533610816565b60038160405161204591906149ab565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf9161209b916001600160c01b031960c09290921b9190911690600401614445565b602060405180830381865af41580156120b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120da91906149c1565b156120fa57806040516316add56760e21b81526004016108e291906143da565b610f5960038260405161210d91906149ab565b9081526040519081900360200190205460c01b612128606e90565b61332e565b61213633610816565b61213e611a6f565b6001600160a01b0316336001600160a01b0316146121715760405163086391f760e31b81523360048201526024016108e2565b610f5981613390565b61218333610816565b82601561219082826129a5565b5050505050565b6121a033610816565b6003816040516121b091906149ab565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91612206916001600160c01b031960c09290921b9190911690600401614445565b602060405180830381865af4158015612221573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224591906149c1565b1561226557806040516316add56760e21b81526004016108e291906143da565b610f5960038260405161227891906149ab565b9081526040519081900360200190205460c01b612128600590565b604051633682752160e21b815264ffffffffff831660048201525f90819073__$bf7bc340cbb9229ef1de2c568356e67902$__906345ebb61e90620151809073__$71e292c09eace9601b3e21e68a1278917a$__9063da09d48490602401602060405180830381865af415801561230c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123309190614f2c565b61233a9190614f57565b6040518263ffffffff1660e01b815260040161235891815260200190565b602060405180830381865af4158015612373573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123979190614b8b565b90505f61241d8273__$bf7bc340cbb9229ef1de2c568356e67902$__6345ebb61e6101686040518263ffffffff1660e01b81526004016123d991815260200190565b602060405180830381865af41580156123f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124189190614b8b565b613405565b60405163046e44af60e11b81526001600160601b03891660048201529091505f9073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd969060149083906308dc895e90602401602060405180830381865af4158015612483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124a79190614f2c565b6124b19190614f57565b6040518263ffffffff1660e01b81526004016124cf91815260200190565b602060405180830381865af41580156124ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061250e9190614b65565b604051636e5912e760e01b815290915073__$3bac17678db7ae928afa209f2f44deec9c$__90636e5912e790612553906001600160601b038516908690600401614f76565b602060405180830381865af415801561256e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d829190614b65565b5f8061259d33610816565b836125b06001546001600160a01b031690565b6001600160a01b031663b303aaf882336040518363ffffffff1660e01b81526004016125dd929190614f76565b602060405180830381865afa1580156125f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261c91906149c1565b61263b5760405163086391f760e31b81523360048201526024016108e2565b84601561264882826129a5565b5f612651613453565b60405163bd7d9d8560e01b81526001600160601b038a1660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa15801561269d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526126c49190810190614fa3565b90506126d1888289613481565b5f878152600460205260408082208151606081019092528054829082906126f790614a02565b80601f016020809104026020016040519081016040528092919081815260200182805461272390614a02565b801561276e5780601f106127455761010080835404028352916020019161276e565b820191905f5260205f20905b81548152906001019060200180831161275157829003601f168201915b505050918352505060019182015460ff811660208084019190915261010090910464ffffffffff166040928301525f8c8152600582528281206001600160601b038f1682528252918220805460ff1916909317909255606085015191830151929350916127dc918c9161376b565b905061280a8a828b6040516020016127f691815260200190565b604051602081830303815290604052613895565b97506128268a898360405180602001604052805f81525061391d565b6128408a898360405180602001604052805f815250613992565b965061284c8a88613a14565b5050505050509250929050565b612861611a6f565b6001600160a01b0316336001600160a01b0316146128945760405163086391f760e31b81523360048201526024016108e2565b61289d33610816565b6112ec8282613a66565b5f8051602061550b8339815191525f806128df6128c2611ebd565b87306128d160045f8a8c615136565b6128da9161515d565b613ab7565b915091508161299d5763ffffffff81161561297a57825460ff60a01b1916600160a01b17835561290d611ebd565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161293c93929190615193565b5f604051808303815f87803b158015612953575f80fd5b505af1158015612965573d5f803e3d5ffd5b5050845460ff60a01b191685555061299d9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108e2565b505050505050565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015612a07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a2b91906149c1565b6112ec5760405163d711af7560e01b81526001600160601b038316600482015260ff821660248201526044016108e2565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680c54604051630155751d60e31b81526001600160601b03831660048201526001600160a01b0390911690630aaba8e8906024015b5f604051808303815f87803b158015612ac7575f80fd5b505af1158015612190573d5f803e3d5ffd5b5f805f805160206154eb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612b45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6991906149c1565b15612b955780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108e2565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612be7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c0b91906149c1565b612c335760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108e2565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612c85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ca99190614b65565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f03546040516301c6b21960e41b81526001600160601b03831660048201525f916001600160a01b031690631c6b2190906024016115ae565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f035460405163108f145b60e11b815282151560048201526001600160a01b039091169063211e28b690602401612ab0565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680a5460405163c3fa12bb60e01b81525f916001600160a01b03169063c3fa12bb90612dcc90869086906004016151d2565b6020604051808303815f875af1158015612de8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e0c9190614ef6565b9392505050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f03546040516320c8cbff60e11b81526001600160a01b0384811660048301526001600160601b03841660248301529091169063419197fe906044015b5f604051808303815f87803b158015612e86575f80fd5b505af115801561299d573d5f803e3d5ffd5b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680b54604051639a83274160e01b81525f916001600160a01b031690639a83274190612ef5908c908c908c908c908c908c908c908c906004016151ea565b6020604051808303815f875af1158015612f11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f359190614b65565b9998505050505050505050565b5f8051602061550b83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f5f8051602061552b833981519152600c0154604051637baa9a0b60e01b81526001600160601b038516600482015264ffffffffff841660248201526001600160a01b0390911690637baa9a0b906044016020604051808303815f875af115801561300f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e0c91906149e7565b61303b614070565b5f61304e6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015613092573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130b69190614b65565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561310f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061313391906149c1565b156131d857613140613453565b6001600160a01b031663f0ea17c36131566115ee565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015613197573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131be9190810190615252565b60208101519092506001600160a01b0316156131d8575090565b611b84613bbf565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680c54604051639ffcede960e01b81526001600160601b03831660048201526001600160a01b0390911690639ffcede990602401612ab0565b5f5f8051602061552b833981519152600c015460405163552d72d560e11b81526001600160601b038516600482015264ffffffffff841660248201526001600160a01b039091169063aa5ae5aa906044016020604051808303815f875af11580156132a5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e0c9190614b65565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680c54604051635dfddfdd60e11b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063bbfbbfba90604401612e6f565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680a54604051633e77a42160e11b81526001600160c01b03198416600482015260ff831660248201526001600160a01b0390911690637cef484290604401612e6f565b613398611a6f565b6001600160a01b0316336001600160a01b0316146133cb5760405163086391f760e31b81523360048201526024016108e2565b6133d5600b613ca3565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df90602401612ab0565b5f816001600160a01b03165f0361342f57604051630f6c8fc360e21b815260040160405180910390fd5b612e0c836001600160a01b031666038d7ea4c68000846001600160a01b0316613d34565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b5f8181526004602081905260409182902060010154915163790a38ad60e01b815261010090920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156134ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061351191906149c1565b15613532576040516395b47f7b60e01b8152600481018290526024016108e2565b5f8181526004602052604090819020905161358291600391613554919061530c565b908152604080519182900360200190912054908401516001600160c01b031960c09290921b82169116141590565b156135b2575f81815260046020819052604091829020915163d675176b60e01b81526108e292849290910161537d565b5f8181526005602090815260408083206001600160601b038716845290915290205460ff16156135f557604051639758dd1d60e01b815260040160405180910390fd5b5f8181526004602052604080822081516060810190925280548290829061361b90614a02565b80601f016020809104026020016040519081016040528092919081815260200182805461364790614a02565b80156136925780601f1061366957610100808354040283529160200191613692565b820191905f5260205f20905b81548152906001019060200180831161367557829003601f168201915b50505091835250506001919091015460ff81166020830152610100900464ffffffffff166040918201528101516101408501519192506136db9164ffffffffff90811691161090565b156137185761014083015160405163fd05036760e01b81526001600160601b038616600482015264ffffffffff90911660248201526044016108e2565b604081015161018084015164ffffffffff908116911610611df45761018083015160405163505710d560e01b81526001600160601b038616600482015264ffffffffff90911660248201526044016108e2565b5f8073__$3bac17678db7ae928afa209f2f44deec9c$__636e5912e76001600160601b03861661379a86613df3565b6040518363ffffffff1660e01b81526004016137b7929190614f76565b602060405180830381865af41580156137d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f69190614b65565b90505f613801613453565b604051630160668360e51b81526001600160601b03881660048201526001600160a01b039190911690632c0cd06090602401602060405180830381865afa15801561384e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138729190614b65565b905061387e8183613f14565b1561388c579150612e0c9050565b50949350505050565b5f8051602061554b833981519152546040516374b775eb60e01b81525f916001600160a01b0316906374b775eb906138d59087908790879060040161540b565b6020604051808303815f875af11580156138f1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613915919061543b565b949350505050565b5f8051602061554b83398151915254604051636e2cdce760e01b81526001600160a01b0390911690636e2cdce79061395f908790879087908790600401615456565b5f604051808303815f87803b158015613976575f80fd5b505af1158015613988573d5f803e3d5ffd5b5050505050505050565b5f8051602061554b83398151915254604051631e2992c760e11b81525f916001600160a01b031690633c53258e906139d4908890889088908890600401615456565b6020604051808303815f875af11580156139f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188d91906149e7565b5f8051602061554b8339815191525460405163137a92a760e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063137a92a790604401612e6f565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680954604051634698bf1160e01b81526001600160a01b0390911690634698bf1190612e6f908590859060040161549a565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613b2591906149ab565b5f60405180830381855afa9150503d805f8114613b5d576040519150601f19603f3d011682016040523d82523d5f602084013e613b62565b606091505b50915091508115613bb4576040815110613b945780806020019051810190613b8a91906154b5565b9094509250613bb4565b6020815110613bb45780806020019051810190613bb191906149c1565b93505b505094509492505050565b613bc7614070565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060600160405280825f018054613c0490614a02565b80601f0160208091040260200160405190810160405280929190818152602001828054613c3090614a02565b8015613c7b5780601f10613c5257610100808354040283529160200191613c7b565b820191905f5260205f20905b815481529060010190602001808311613c5e57829003601f168201915b505050505081526020015f6001600160a01b03168152602001826002018054610db890614a02565b5f613cb66001546001600160a01b031690565b6001600160a01b031663d39e604383613ccd611747565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613d10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0d9190614b8b565b5f838302815f1985870982811083820303915050805f03613d6857838281613d5e57613d5e614f43565b0492505050612e0c565b808411613d885760405163227bc15360e01b815260040160405180910390fd5b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b5f613e0560015b60ff84811691161490565b15613e6157604051631488c84560e01b815260196004820152600119602482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c845906044015b602060405180830381865af4158015613d10573d5f803e3d5ffd5b613e6b6002613dfa565b15613eaf57604051631488c84560e01b8152600560048201525f19602482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c84590604401613e46565b613eb96003613dfa565b15613ef6576040516322f5db0f60e11b81526001600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__906345ebb61e90602401613e46565b6040516363d977df60e01b815260ff831660048201526024016108e2565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401602060405180830381865af4158015613f74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e0c91906149c1565b6040805161012081019091525f60e0820181815261010083019190915281908152602001613fd5604080518082019091525f808252602082015290565b8152602001613ff3604080518082019091525f808252602082015290565b8152602001614011604080518082019091525f808252602082015290565b815260200161402f604080518082019091525f808252602082015290565b815260200161404d604080518082019091525f808252602082015290565b815260200161406b604080518082019091525f808252602082015290565b905290565b6040518060600160405280606081526020015f6001600160a01b03168152602001606081525090565b5f602082840312156140a9575f80fd5b81356001600160e01b031981168114612e0c575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b03811182821017156140f7576140f76140c0565b60405290565b60405160e081016001600160401b03811182821017156140f7576140f76140c0565b60405161020081016001600160401b03811182821017156140f7576140f76140c0565b604051606081016001600160401b03811182821017156140f7576140f76140c0565b604051601f8201601f191681016001600160401b038111828210171561418c5761418c6140c0565b604052919050565b5f6001600160401b038211156141ac576141ac6140c0565b50601f01601f191660200190565b5f82601f8301126141c9575f80fd5b8135602083015f6141e16141dc84614194565b614164565b90508281528583830111156141f4575f80fd5b828260208301375f92810160200192909252509392505050565b60ff81168114610f59575f80fd5b64ffffffffff81168114610f59575f80fd5b5f805f8060808587031215614241575f80fd5b8435935060208501356001600160401b0381111561425d575f80fd5b614269878288016141ba565b935050604085013561427a8161420e565b9150606085013561428a8161421c565b939692955090935050565b6001600160601b0381168114610f59575f80fd5b5f602082840312156142b9575f80fd5b8135612e0c81614295565b5f602082840312156142d4575f80fd5b5035919050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f82516060602084015261432460808401826142db565b905060ff602085015116604084015264ffffffffff60408501511660608401528091505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614396608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526139156101008401826142db565b602081525f612e0c60208301846142db565b8015158114610f59575f80fd5b5f60208284031215614409575f80fd5b8135612e0c816143ec565b5f60208284031215614424575f80fd5b81356001600160401b03811115614439575f80fd5b613915848285016141ba565b6001600160c01b031991909116815260200190565b6001600160a01b0381168114610f59575f80fd5b5f806040838503121561447f575f80fd5b823561448a8161445a565b9150602083013561449a81614295565b809150509250929050565b6001600160c01b031981168114610f59575f80fd5b5f805f805f8060c087890312156144cf575f80fd5b86356144da81614295565b955060208701356144ea816144a5565b945060408701356144fa8161421c565b935060608701356001600160401b03811115614514575f80fd5b61452089828a016141ba565b935050608087013561453181614295565b915060a0870135614541816144a5565b809150509295509295509295565b5f6020828403121561455f575f80fd5b8135612e0c8161445a565b5f805f806080858703121561457d575f80fd5b84356001600160401b03811115614592575f80fd5b61459e878288016141ba565b94505060208501356145af81614295565b925060408501356145bf8161421c565b9150606085013561428a81614295565b5f80604083850312156145e0575f80fd5b82356145eb81614295565b9150602083013561449a8161421c565b80516001600160a01b031682526020908101516001600160601b0316910152565b5f6101c08201905061462f8284516145fb565b602083015161464160408401826145fb565b50604083015161465460808401826145fb565b50606083015161466760c08401826145fb565b50608083015161467b6101008401826145fb565b5060a083015161468f6101408401826145fb565b5060c08301516146a36101808401826145fb565b5092915050565b602081525f8251606060208401526146c560808401826142db565b60208501516001600160a01b0316604085810191909152850151848203601f1901606086015290915061188d82826142db565b5f805f806080858703121561470b575f80fd5b84356147168161445a565b935060208501356147268161445a565b925060408501359150606085013561428a8161445a565b5f8151808452602084019350602083015f5b828110156147765781516001600160601b031686526020958601959091019060010161474f565b5093949350505050565b602081528151151560208201526020820151151560408201525f60408301516147ad606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e08301516101008084015261391561012084018261473d565b61ffff81168114610f59575f80fd5b5f805f60608486031215614831575f80fd5b833561483c81614295565b9250602084013561484c81614810565b9150604084013561485c81614295565b809150509250925092565b5f805f806080858703121561487a575f80fd5b843561488581614295565b93506020850135614895816144a5565b925060408501356148a58161421c565b915060608501356001600160401b038111156148bf575f80fd5b6148cb878288016141ba565b91505092959194509250565b5f80604083850312156148e8575f80fd5b82356148f381614295565b946020939093013593505050565b5f60408284031215614911575f80fd5b604080519081016001600160401b0381118282101715614933576149336140c0565b60405290508082356149448161445a565b8152602083013561495481614295565b6020919091015292915050565b5f8060808385031215614972575f80fd5b61497c8484614901565b915061498b8460408501614901565b90509250929050565b5f81518060208401855e5f93019283525090919050565b5f612e0c8284614994565b8051610f10816143ec565b5f602082840312156149d1575f80fd5b8151612e0c816143ec565b8051610f108161421c565b5f602082840312156149f7575f80fd5b8151612e0c8161421c565b600181811c90821680614a1657607f821691505b602082108103614a3457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610b0d57805f5260205f20601f840160051c81016020851015614a5f5750805b601f840160051c820191505b81811015612190575f8155600101614a6b565b81516001600160401b03811115614a9757614a976140c0565b614aab81614aa58454614a02565b84614a3a565b6020601f821160018114614add575f8315614ac65750848201515b5f19600385901b1c1916600184901b178455612190565b5f84815260208120601f198516915b82811015614b0c5787850151825560209485019460019092019101614aec565b5084821015614b2957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215614b48575f80fd5b815162ffffff81168114612e0c575f80fd5b8051610f1081614295565b5f60208284031215614b75575f80fd5b8151612e0c81614295565b8051610f108161445a565b5f60208284031215614b9b575f80fd5b8151612e0c8161445a565b80516020808301519190811015614a34575f1960209190910360031b1b16919050565b634e487b7160e01b5f52603260045260245ffd5b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f614c2c60e08301866142db565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f610240828403128015614c6c575f80fd5b50614c756140d4565b614c7e83614b5a565b8152614c8c60208401614b5a565b6020820152614c9d60408401614b5a565b6040820152614cae60608401614b5a565b6060820152614cbf60808401614b5a565b6080820152614cd060a08401614b5a565b60a0820152614ce160c08401614b5a565b60c0820152614cf260e08401614b5a565b60e0820152614d046101008401614b5a565b610100820152614d176101208401614b5a565b610120820152614d2a6101408401614b5a565b610140820152614d3d6101608401614b5a565b610160820152614d506101808401614b5a565b610180820152614d636101a08401614b5a565b6101a0820152614d766101c08401614b5a565b6101c0820152614d896101e08401614b5a565b6101e0820152614d9c6102008401614b5a565b610200820152614daf6102208401614b5a565b6102208201529392505050565b8051610f108161420e565b5f614dd46141dc84614194565b9050828152838383011115614de7575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112614e0c575f80fd5b612e0c83835160208501614dc7565b5f60208284031215614e2b575f80fd5b81516001600160401b03811115614e40575f80fd5b820160e08185031215614e51575f80fd5b614e596140fd565b614e6282614b5a565b8152614e7060208301614b5a565b6020820152614e8160408301614dbc565b6040820152614e92606083016149b6565b6060820152614ea360808301614b80565b6080820152614eb460a08301614b80565b60a082015260c08201516001600160401b03811115614ed1575f80fd5b614edd86828501614dfd565b60c083015250949350505050565b8051610f10816144a5565b5f60208284031215614f06575f80fd5b8151612e0c816144a5565b5f60208284031215614f21575f80fd5b8151612e0c8161420e565b5f60208284031215614f3c575f80fd5b5051919050565b634e487b7160e01b5f52601260045260245ffd5b5f82614f7157634e487b7160e01b5f52601260045260245ffd5b500490565b6001600160601b039290921682526001600160a01b0316602082015260400190565b8051610f1081614810565b5f60208284031215614fb3575f80fd5b81516001600160401b03811115614fc8575f80fd5b82016102008185031215614fda575f80fd5b614fe261411f565b614feb82614b5a565b8152614ff960208301614b5a565b602082015261500a60408301614eeb565b604082015261501b60608301614b5a565b606082015261502c60808301614b5a565b608082015261503d60a08301614eeb565b60a082015261504e60c08301614f98565b60c082015261505f60e08301614f98565b60e08201526150716101008301614b5a565b6101008201526150846101208301614b5a565b61012082015261509761014083016149dc565b6101408201526150aa61016083016149dc565b6101608201526150bd61018083016149dc565b6101808201526150d06101a083016149dc565b6101a08201526101c08201516001600160401b038111156150ef575f80fd5b6150fb86828501614dfd565b6101c0830152506101e08201516001600160401b0381111561511b575f80fd5b61512786828501614dfd565b6101e083015250949350505050565b5f8085851115615144575f80fd5b83861115615150575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156146a3576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b828152604060208201525f61391560408301846142db565b6001600160a01b03891681526001600160c01b031988811660208301526001600160601b038881166040840152878116606084015264ffffffffff87166080840152851660a0830152831660c082015261010060e082018190525f90611739908301846142db565b5f60208284031215615262575f80fd5b81516001600160401b03811115615277575f80fd5b820160608185031215615288575f80fd5b615290614142565b81516001600160401b038111156152a5575f80fd5b8201601f810186136152b5575f80fd5b6152c486825160208401614dc7565b82525060208201516152d58161445a565b602082015260408201516001600160401b038111156152f2575f80fd5b6152fe86828501614dfd565b604083015250949350505050565b5f80835461531981614a02565b600182168015615330576001811461534557615372565b60ff1983168652811515820286019350615372565b865f5260205f205f5b8381101561536a5781548882015260019091019060200161534e565b505081860193505b509195945050505050565b828152604060208201525f80835461539481614a02565b806040860152600182165f81146153b257600181146153ce576153ff565b60ff1983166060870152606082151560051b87010193506153ff565b865f5260205f205f5b838110156153f6578154888201606001526001909101906020016153d7565b87016060019450505b50919695505050505050565b6001600160601b03841681526001600160601b0383166020820152606060408201525f61188d60608301846142db565b5f6020828403121561544b575f80fd5b8151612e0c81614810565b6001600160601b038516815261ffff841660208201526001600160601b0383166040820152608060608201525f61549060808301846142db565b9695505050505050565b608081016154a882856145fb565b612e0c60408301846145fb565b5f80604083850312156154c6575f80fd5b82516154d1816143ec565b602084015190925063ffffffff8116811461449a575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a000bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68000bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680da26469706673582212204d5125e8f9bb392467bc4b1a132bc3f11fed408eb31503bd39f23801cb8b240764736f6c634300081a0033",
         
     | 
| 
      
 1665 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610333575f3560e01c806376b707b7116101af578063b8bc787e116100fe578063e1f216fa1161009e578063eb0df31911610079578063eb0df319146107a5578063f179d064146107b8578063f29d9cd8146107cb578063f322c70a146107fe575f80fd5b8063e1f216fa14610757578063e9b2460c1461076a578063ea15869f1461077e575f80fd5b8063c9d87e69116100d9578063c9d87e69146106f9578063d8fb257714610701578063de7b5d1414610714578063deaa59df14610744575f80fd5b8063b8bc787e146106c9578063bf7e214f146106dc578063c108bd4c146106e4575f80fd5b806390edbd3511610169578063aa5ae5aa11610144578063aa5ae5aa14610687578063ad12ad601461069a578063ada9652e146106ad578063b423086c146106c1575f80fd5b806390edbd351461064c5780639ffcede914610661578063a7407c7114610674575f80fd5b806376b707b7146105b85780637a9e5e4b146105d25780637baa9a0b146105e5578063844e0f201461060e578063893d20e8146106235780638fb360371461062b575f80fd5b806322366844116102855780635349d2a8116102255780636078a3b2116102005780636078a3b21461055a578063644c45e01461056d57806364854f9b146105755780636bd1c0eb14610588575f80fd5b80635349d2a81461052e5780635741e5e9146105415780635ab1bd5314610549575f80fd5b8063330234fc11610260578063330234fc146104e0578063419197fe1461050057806343d752d3146105135780634545177f1461051b575f80fd5b806322366844146104a957806322f3e2d4146104b15780632eb3e6f4146104b9575f80fd5b806313299604116102f05780631c6b2190116102cb5780631c6b2190146104465780631eff4b2214610459578063211e28b61461048e57806321df0da7146104a1575f80fd5b806313299604146103f1578063138461e01461041157806317d7de7c14610431575f80fd5b806301ffc9a714610337578063034dac63146103785780630aaba8e81461038d5780630bb9b257146103a05780630d8e6e2c146103c05780630fec111c146103dc575b5f80fd5b610363610345366004614099565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61038b61038636600461422e565b610811565b005b61038b61039b3660046142a9565b610ab3565b6103b36103ae3660046142c4565b610b12565b60405161036f9190614309565b6103c8610bfc565b60405162ffffff909116815260200161036f565b6103e4610c83565b60405161036f919061434e565b6103f9610e3d565b6040516001600160a01b03909116815260200161036f565b610419610ea5565b6040516001600160601b03909116815260200161036f565b610439610eaf565b60405161036f91906143da565b6104196104543660046142a9565b610ebf565b6104807f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161036f565b61038b61049c3660046143f9565b610f15565b6103f9610f5c565b610363610fa0565b610363611096565b6104807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6104f36104ee366004614414565b61110d565b60405161036f9190614445565b61038b61050e36600461446e565b61129e565b6103f96112f0565b6104396105293660046142c4565b611302565b61041961053c3660046144ba565b6113ad565b61036361146f565b6001546001600160a01b03166103f9565b61041961056836600461454f565b611525565b6104196115ee565b61041961058336600461456a565b611609565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b03166103f9565b6105c0611747565b60405160ff909116815260200161036f565b61038b6105e036600461454f565b6117af565b6105f86105f33660046145cf565b611831565b60405164ffffffffff909116815260200161036f565b610616611896565b60405161036f919061461c565b6103f9611a6f565b610633611ba0565b6040516001600160e01b0319909116815260200161036f565b610654611bd5565b60405161036f91906146aa565b61038b61066f3660046142a9565b611bfa565b61041961068236600461456a565b611c54565b61038b6106953660046145cf565b611d8e565b61038b6106a83660046146f8565b611dfa565b6104805f805160206154eb83398151915281565b610654611e9c565b6104f36106d7366004614414565b611eac565b6103f9611ebd565b6106ec611ed8565b60405161036f9190614780565b600254610480565b61038b61070f366004614414565b61202c565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b03166103f9565b61038b61075236600461454f565b61212d565b61038b61076536600461481f565b61217a565b6104805f8051602061552b83398151915281565b6104807fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b61038b6107b3366004614414565b612197565b6104196107c6366004614867565b612293565b6107de6107d93660046148d7565b612592565b6040805161ffff909316835264ffffffffff90911660208301520161036f565b61038b61080c366004614961565b612859565b61081d335b5f366128a7565b60038360405161082d91906149ab565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91610883916001600160c01b031960c09290921b9190911690600401614445565b602060405180830381865af415801561089e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c291906149c1565b156108eb57826040516316add56760e21b81526004016108e291906143da565b60405180910390fd5b6109698173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610936573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095a91906149e7565b64ffffffffff90811691161190565b156109875760405163a9f68a6b60e01b815260040160405180910390fd5b5f8481526004602081905260409182902060010154915163790a38ad60e01b815261010090920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156109f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1791906149c1565b610a3457604051636ec7628b60e11b815260040160405180910390fd5b6040805160608101825284815260ff841660208083019190915264ffffffffff8416828401525f87815260049091529190912081518190610a759082614a7e565b5060208201516001909101805460409093015164ffffffffff166101000265ffffffffffff1990931660ff9092169190911791909117905550505050565b610abc33610816565b610ac4611a6f565b6001600160a01b0316336001600160a01b031614610af75760405163086391f760e31b81523360048201526024016108e2565b806015610b0482826129a5565b610b0d83612a5c565b505050565b604080516060808201835281525f60208201819052918101919091525f8281526004602052604090819020815160608101909252805482908290610b5590614a02565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8190614a02565b8015610bcc5780601f10610ba357610100808354040283529160200191610bcc565b820191905f5260205f20905b815481529060010190602001808311610baf57829003601f168201915b50505091835250506001919091015460ff81166020830152610100900464ffffffffff1660409091015292915050565b604051632efe011360e01b8152600160048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610c5a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7e9190614b38565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610d2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d539190614b65565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610d9b611a6f565b6001600160a01b03168152602001826001018054610db890614a02565b80601f0160208091040260200160405190810160405280929190818152602001828054610de490614a02565b8015610e2f5780601f10610e0657610100808354040283529160200191610e2f565b820191905f5260205f20905b815481529060010190602001808311610e1257829003601f168201915b505050505081525091505090565b5f610e466112f0565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7e9190614b8b565b5f610c7e30612ad9565b6060610eb9611bd5565b51919050565b5f610ec933610816565b610ed1611a6f565b6001600160a01b0316336001600160a01b031614610f045760405163086391f760e31b81523360048201526024016108e2565b610f0d82612cd2565b90505b919050565b610f1d611a6f565b6001600160a01b0316336001600160a01b031614610f505760405163086391f760e31b81523360048201526024016108e2565b610f5981612d2a565b50565b5f610f656112f0565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e81573d5f803e3d5ffd5b5f610fb36001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610ff7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101b9190614b65565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611072573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7e91906149c1565b5f61109f611ebd565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156110e3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061110791906149c1565b15905090565b5f60038260405161111e91906149ab565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91611174916001600160c01b031960c09290921b9190911690600401614445565b602060405180830381865af415801561118f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b391906149c1565b6111e0576003826040516111c791906149ab565b9081526040519081900360200190205460c01b92915050565b600280546001810182555f919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0161121b8382614a7e565b5061125c8260405160200161123091906149ab565b60405160208183030381529060405261124890614ba6565b60405180602001604052805f815250612d7b565b90508060038360405161126f91906149ab565b908152604051908190036020019020805460c09290921c67ffffffffffffffff19909216919091179055919050565b6112a733610816565b6112af611a6f565b6001600160a01b0316336001600160a01b0316146112e25760405163086391f760e31b81523360048201526024016108e2565b6112ec8282612e13565b5050565b5f6112f9611bd5565b60200151905090565b60606002828154811061131757611317614bc9565b905f5260205f2001805461132a90614a02565b80601f016020809104026020016040519081016040528092919081815260200182805461135690614a02565b80156113a15780601f10611378576101008083540402835291602001916113a1565b820191905f5260205f20905b81548152906001019060200180831161138457829003601f168201915b50505050509050919050565b5f8260166113bb82826129a5565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680e545f906001600160a01b031663f4bfe53a6113f56115ee565b8b8d8c8c8c8c6040518863ffffffff1660e01b815260040161141d9796959493929190614bdd565b61024060405180830381865afa158015611439573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061145d9190614c5a565b60a001519a9950505050505050505050565b5f611478610fa0565b156114fc576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156114cc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526114f39190810190614e1b565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f015460ff1690565b5f61152e611a6f565b6001600160a01b0316336001600160a01b0316146115615760405163086391f760e31b81523360048201526024016108e2565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68095460405163303c51d960e11b81526001600160a01b03848116600483015290911690636078a3b2906024015b6020604051808303815f875af11580156115ca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0d9190614b65565b5f805160206154eb833981519152546001600160601b031690565b5f61161333610816565b81601661162082826129a5565b335f61162b8961110d565b90505f6116af89838a60405180602001604052805f8152508b73__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561168b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053c9190614ef6565b905061173983838b848c8c73__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611701573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117259190614ef6565b60405180602001604052805f815250612e98565b9a9950505050505050505050565b5f611750611ebd565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7e9190614f11565b336117b8611ebd565b6001600160a01b0316816001600160a01b0316146117f35760405162d1953b60e31b81526001600160a01b03821660048201526024016108e2565b816001600160a01b03163b5f03611828576040516361798f2f60e11b81526001600160a01b03831660048201526024016108e2565b6112ec82612f42565b5f61183b33610816565b611843611a6f565b6001600160a01b0316336001600160a01b0316146118765760405163086391f760e31b81523360048201526024016108e2565b82601561188382826129a5565b61188d8585612fa2565b95945050505050565b61189e613f98565b5060408051610120810182527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6802546001600160a01b0380821660e084019081526001600160601b03600160a01b938490048116610100860152908452845180860186527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6803548084168252849004821660208083019190915280860191909152855180870187527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680454808516825285900483168183015285870152855180870187527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68055480851682528590048316818301526060860152855180870187527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68065480851682528590048316818301526080860152855180870187527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680754808516825285900483168183015260a086015285518087019096527f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680854928316865292909104169083015260c081019190915290565b5f805f805160206154eb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611adb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aff91906149c1565b15611b8a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b849190614b8b565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061550b83398151915280545f9190600160a01b900460ff16611bc7575f611b84565b638fb3603760e01b91505090565b611bdd614070565b611be5610fa0565b15611bf257610c7e613033565b610c7e611e9c565b611c0333610816565b611c0b611a6f565b6001600160a01b0316336001600160a01b031614611c3e5760405163086391f760e31b81523360048201526024016108e2565b806015611c4b82826129a5565b610b0d836131e0565b5f816016611c6282826129a5565b5f600388604051611c7391906149ab565b90815260405190819003602001812054637bc32ecf60e01b825260c01b915073__$32e9ecefef68cb354d118e0496fdd3f4bc$__90637bc32ecf90611cc6906001600160c01b0319851690600401614445565b602060405180830381865af4158015611ce1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d0591906149c1565b15611d2557876040516316add56760e21b81526004016108e291906143da565b611d8287828860405180602001604052805f8152508973__$05887d5853069c88bcd4c0a2107db45f29$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561168b573d5f803e3d5ffd5b98975050505050505050565b611d9733610816565b611d9f611a6f565b6001600160a01b0316336001600160a01b031614611dd25760405163086391f760e31b81523360048201526024016108e2565b816015611ddf82826129a5565b611de98484613238565b50611df484846132c9565b50505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e659190614b8b565b6001600160a01b0316336001600160a01b031614611e975760405162f0630960e01b81523360048201526024016108e2565b611df4565b611ea4614070565b610c7e613033565b5f6003826040516111c791906149ab565b5f8051602061550b833981519152546001600160a01b031690565b60408051610100810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082019290925260e08101919091525f8051602061552b833981519152604080516101008082018352835460ff808216151584529181048216151560208085019190915262010000820483161515848601526301000000820483166060850152640100000000820490921660808401526001600160601b03650100000000008204811660a0850152600160881b9091041660c083015260018401805484518184028101840190955280855292949360e0860193909283018282801561201e57602002820191905f5260205f20905f905b82829054906101000a90046001600160601b03166001600160601b0316815260200190600c0190602082600b01049283019260010382029150808411611fdb5790505b505050505081525050905090565b61203533610816565b60038160405161204591906149ab565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf9161209b916001600160c01b031960c09290921b9190911690600401614445565b602060405180830381865af41580156120b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120da91906149c1565b156120fa57806040516316add56760e21b81526004016108e291906143da565b610f5960038260405161210d91906149ab565b9081526040519081900360200190205460c01b612128606e90565b61332e565b61213633610816565b61213e611a6f565b6001600160a01b0316336001600160a01b0316146121715760405163086391f760e31b81523360048201526024016108e2565b610f5981613390565b61218333610816565b82601561219082826129a5565b5050505050565b6121a033610816565b6003816040516121b091906149ab565b90815260405190819003602001812054637bc32ecf60e01b825273__$32e9ecefef68cb354d118e0496fdd3f4bc$__91637bc32ecf91612206916001600160c01b031960c09290921b9190911690600401614445565b602060405180830381865af4158015612221573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224591906149c1565b1561226557806040516316add56760e21b81526004016108e291906143da565b610f5960038260405161227891906149ab565b9081526040519081900360200190205460c01b612128600590565b604051633682752160e21b815264ffffffffff831660048201525f90819073__$bf7bc340cbb9229ef1de2c568356e67902$__906345ebb61e90620151809073__$71e292c09eace9601b3e21e68a1278917a$__9063da09d48490602401602060405180830381865af415801561230c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123309190614f2c565b61233a9190614f57565b6040518263ffffffff1660e01b815260040161235891815260200190565b602060405180830381865af4158015612373573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123979190614b8b565b90505f61241d8273__$bf7bc340cbb9229ef1de2c568356e67902$__6345ebb61e6101686040518263ffffffff1660e01b81526004016123d991815260200190565b602060405180830381865af41580156123f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124189190614b8b565b613405565b60405163046e44af60e11b81526001600160601b03891660048201529091505f9073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd969060149083906308dc895e90602401602060405180830381865af4158015612483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124a79190614f2c565b6124b19190614f57565b6040518263ffffffff1660e01b81526004016124cf91815260200190565b602060405180830381865af41580156124ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061250e9190614b65565b604051636e5912e760e01b815290915073__$3bac17678db7ae928afa209f2f44deec9c$__90636e5912e790612553906001600160601b038516908690600401614f76565b602060405180830381865af415801561256e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d829190614b65565b5f8061259d33610816565b836125b06001546001600160a01b031690565b6001600160a01b031663b303aaf882336040518363ffffffff1660e01b81526004016125dd929190614f76565b602060405180830381865afa1580156125f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261c91906149c1565b61263b5760405163086391f760e31b81523360048201526024016108e2565b84601561264882826129a5565b5f612651613453565b60405163bd7d9d8560e01b81526001600160601b038a1660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa15801561269d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526126c49190810190614fa3565b90506126d1888289613481565b5f878152600460205260408082208151606081019092528054829082906126f790614a02565b80601f016020809104026020016040519081016040528092919081815260200182805461272390614a02565b801561276e5780601f106127455761010080835404028352916020019161276e565b820191905f5260205f20905b81548152906001019060200180831161275157829003601f168201915b505050918352505060019182015460ff811660208084019190915261010090910464ffffffffff166040928301525f8c8152600582528281206001600160601b038f1682528252918220805460ff1916909317909255606085015191830151929350916127dc918c9161376b565b905061280a8a828b6040516020016127f691815260200190565b604051602081830303815290604052613895565b97506128268a898360405180602001604052805f81525061391d565b6128408a898360405180602001604052805f815250613992565b965061284c8a88613a14565b5050505050509250929050565b612861611a6f565b6001600160a01b0316336001600160a01b0316146128945760405163086391f760e31b81523360048201526024016108e2565b61289d33610816565b6112ec8282613a66565b5f8051602061550b8339815191525f806128df6128c2611ebd565b87306128d160045f8a8c615136565b6128da9161515d565b613ab7565b915091508161299d5763ffffffff81161561297a57825460ff60a01b1916600160a01b17835561290d611ebd565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161293c93929190615193565b5f604051808303815f87803b158015612953575f80fd5b505af1158015612965573d5f803e3d5ffd5b5050845460ff60a01b191685555061299d9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108e2565b505050505050565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015612a07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a2b91906149c1565b6112ec5760405163d711af7560e01b81526001600160601b038316600482015260ff821660248201526044016108e2565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680c54604051630155751d60e31b81526001600160601b03831660048201526001600160a01b0390911690630aaba8e8906024015b5f604051808303815f87803b158015612ac7575f80fd5b505af1158015612190573d5f803e3d5ffd5b5f805f805160206154eb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612b45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6991906149c1565b15612b955780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108e2565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612be7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c0b91906149c1565b612c335760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108e2565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612c85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ca99190614b65565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f03546040516301c6b21960e41b81526001600160601b03831660048201525f916001600160a01b031690631c6b2190906024016115ae565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f035460405163108f145b60e11b815282151560048201526001600160a01b039091169063211e28b690602401612ab0565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680a5460405163c3fa12bb60e01b81525f916001600160a01b03169063c3fa12bb90612dcc90869086906004016151d2565b6020604051808303815f875af1158015612de8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e0c9190614ef6565b9392505050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f03546040516320c8cbff60e11b81526001600160a01b0384811660048301526001600160601b03841660248301529091169063419197fe906044015b5f604051808303815f87803b158015612e86575f80fd5b505af115801561299d573d5f803e3d5ffd5b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680b54604051639a83274160e01b81525f916001600160a01b031690639a83274190612ef5908c908c908c908c908c908c908c908c906004016151ea565b6020604051808303815f875af1158015612f11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f359190614b65565b9998505050505050505050565b5f8051602061550b83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f5f8051602061552b833981519152600c0154604051637baa9a0b60e01b81526001600160601b038516600482015264ffffffffff841660248201526001600160a01b0390911690637baa9a0b906044016020604051808303815f875af115801561300f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e0c91906149e7565b61303b614070565b5f61304e6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015613092573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130b69190614b65565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561310f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061313391906149c1565b156131d857613140613453565b6001600160a01b031663f0ea17c36131566115ee565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015613197573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131be9190810190615252565b60208101519092506001600160a01b0316156131d8575090565b611b84613bbf565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680c54604051639ffcede960e01b81526001600160601b03831660048201526001600160a01b0390911690639ffcede990602401612ab0565b5f5f8051602061552b833981519152600c015460405163552d72d560e11b81526001600160601b038516600482015264ffffffffff841660248201526001600160a01b039091169063aa5ae5aa906044016020604051808303815f875af11580156132a5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e0c9190614b65565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680c54604051635dfddfdd60e11b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063bbfbbfba90604401612e6f565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680a54604051633e77a42160e11b81526001600160c01b03198416600482015260ff831660248201526001600160a01b0390911690637cef484290604401612e6f565b613398611a6f565b6001600160a01b0316336001600160a01b0316146133cb5760405163086391f760e31b81523360048201526024016108e2565b6133d5600b613ca3565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df90602401612ab0565b5f816001600160a01b03165f0361342f57604051630f6c8fc360e21b815260040160405180910390fd5b612e0c836001600160a01b031666038d7ea4c68000846001600160a01b0316613d34565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b5f8181526004602081905260409182902060010154915163790a38ad60e01b815261010090920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156134ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061351191906149c1565b15613532576040516395b47f7b60e01b8152600481018290526024016108e2565b5f8181526004602052604090819020905161358291600391613554919061530c565b908152604080519182900360200190912054908401516001600160c01b031960c09290921b82169116141590565b156135b2575f81815260046020819052604091829020915163d675176b60e01b81526108e292849290910161537d565b5f8181526005602090815260408083206001600160601b038716845290915290205460ff16156135f557604051639758dd1d60e01b815260040160405180910390fd5b5f8181526004602052604080822081516060810190925280548290829061361b90614a02565b80601f016020809104026020016040519081016040528092919081815260200182805461364790614a02565b80156136925780601f1061366957610100808354040283529160200191613692565b820191905f5260205f20905b81548152906001019060200180831161367557829003601f168201915b50505091835250506001919091015460ff81166020830152610100900464ffffffffff166040918201528101516101408501519192506136db9164ffffffffff90811691161090565b156137185761014083015160405163fd05036760e01b81526001600160601b038616600482015264ffffffffff90911660248201526044016108e2565b604081015161018084015164ffffffffff908116911610611df45761018083015160405163505710d560e01b81526001600160601b038616600482015264ffffffffff90911660248201526044016108e2565b5f8073__$3bac17678db7ae928afa209f2f44deec9c$__636e5912e76001600160601b03861661379a86613df3565b6040518363ffffffff1660e01b81526004016137b7929190614f76565b602060405180830381865af41580156137d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f69190614b65565b90505f613801613453565b604051630160668360e51b81526001600160601b03881660048201526001600160a01b039190911690632c0cd06090602401602060405180830381865afa15801561384e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138729190614b65565b905061387e8183613f14565b1561388c579150612e0c9050565b50949350505050565b5f8051602061554b833981519152546040516374b775eb60e01b81525f916001600160a01b0316906374b775eb906138d59087908790879060040161540b565b6020604051808303815f875af11580156138f1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613915919061543b565b949350505050565b5f8051602061554b83398151915254604051636e2cdce760e01b81526001600160a01b0390911690636e2cdce79061395f908790879087908790600401615456565b5f604051808303815f87803b158015613976575f80fd5b505af1158015613988573d5f803e3d5ffd5b5050505050505050565b5f8051602061554b83398151915254604051631e2992c760e11b81525f916001600160a01b031690633c53258e906139d4908890889088908890600401615456565b6020604051808303815f875af11580156139f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188d91906149e7565b5f8051602061554b8339815191525460405163137a92a760e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b039091169063137a92a790604401612e6f565b7f0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680954604051634698bf1160e01b81526001600160a01b0390911690634698bf1190612e6f908590859060040161549a565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613b2591906149ab565b5f60405180830381855afa9150503d805f8114613b5d576040519150601f19603f3d011682016040523d82523d5f602084013e613b62565b606091505b50915091508115613bb4576040815110613b945780806020019051810190613b8a91906154b5565b9094509250613bb4565b6020815110613bb45780806020019051810190613bb191906149c1565b93505b505094509492505050565b613bc7614070565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060600160405280825f018054613c0490614a02565b80601f0160208091040260200160405190810160405280929190818152602001828054613c3090614a02565b8015613c7b5780601f10613c5257610100808354040283529160200191613c7b565b820191905f5260205f20905b815481529060010190602001808311613c5e57829003601f168201915b505050505081526020015f6001600160a01b03168152602001826002018054610db890614a02565b5f613cb66001546001600160a01b031690565b6001600160a01b031663d39e604383613ccd611747565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613d10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0d9190614b8b565b5f838302815f1985870982811083820303915050805f03613d6857838281613d5e57613d5e614f43565b0492505050612e0c565b808411613d885760405163227bc15360e01b815260040160405180910390fd5b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b5f613e0560015b60ff84811691161490565b15613e6157604051631488c84560e01b815260196004820152600119602482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c845906044015b602060405180830381865af4158015613d10573d5f803e3d5ffd5b613e6b6002613dfa565b15613eaf57604051631488c84560e01b8152600560048201525f19602482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90631488c84590604401613e46565b613eb96003613dfa565b15613ef6576040516322f5db0f60e11b81526001600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__906345ebb61e90602401613e46565b6040516363d977df60e01b815260ff831660048201526024016108e2565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401602060405180830381865af4158015613f74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e0c91906149c1565b6040805161012081019091525f60e0820181815261010083019190915281908152602001613fd5604080518082019091525f808252602082015290565b8152602001613ff3604080518082019091525f808252602082015290565b8152602001614011604080518082019091525f808252602082015290565b815260200161402f604080518082019091525f808252602082015290565b815260200161404d604080518082019091525f808252602082015290565b815260200161406b604080518082019091525f808252602082015290565b905290565b6040518060600160405280606081526020015f6001600160a01b03168152602001606081525090565b5f602082840312156140a9575f80fd5b81356001600160e01b031981168114612e0c575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b03811182821017156140f7576140f76140c0565b60405290565b60405160e081016001600160401b03811182821017156140f7576140f76140c0565b60405161020081016001600160401b03811182821017156140f7576140f76140c0565b604051606081016001600160401b03811182821017156140f7576140f76140c0565b604051601f8201601f191681016001600160401b038111828210171561418c5761418c6140c0565b604052919050565b5f6001600160401b038211156141ac576141ac6140c0565b50601f01601f191660200190565b5f82601f8301126141c9575f80fd5b8135602083015f6141e16141dc84614194565b614164565b90508281528583830111156141f4575f80fd5b828260208301375f92810160200192909252509392505050565b60ff81168114610f59575f80fd5b64ffffffffff81168114610f59575f80fd5b5f805f8060808587031215614241575f80fd5b8435935060208501356001600160401b0381111561425d575f80fd5b614269878288016141ba565b935050604085013561427a8161420e565b9150606085013561428a8161421c565b939692955090935050565b6001600160601b0381168114610f59575f80fd5b5f602082840312156142b9575f80fd5b8135612e0c81614295565b5f602082840312156142d4575f80fd5b5035919050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f82516060602084015261432460808401826142db565b905060ff602085015116604084015264ffffffffff60408501511660608401528091505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614396608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526139156101008401826142db565b602081525f612e0c60208301846142db565b8015158114610f59575f80fd5b5f60208284031215614409575f80fd5b8135612e0c816143ec565b5f60208284031215614424575f80fd5b81356001600160401b03811115614439575f80fd5b613915848285016141ba565b6001600160c01b031991909116815260200190565b6001600160a01b0381168114610f59575f80fd5b5f806040838503121561447f575f80fd5b823561448a8161445a565b9150602083013561449a81614295565b809150509250929050565b6001600160c01b031981168114610f59575f80fd5b5f805f805f8060c087890312156144cf575f80fd5b86356144da81614295565b955060208701356144ea816144a5565b945060408701356144fa8161421c565b935060608701356001600160401b03811115614514575f80fd5b61452089828a016141ba565b935050608087013561453181614295565b915060a0870135614541816144a5565b809150509295509295509295565b5f6020828403121561455f575f80fd5b8135612e0c8161445a565b5f805f806080858703121561457d575f80fd5b84356001600160401b03811115614592575f80fd5b61459e878288016141ba565b94505060208501356145af81614295565b925060408501356145bf8161421c565b9150606085013561428a81614295565b5f80604083850312156145e0575f80fd5b82356145eb81614295565b9150602083013561449a8161421c565b80516001600160a01b031682526020908101516001600160601b0316910152565b5f6101c08201905061462f8284516145fb565b602083015161464160408401826145fb565b50604083015161465460808401826145fb565b50606083015161466760c08401826145fb565b50608083015161467b6101008401826145fb565b5060a083015161468f6101408401826145fb565b5060c08301516146a36101808401826145fb565b5092915050565b602081525f8251606060208401526146c560808401826142db565b60208501516001600160a01b0316604085810191909152850151848203601f1901606086015290915061188d82826142db565b5f805f806080858703121561470b575f80fd5b84356147168161445a565b935060208501356147268161445a565b925060408501359150606085013561428a8161445a565b5f8151808452602084019350602083015f5b828110156147765781516001600160601b031686526020958601959091019060010161474f565b5093949350505050565b602081528151151560208201526020820151151560408201525f60408301516147ad606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e08301516101008084015261391561012084018261473d565b61ffff81168114610f59575f80fd5b5f805f60608486031215614831575f80fd5b833561483c81614295565b9250602084013561484c81614810565b9150604084013561485c81614295565b809150509250925092565b5f805f806080858703121561487a575f80fd5b843561488581614295565b93506020850135614895816144a5565b925060408501356148a58161421c565b915060608501356001600160401b038111156148bf575f80fd5b6148cb878288016141ba565b91505092959194509250565b5f80604083850312156148e8575f80fd5b82356148f381614295565b946020939093013593505050565b5f60408284031215614911575f80fd5b604080519081016001600160401b0381118282101715614933576149336140c0565b60405290508082356149448161445a565b8152602083013561495481614295565b6020919091015292915050565b5f8060808385031215614972575f80fd5b61497c8484614901565b915061498b8460408501614901565b90509250929050565b5f81518060208401855e5f93019283525090919050565b5f612e0c8284614994565b8051610f10816143ec565b5f602082840312156149d1575f80fd5b8151612e0c816143ec565b8051610f108161421c565b5f602082840312156149f7575f80fd5b8151612e0c8161421c565b600181811c90821680614a1657607f821691505b602082108103614a3457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610b0d57805f5260205f20601f840160051c81016020851015614a5f5750805b601f840160051c820191505b81811015612190575f8155600101614a6b565b81516001600160401b03811115614a9757614a976140c0565b614aab81614aa58454614a02565b84614a3a565b6020601f821160018114614add575f8315614ac65750848201515b5f19600385901b1c1916600184901b178455612190565b5f84815260208120601f198516915b82811015614b0c5787850151825560209485019460019092019101614aec565b5084821015614b2957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215614b48575f80fd5b815162ffffff81168114612e0c575f80fd5b8051610f1081614295565b5f60208284031215614b75575f80fd5b8151612e0c81614295565b8051610f108161445a565b5f60208284031215614b9b575f80fd5b8151612e0c8161445a565b80516020808301519190811015614a34575f1960209190910360031b1b16919050565b634e487b7160e01b5f52603260045260245ffd5b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f614c2c60e08301866142db565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f610240828403128015614c6c575f80fd5b50614c756140d4565b614c7e83614b5a565b8152614c8c60208401614b5a565b6020820152614c9d60408401614b5a565b6040820152614cae60608401614b5a565b6060820152614cbf60808401614b5a565b6080820152614cd060a08401614b5a565b60a0820152614ce160c08401614b5a565b60c0820152614cf260e08401614b5a565b60e0820152614d046101008401614b5a565b610100820152614d176101208401614b5a565b610120820152614d2a6101408401614b5a565b610140820152614d3d6101608401614b5a565b610160820152614d506101808401614b5a565b610180820152614d636101a08401614b5a565b6101a0820152614d766101c08401614b5a565b6101c0820152614d896101e08401614b5a565b6101e0820152614d9c6102008401614b5a565b610200820152614daf6102208401614b5a565b6102208201529392505050565b8051610f108161420e565b5f614dd46141dc84614194565b9050828152838383011115614de7575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112614e0c575f80fd5b612e0c83835160208501614dc7565b5f60208284031215614e2b575f80fd5b81516001600160401b03811115614e40575f80fd5b820160e08185031215614e51575f80fd5b614e596140fd565b614e6282614b5a565b8152614e7060208301614b5a565b6020820152614e8160408301614dbc565b6040820152614e92606083016149b6565b6060820152614ea360808301614b80565b6080820152614eb460a08301614b80565b60a082015260c08201516001600160401b03811115614ed1575f80fd5b614edd86828501614dfd565b60c083015250949350505050565b8051610f10816144a5565b5f60208284031215614f06575f80fd5b8151612e0c816144a5565b5f60208284031215614f21575f80fd5b8151612e0c8161420e565b5f60208284031215614f3c575f80fd5b5051919050565b634e487b7160e01b5f52601260045260245ffd5b5f82614f7157634e487b7160e01b5f52601260045260245ffd5b500490565b6001600160601b039290921682526001600160a01b0316602082015260400190565b8051610f1081614810565b5f60208284031215614fb3575f80fd5b81516001600160401b03811115614fc8575f80fd5b82016102008185031215614fda575f80fd5b614fe261411f565b614feb82614b5a565b8152614ff960208301614b5a565b602082015261500a60408301614eeb565b604082015261501b60608301614b5a565b606082015261502c60808301614b5a565b608082015261503d60a08301614eeb565b60a082015261504e60c08301614f98565b60c082015261505f60e08301614f98565b60e08201526150716101008301614b5a565b6101008201526150846101208301614b5a565b61012082015261509761014083016149dc565b6101408201526150aa61016083016149dc565b6101608201526150bd61018083016149dc565b6101808201526150d06101a083016149dc565b6101a08201526101c08201516001600160401b038111156150ef575f80fd5b6150fb86828501614dfd565b6101c0830152506101e08201516001600160401b0381111561511b575f80fd5b61512786828501614dfd565b6101e083015250949350505050565b5f8085851115615144575f80fd5b83861115615150575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156146a3576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b828152604060208201525f61391560408301846142db565b6001600160a01b03891681526001600160c01b031988811660208301526001600160601b038881166040840152878116606084015264ffffffffff87166080840152851660a0830152831660c082015261010060e082018190525f90611739908301846142db565b5f60208284031215615262575f80fd5b81516001600160401b03811115615277575f80fd5b820160608185031215615288575f80fd5b615290614142565b81516001600160401b038111156152a5575f80fd5b8201601f810186136152b5575f80fd5b6152c486825160208401614dc7565b82525060208201516152d58161445a565b602082015260408201516001600160401b038111156152f2575f80fd5b6152fe86828501614dfd565b604083015250949350505050565b5f80835461531981614a02565b600182168015615330576001811461534557615372565b60ff1983168652811515820286019350615372565b865f5260205f205f5b8381101561536a5781548882015260019091019060200161534e565b505081860193505b509195945050505050565b828152604060208201525f80835461539481614a02565b806040860152600182165f81146153b257600181146153ce576153ff565b60ff1983166060870152606082151560051b87010193506153ff565b865f5260205f205f5b838110156153f6578154888201606001526001909101906020016153d7565b87016060019450505b50919695505050505050565b6001600160601b03841681526001600160601b0383166020820152606060408201525f61188d60608301846142db565b5f6020828403121561544b575f80fd5b8151612e0c81614810565b6001600160601b038516815261ffff841660208201526001600160601b0383166040820152608060608201525f61549060808301846142db565b9695505050505050565b608081016154a882856145fb565b612e0c60408301846145fb565b5f80604083850312156154c6575f80fd5b82516154d1816143ec565b602084015190925063ffffffff8116811461449a575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a000bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d68000bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d680da26469706673582212204d5125e8f9bb392467bc4b1a132bc3f11fed408eb31503bd39f23801cb8b240764736f6c634300081a0033",
         
     | 
| 
      
 1666 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 1667 
     | 
    
         
            +
                "contracts/shared/ContractLib.sol": {
         
     | 
| 
      
 1668 
     | 
    
         
            +
                  "ContractLib": [
         
     | 
| 
      
 1669 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1670 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1671 
     | 
    
         
            +
                      "start": 3933
         
     | 
| 
      
 1672 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1673 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1674 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1675 
     | 
    
         
            +
                      "start": 4525
         
     | 
| 
      
 1676 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1677 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1678 
     | 
    
         
            +
                },
         
     | 
| 
      
 1679 
     | 
    
         
            +
                "contracts/type/Amount.sol": {
         
     | 
| 
      
 1680 
     | 
    
         
            +
                  "AmountLib": [
         
     | 
| 
      
 1681 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1682 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1683 
     | 
    
         
            +
                      "start": 15473
         
     | 
| 
      
 1684 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1685 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1686 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1687 
     | 
    
         
            +
                      "start": 15697
         
     | 
| 
      
 1688 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1689 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1690 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1691 
     | 
    
         
            +
                      "start": 20384
         
     | 
| 
      
 1692 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1693 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1694 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1695 
     | 
    
         
            +
                      "start": 22381
         
     | 
| 
      
 1696 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1697 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1698 
     | 
    
         
            +
                },
         
     | 
| 
      
 1699 
     | 
    
         
            +
                "contracts/type/Fee.sol": {
         
     | 
| 
      
 1700 
     | 
    
         
            +
                  "FeeLib": [
         
     | 
| 
      
 1701 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1702 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1703 
     | 
    
         
            +
                      "start": 621
         
     | 
| 
      
 1704 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1705 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1706 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1707 
     | 
    
         
            +
                      "start": 732
         
     | 
| 
      
 1708 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1709 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1710 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1711 
     | 
    
         
            +
                      "start": 843
         
     | 
| 
      
 1712 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1713 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1714 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1715 
     | 
    
         
            +
                      "start": 954
         
     | 
| 
      
 1716 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1717 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1718 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1719 
     | 
    
         
            +
                      "start": 1065
         
     | 
| 
      
 1720 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1721 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1722 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1723 
     | 
    
         
            +
                      "start": 1176
         
     | 
| 
      
 1724 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1725 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1726 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1727 
     | 
    
         
            +
                      "start": 1287
         
     | 
| 
      
 1728 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1729 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1730 
     | 
    
         
            +
                },
         
     | 
| 
      
 1731 
     | 
    
         
            +
                "contracts/type/NftId.sol": {
         
     | 
| 
      
 1732 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1733 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1734 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1735 
     | 
    
         
            +
                      "start": 322
         
     | 
| 
      
 1736 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1737 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1738 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1739 
     | 
    
         
            +
                      "start": 443
         
     | 
| 
      
 1740 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1741 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1742 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1743 
     | 
    
         
            +
                      "start": 9499
         
     | 
| 
      
 1744 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1745 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1746 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1747 
     | 
    
         
            +
                      "start": 10347
         
     | 
| 
      
 1748 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1749 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1750 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1751 
     | 
    
         
            +
                      "start": 13012
         
     | 
| 
      
 1752 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1753 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1754 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1755 
     | 
    
         
            +
                      "start": 17214
         
     | 
| 
      
 1756 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1757 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1758 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1759 
     | 
    
         
            +
                      "start": 18696
         
     | 
| 
      
 1760 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1761 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1762 
     | 
    
         
            +
                },
         
     | 
| 
      
 1763 
     | 
    
         
            +
                "contracts/type/Referral.sol": {
         
     | 
| 
      
 1764 
     | 
    
         
            +
                  "ReferralLib": [
         
     | 
| 
      
 1765 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1766 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1767 
     | 
    
         
            +
                      "start": 11895
         
     | 
| 
      
 1768 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1769 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1770 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1771 
     | 
    
         
            +
                      "start": 12013
         
     | 
| 
      
 1772 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1773 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1774 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1775 
     | 
    
         
            +
                      "start": 13678
         
     | 
| 
      
 1776 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1777 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1778 
     | 
    
         
            +
                },
         
     | 
| 
      
 1779 
     | 
    
         
            +
                "contracts/type/RiskId.sol": {
         
     | 
| 
      
 1780 
     | 
    
         
            +
                  "RiskIdLib": [
         
     | 
| 
      
 1781 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1782 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1783 
     | 
    
         
            +
                      "start": 8314
         
     | 
| 
      
 1784 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1785 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1786 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1787 
     | 
    
         
            +
                      "start": 10603
         
     | 
| 
      
 1788 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1789 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1790 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1791 
     | 
    
         
            +
                      "start": 13509
         
     | 
| 
      
 1792 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1793 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1794 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1795 
     | 
    
         
            +
                      "start": 14482
         
     | 
| 
      
 1796 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1797 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1798 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1799 
     | 
    
         
            +
                      "start": 14845
         
     | 
| 
      
 1800 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1801 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1802 
     | 
    
         
            +
                },
         
     | 
| 
      
 1803 
     | 
    
         
            +
                "contracts/type/Seconds.sol": {
         
     | 
| 
      
 1804 
     | 
    
         
            +
                  "SecondsLib": [
         
     | 
| 
      
 1805 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1806 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1807 
     | 
    
         
            +
                      "start": 15109
         
     | 
| 
      
 1808 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1809 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1810 
     | 
    
         
            +
                },
         
     | 
| 
      
 1811 
     | 
    
         
            +
                "contracts/type/Timestamp.sol": {
         
     | 
| 
      
 1812 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 1813 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1814 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1815 
     | 
    
         
            +
                      "start": 8482
         
     | 
| 
      
 1816 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1817 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1818 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1819 
     | 
    
         
            +
                      "start": 8684
         
     | 
| 
      
 1820 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1821 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1822 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1823 
     | 
    
         
            +
                      "start": 19686
         
     | 
| 
      
 1824 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1825 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1826 
     | 
    
         
            +
                },
         
     | 
| 
      
 1827 
     | 
    
         
            +
                "contracts/type/UFixed.sol": {
         
     | 
| 
      
 1828 
     | 
    
         
            +
                  "UFixedLib": [
         
     | 
| 
      
 1829 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1830 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1831 
     | 
    
         
            +
                      "start": 15076
         
     | 
| 
      
 1832 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1833 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1834 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1835 
     | 
    
         
            +
                      "start": 15313
         
     | 
| 
      
 1836 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1837 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1838 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1839 
     | 
    
         
            +
                      "start": 22105
         
     | 
| 
      
 1840 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1841 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1842 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1843 
     | 
    
         
            +
                      "start": 22206
         
     | 
| 
      
 1844 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1845 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1846 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1847 
     | 
    
         
            +
                      "start": 22277
         
     | 
| 
      
 1848 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1849 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1850 
     | 
    
         
            +
                },
         
     | 
| 
      
 1851 
     | 
    
         
            +
                "contracts/type/Version.sol": {
         
     | 
| 
      
 1852 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 1853 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1854 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1855 
     | 
    
         
            +
                      "start": 9299
         
     | 
| 
      
 1856 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1857 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1858 
     | 
    
         
            +
                }
         
     | 
| 
      
 1859 
     | 
    
         
            +
              },
         
     | 
| 
      
 1860 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 1861 
     | 
    
         
            +
                "contracts/type/Amount.sol": {
         
     | 
| 
      
 1862 
     | 
    
         
            +
                  "AmountLib": [
         
     | 
| 
      
 1863 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1864 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1865 
     | 
    
         
            +
                      "start": 9280
         
     | 
| 
      
 1866 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1867 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1868 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1869 
     | 
    
         
            +
                      "start": 9504
         
     | 
| 
      
 1870 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1871 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1872 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1873 
     | 
    
         
            +
                      "start": 14191
         
     | 
| 
      
 1874 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1875 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1876 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1877 
     | 
    
         
            +
                      "start": 16188
         
     | 
| 
      
 1878 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1879 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1880 
     | 
    
         
            +
                },
         
     | 
| 
      
 1881 
     | 
    
         
            +
                "contracts/type/NftId.sol": {
         
     | 
| 
      
 1882 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1883 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1884 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1885 
     | 
    
         
            +
                      "start": 3306
         
     | 
| 
      
 1886 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1887 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1888 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1889 
     | 
    
         
            +
                      "start": 4154
         
     | 
| 
      
 1890 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1891 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1892 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1893 
     | 
    
         
            +
                      "start": 6819
         
     | 
| 
      
 1894 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1895 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1896 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1897 
     | 
    
         
            +
                      "start": 11021
         
     | 
| 
      
 1898 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1899 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1900 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1901 
     | 
    
         
            +
                      "start": 12503
         
     | 
| 
      
 1902 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1903 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1904 
     | 
    
         
            +
                },
         
     | 
| 
      
 1905 
     | 
    
         
            +
                "contracts/type/Referral.sol": {
         
     | 
| 
      
 1906 
     | 
    
         
            +
                  "ReferralLib": [
         
     | 
| 
      
 1907 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1908 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1909 
     | 
    
         
            +
                      "start": 5702
         
     | 
| 
      
 1910 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1911 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1912 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1913 
     | 
    
         
            +
                      "start": 5820
         
     | 
| 
      
 1914 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1915 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1916 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1917 
     | 
    
         
            +
                      "start": 7485
         
     | 
| 
      
 1918 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1919 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1920 
     | 
    
         
            +
                },
         
     | 
| 
      
 1921 
     | 
    
         
            +
                "contracts/type/RiskId.sol": {
         
     | 
| 
      
 1922 
     | 
    
         
            +
                  "RiskIdLib": [
         
     | 
| 
      
 1923 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1924 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1925 
     | 
    
         
            +
                      "start": 2121
         
     | 
| 
      
 1926 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1927 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1928 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1929 
     | 
    
         
            +
                      "start": 4410
         
     | 
| 
      
 1930 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1931 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1932 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1933 
     | 
    
         
            +
                      "start": 7316
         
     | 
| 
      
 1934 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1935 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1936 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1937 
     | 
    
         
            +
                      "start": 8289
         
     | 
| 
      
 1938 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1939 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1940 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1941 
     | 
    
         
            +
                      "start": 8652
         
     | 
| 
      
 1942 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1943 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1944 
     | 
    
         
            +
                },
         
     | 
| 
      
 1945 
     | 
    
         
            +
                "contracts/type/Seconds.sol": {
         
     | 
| 
      
 1946 
     | 
    
         
            +
                  "SecondsLib": [
         
     | 
| 
      
 1947 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1948 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1949 
     | 
    
         
            +
                      "start": 8916
         
     | 
| 
      
 1950 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1951 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1952 
     | 
    
         
            +
                },
         
     | 
| 
      
 1953 
     | 
    
         
            +
                "contracts/type/Timestamp.sol": {
         
     | 
| 
      
 1954 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 1955 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1956 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1957 
     | 
    
         
            +
                      "start": 2289
         
     | 
| 
      
 1958 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1959 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1960 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1961 
     | 
    
         
            +
                      "start": 2491
         
     | 
| 
      
 1962 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1963 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1964 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1965 
     | 
    
         
            +
                      "start": 13493
         
     | 
| 
      
 1966 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1967 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1968 
     | 
    
         
            +
                },
         
     | 
| 
      
 1969 
     | 
    
         
            +
                "contracts/type/UFixed.sol": {
         
     | 
| 
      
 1970 
     | 
    
         
            +
                  "UFixedLib": [
         
     | 
| 
      
 1971 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1972 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1973 
     | 
    
         
            +
                      "start": 8883
         
     | 
| 
      
 1974 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1975 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1976 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1977 
     | 
    
         
            +
                      "start": 9120
         
     | 
| 
      
 1978 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1979 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1980 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1981 
     | 
    
         
            +
                      "start": 15912
         
     | 
| 
      
 1982 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1983 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1984 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1985 
     | 
    
         
            +
                      "start": 16013
         
     | 
| 
      
 1986 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1987 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1988 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1989 
     | 
    
         
            +
                      "start": 16084
         
     | 
| 
      
 1990 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1991 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1992 
     | 
    
         
            +
                },
         
     | 
| 
      
 1993 
     | 
    
         
            +
                "contracts/type/Version.sol": {
         
     | 
| 
      
 1994 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 1995 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1996 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1997 
     | 
    
         
            +
                      "start": 3106
         
     | 
| 
      
 1998 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1999 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 2000 
     | 
    
         
            +
                }
         
     | 
| 
      
 2001 
     | 
    
         
            +
              }
         
     | 
| 
      
 2002 
     | 
    
         
            +
            }
         
     |