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