@etherisc/gif-next 0.0.2-f13c010-035 → 0.0.2-f13d67f-541
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +90 -317
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +810 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +729 -287
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2008 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +438 -35
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +560 -220
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +191 -21
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +256 -16
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +426 -27
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +132 -300
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +427 -53
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +64 -173
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +585 -231
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +190 -78
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +44 -135
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +401 -78
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +160 -224
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +426 -52
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +308 -337
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +426 -52
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
- package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.json +408 -0
- package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.json +1198 -0
- package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.json +849 -0
- package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.json +1466 -0
- package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.json +844 -0
- package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.json +2185 -0
- package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.json +844 -0
- package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.json +376 -0
- package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.json +901 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +215 -257
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +844 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +95 -165
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +278 -233
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +844 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +946 -466
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +844 -0
- package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
- package/artifacts/contracts/{shared/IKeyValueStore.sol/IKeyValueStore.json → instance/BaseStore.sol/BaseStore.json} +51 -229
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +304 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +551 -50
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +417 -17
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +615 -105
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1121 -374
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +379 -68
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1127 -557
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +434 -81
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +119 -49
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1286 -1925
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3427 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +83 -175
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +425 -54
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +48 -74
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +56 -3
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +67 -111
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +157 -81
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +154 -46
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +106 -173
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +426 -52
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +317 -344
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +144 -92
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +219 -146
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +63 -128
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +380 -214
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +76 -159
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +621 -413
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +186 -66
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +327 -62
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +143 -43
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +199 -223
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +426 -52
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +294 -189
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +151 -83
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +268 -10
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +181 -19
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +167 -56
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +77 -3
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +175 -181
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +258 -22
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +296 -194
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +169 -77
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +139 -114
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +131 -59
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +193 -217
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +338 -87
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +141 -41
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +78 -19
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +56 -3
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +116 -57
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +848 -479
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1137 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +89 -37
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +119 -39
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2271 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +398 -64
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +459 -26
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +120 -60
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +66 -96
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +308 -542
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +155 -83
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +544 -4
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +48 -60
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +171 -356
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +48 -74
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +139 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +56 -3
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -2
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +66 -110
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +137 -62
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +51 -11
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +289 -112
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +70 -30
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1446 -164
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +214 -110
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1583 -296
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +160 -69
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +294 -177
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +257 -162
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +122 -46
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1632 -818
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +160 -88
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +11 -11
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +64 -19
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +94 -38
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +49 -50
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
- package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.json +33 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +69 -7
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +42 -157
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +64 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.json +69 -2
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +37 -5
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +61 -37
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +101 -2
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +95 -25
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
- package/contracts/accounting/AccountingService.sol +274 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +47 -0
- package/contracts/authorization/AccessAdmin.sol +389 -306
- package/contracts/authorization/AccessAdminLib.sol +678 -0
- package/contracts/authorization/AccessManagerCloneable.sol +128 -4
- package/contracts/authorization/Authorization.sol +161 -260
- package/contracts/authorization/IAccess.sol +29 -12
- package/contracts/authorization/IAccessAdmin.sol +89 -84
- package/contracts/authorization/IAuthorization.sol +9 -43
- package/contracts/authorization/IServiceAuthorization.sol +55 -17
- package/contracts/authorization/ServiceAuthorization.sol +228 -34
- package/contracts/distribution/BasicDistribution.sol +19 -18
- package/contracts/distribution/BasicDistributionAuthorization.sol +30 -10
- package/contracts/distribution/Distribution.sol +45 -85
- package/contracts/distribution/DistributionService.sol +192 -99
- package/contracts/distribution/DistributionServiceManager.sol +1 -1
- package/contracts/distribution/IDistributionComponent.sol +3 -10
- package/contracts/distribution/IDistributionService.sol +38 -24
- package/contracts/examples/fire/FirePool.sol +21 -8
- package/contracts/examples/fire/FirePoolAuthorization.sol +2 -1
- package/contracts/examples/fire/FireProduct.sol +38 -20
- package/contracts/examples/fire/FireProductAuthorization.sol +2 -1
- package/contracts/examples/flight/FlightLib.sol +279 -0
- package/contracts/examples/flight/FlightOracle.sol +168 -0
- package/contracts/examples/flight/FlightOracleAuthorization.sol +34 -0
- package/contracts/examples/flight/FlightPool.sol +89 -0
- package/contracts/examples/flight/FlightPoolAuthorization.sol +37 -0
- package/contracts/examples/flight/FlightProduct.sol +470 -0
- package/contracts/examples/flight/FlightProductAuthorization.sol +44 -0
- package/contracts/examples/flight/FlightUSD.sol +26 -0
- package/contracts/examples/flight/originalV1.sol +396 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +39 -8
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +4 -8
- package/contracts/examples/unpermissioned/SimplePool.sol +32 -6
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +132 -46
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BaseStore.sol +93 -0
- package/contracts/instance/BundleSet.sol +42 -38
- package/contracts/instance/IBaseStore.sol +37 -0
- package/contracts/instance/IInstance.sol +109 -19
- package/contracts/instance/IInstanceService.sol +61 -14
- package/contracts/instance/Instance.sol +184 -65
- package/contracts/instance/InstanceAdmin.sol +221 -193
- package/contracts/instance/InstanceAuthorizationV3.sol +153 -72
- package/contracts/instance/InstanceReader.sol +447 -314
- package/contracts/instance/InstanceService.sol +315 -214
- package/contracts/instance/InstanceServiceManager.sol +1 -1
- package/contracts/instance/InstanceStore.sol +152 -116
- package/contracts/instance/ProductStore.sol +290 -0
- package/contracts/instance/RiskSet.sol +126 -0
- package/contracts/instance/TargetNames.sol +10 -0
- package/contracts/instance/base/BalanceStore.sol +4 -6
- package/contracts/instance/base/ObjectCounter.sol +1 -2
- package/contracts/instance/base/ObjectLifecycle.sol +6 -8
- package/contracts/instance/base/ObjectSet.sol +31 -33
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +19 -10
- package/contracts/instance/module/IDistribution.sol +21 -8
- package/contracts/instance/module/IPolicy.sol +28 -7
- package/contracts/instance/module/IRisk.sol +5 -0
- package/contracts/oracle/BasicOracle.sol +3 -6
- package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
- package/contracts/oracle/IOracle.sol +9 -4
- package/contracts/oracle/IOracleService.sol +12 -12
- package/contracts/oracle/Oracle.sol +5 -9
- package/contracts/oracle/OracleService.sol +98 -79
- package/contracts/oracle/OracleServiceManager.sol +1 -1
- package/contracts/pool/BasicPool.sol +26 -19
- package/contracts/pool/BasicPoolAuthorization.sol +34 -10
- package/contracts/pool/BundleService.sol +75 -182
- package/contracts/pool/BundleServiceManager.sol +1 -1
- package/contracts/pool/IBundleService.sol +28 -55
- package/contracts/pool/IPoolComponent.sol +1 -7
- package/contracts/pool/IPoolService.sol +65 -62
- package/contracts/pool/Pool.sol +111 -115
- package/contracts/pool/PoolLib.sol +341 -0
- package/contracts/pool/PoolService.sol +299 -229
- package/contracts/pool/PoolServiceManager.sol +1 -1
- package/contracts/product/ApplicationService.sol +93 -25
- package/contracts/product/ApplicationServiceManager.sol +1 -1
- package/contracts/product/BasicProduct.sol +10 -15
- package/contracts/product/BasicProductAuthorization.sol +33 -11
- package/contracts/product/ClaimService.sol +221 -207
- package/contracts/product/ClaimServiceManager.sol +1 -1
- package/contracts/product/IApplicationService.sol +28 -3
- package/contracts/product/IClaimService.sol +18 -5
- package/contracts/product/IPolicyService.sol +34 -12
- package/contracts/product/IPricingService.sol +1 -0
- package/contracts/product/IProductComponent.sol +4 -1
- package/contracts/product/IRiskService.sol +25 -10
- package/contracts/product/PolicyService.sol +260 -306
- package/contracts/product/PolicyServiceLib.sol +139 -0
- package/contracts/product/PolicyServiceManager.sol +1 -1
- package/contracts/product/PricingService.sol +52 -46
- package/contracts/product/PricingServiceManager.sol +3 -3
- package/contracts/product/Product.sol +106 -70
- package/contracts/product/RiskService.sol +130 -37
- package/contracts/product/RiskServiceManager.sol +1 -1
- package/contracts/registry/ChainNft.sol +4 -2
- package/contracts/registry/IRegistry.sol +25 -24
- package/contracts/registry/IRelease.sol +29 -0
- package/contracts/registry/Registry.sol +31 -12
- package/contracts/registry/RegistryAdmin.sol +94 -369
- package/contracts/registry/RegistryAuthorization.sol +337 -0
- package/contracts/registry/RegistryService.sol +4 -4
- package/contracts/registry/RegistryServiceManager.sol +1 -1
- package/contracts/registry/ReleaseAdmin.sol +199 -0
- package/contracts/registry/ReleaseLifecycle.sol +2 -0
- package/contracts/registry/ReleaseRegistry.sol +158 -134
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -52
- package/contracts/registry/TokenRegistry.sol +61 -59
- package/contracts/shared/Component.sol +58 -119
- package/contracts/shared/ComponentService.sol +400 -395
- package/contracts/shared/ComponentServiceManager.sol +1 -1
- package/contracts/shared/ContractLib.sol +277 -3
- package/contracts/shared/IComponent.sol +2 -18
- package/contracts/shared/IComponentService.sol +28 -38
- package/contracts/shared/IInstanceLinkedComponent.sol +0 -11
- package/contracts/shared/INftOwnable.sol +2 -0
- package/contracts/shared/IRegisterable.sol +15 -5
- package/contracts/shared/IService.sol +3 -5
- package/contracts/shared/InitializableERC165.sol +9 -1
- package/contracts/shared/InstanceLinkedComponent.sol +63 -44
- package/contracts/shared/NftOwnable.sol +8 -6
- package/contracts/shared/PolicyHolder.sol +4 -3
- package/contracts/shared/Registerable.sol +41 -20
- package/contracts/shared/RegistryLinked.sol +7 -13
- package/contracts/shared/Service.sol +13 -30
- package/contracts/shared/TokenHandler.sol +264 -105
- package/contracts/shared/TokenHandlerDeployerLib.sol +10 -2
- package/contracts/staking/IStaking.sol +270 -72
- package/contracts/staking/IStakingService.sol +45 -75
- package/contracts/staking/ITargetLimitHandler.sol +17 -0
- package/contracts/staking/Staking.sol +522 -222
- package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +55 -84
- package/contracts/staking/StakingManager.sol +4 -3
- package/contracts/staking/StakingReader.sol +58 -77
- package/contracts/staking/StakingService.sol +62 -148
- package/contracts/staking/StakingServiceManager.sol +6 -4
- package/contracts/staking/StakingStore.sol +1093 -330
- package/contracts/staking/TargetHandler.sol +132 -0
- package/contracts/staking/TargetManagerLib.sol +69 -46
- package/contracts/type/Amount.sol +4 -0
- package/contracts/type/Blocknumber.sol +17 -22
- package/contracts/type/ChainId.sol +101 -0
- package/contracts/type/Fee.sol +8 -8
- package/contracts/type/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/type/NftId.sol +6 -0
- package/contracts/type/ObjectType.sol +70 -68
- package/contracts/type/Referral.sol +6 -0
- package/contracts/type/RequestIdSet.sol +62 -0
- package/contracts/type/RiskId.sol +26 -8
- package/contracts/type/RoleId.sol +63 -45
- package/contracts/type/Seconds.sol +23 -0
- package/contracts/type/Selector.sol +5 -0
- package/contracts/type/String.sol +42 -0
- package/contracts/type/Timestamp.sol +14 -8
- package/contracts/type/UFixed.sol +35 -127
- package/contracts/type/Version.sol +54 -5
- package/contracts/upgradeability/IVersionable.sol +3 -0
- package/contracts/upgradeability/ProxyManager.sol +27 -13
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
- package/contracts/upgradeability/Versionable.sol +6 -3
- package/package.json +4 -4
- package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +0 -4
- package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +0 -1196
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
- package/artifacts/contracts/shared/ComponentServiceHelperLib.sol/ComponentServiceHelperLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ComponentServiceHelperLib.sol/ComponentServiceHelperLib.json +0 -206
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +0 -474
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +0 -538
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -440
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -205
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
- package/contracts/authorization/ReleaseAccessManager.sol +0 -38
- package/contracts/instance/module/IAccess.sol +0 -46
- package/contracts/shared/ComponentServiceHelperLib.sol +0 -118
- package/contracts/shared/ComponentVerifyingService.sol +0 -126
- package/contracts/shared/IKeyValueStore.sol +0 -54
- package/contracts/shared/KeyValueStore.sol +0 -131
- package/contracts/staking/StakingLifecycle.sol +0 -23
| @@ -66,53 +66,28 @@ | |
| 66 66 | 
             
                {
         | 
| 67 67 | 
             
                  "inputs": [
         | 
| 68 68 | 
             
                    {
         | 
| 69 | 
            -
                      "internalType": " | 
| 70 | 
            -
                      "name": " | 
| 71 | 
            -
                      "type": " | 
| 69 | 
            +
                      "internalType": "Key32",
         | 
| 70 | 
            +
                      "name": "key",
         | 
| 71 | 
            +
                      "type": "bytes32"
         | 
| 72 72 | 
             
                    },
         | 
| 73 73 | 
             
                    {
         | 
| 74 74 | 
             
                      "internalType": "ObjectType",
         | 
| 75 75 | 
             
                      "name": "objectType",
         | 
| 76 76 | 
             
                      "type": "uint8"
         | 
| 77 | 
            -
                    },
         | 
| 78 | 
            -
                    {
         | 
| 79 | 
            -
                      "internalType": "StateId",
         | 
| 80 | 
            -
                      "name": "actual",
         | 
| 81 | 
            -
                      "type": "uint8"
         | 
| 82 | 
            -
                    },
         | 
| 83 | 
            -
                    {
         | 
| 84 | 
            -
                      "internalType": "StateId",
         | 
| 85 | 
            -
                      "name": "required",
         | 
| 86 | 
            -
                      "type": "uint8"
         | 
| 87 77 | 
             
                    }
         | 
| 88 78 | 
             
                  ],
         | 
| 89 | 
            -
                  "name": " | 
| 79 | 
            +
                  "name": "ErrorBaseStoreAlreadyCreated",
         | 
| 90 80 | 
             
                  "type": "error"
         | 
| 91 81 | 
             
                },
         | 
| 92 82 | 
             
                {
         | 
| 93 83 | 
             
                  "inputs": [
         | 
| 94 | 
            -
                    {
         | 
| 95 | 
            -
                      "internalType": "address",
         | 
| 96 | 
            -
                      "name": "contractAddress",
         | 
| 97 | 
            -
                      "type": "address"
         | 
| 98 | 
            -
                    },
         | 
| 99 84 | 
             
                    {
         | 
| 100 85 | 
             
                      "internalType": "ObjectType",
         | 
| 101 86 | 
             
                      "name": "objectType",
         | 
| 102 87 | 
             
                      "type": "uint8"
         | 
| 103 | 
            -
                    },
         | 
| 104 | 
            -
                    {
         | 
| 105 | 
            -
                      "internalType": "StateId",
         | 
| 106 | 
            -
                      "name": "fromStateId",
         | 
| 107 | 
            -
                      "type": "uint8"
         | 
| 108 | 
            -
                    },
         | 
| 109 | 
            -
                    {
         | 
| 110 | 
            -
                      "internalType": "StateId",
         | 
| 111 | 
            -
                      "name": "toStateId",
         | 
| 112 | 
            -
                      "type": "uint8"
         | 
| 113 88 | 
             
                    }
         | 
| 114 89 | 
             
                  ],
         | 
| 115 | 
            -
                  "name": " | 
| 90 | 
            +
                  "name": "ErrorBaseStoreNoLifecycle",
         | 
| 116 91 | 
             
                  "type": "error"
         | 
| 117 92 | 
             
                },
         | 
| 118 93 | 
             
                {
         | 
| @@ -121,58 +96,83 @@ | |
| 121 96 | 
             
                      "internalType": "Key32",
         | 
| 122 97 | 
             
                      "name": "key",
         | 
| 123 98 | 
             
                      "type": "bytes32"
         | 
| 124 | 
            -
                    },
         | 
| 125 | 
            -
                    {
         | 
| 126 | 
            -
                      "internalType": "ObjectType",
         | 
| 127 | 
            -
                      "name": "objectType",
         | 
| 128 | 
            -
                      "type": "uint8"
         | 
| 129 99 | 
             
                    }
         | 
| 130 100 | 
             
                  ],
         | 
| 131 | 
            -
                  "name": " | 
| 101 | 
            +
                  "name": "ErrorBaseStoreNotExisting",
         | 
| 132 102 | 
             
                  "type": "error"
         | 
| 133 103 | 
             
                },
         | 
| 134 104 | 
             
                {
         | 
| 135 105 | 
             
                  "inputs": [
         | 
| 136 106 | 
             
                    {
         | 
| 137 | 
            -
                      "internalType": " | 
| 138 | 
            -
                      "name": " | 
| 139 | 
            -
                      "type": " | 
| 107 | 
            +
                      "internalType": "Key32",
         | 
| 108 | 
            +
                      "name": "key",
         | 
| 109 | 
            +
                      "type": "bytes32"
         | 
| 140 110 | 
             
                    }
         | 
| 141 111 | 
             
                  ],
         | 
| 142 | 
            -
                  "name": " | 
| 112 | 
            +
                  "name": "ErrorBaseStoreStateZero",
         | 
| 143 113 | 
             
                  "type": "error"
         | 
| 144 114 | 
             
                },
         | 
| 145 115 | 
             
                {
         | 
| 146 116 | 
             
                  "inputs": [
         | 
| 147 117 | 
             
                    {
         | 
| 148 | 
            -
                      "internalType": " | 
| 149 | 
            -
                      "name": " | 
| 150 | 
            -
                      "type": " | 
| 118 | 
            +
                      "internalType": "ObjectType",
         | 
| 119 | 
            +
                      "name": "objectType",
         | 
| 120 | 
            +
                      "type": "uint8"
         | 
| 151 121 | 
             
                    }
         | 
| 152 122 | 
             
                  ],
         | 
| 153 | 
            -
                  "name": " | 
| 123 | 
            +
                  "name": "ErrorBaseStoreTypeUndefined",
         | 
| 154 124 | 
             
                  "type": "error"
         | 
| 155 125 | 
             
                },
         | 
| 156 126 | 
             
                {
         | 
| 157 127 | 
             
                  "inputs": [
         | 
| 158 128 | 
             
                    {
         | 
| 159 | 
            -
                      "internalType": " | 
| 160 | 
            -
                      "name": " | 
| 161 | 
            -
                      "type": " | 
| 129 | 
            +
                      "internalType": "address",
         | 
| 130 | 
            +
                      "name": "contractAddress",
         | 
| 131 | 
            +
                      "type": "address"
         | 
| 132 | 
            +
                    },
         | 
| 133 | 
            +
                    {
         | 
| 134 | 
            +
                      "internalType": "ObjectType",
         | 
| 135 | 
            +
                      "name": "objectType",
         | 
| 136 | 
            +
                      "type": "uint8"
         | 
| 137 | 
            +
                    },
         | 
| 138 | 
            +
                    {
         | 
| 139 | 
            +
                      "internalType": "StateId",
         | 
| 140 | 
            +
                      "name": "actual",
         | 
| 141 | 
            +
                      "type": "uint8"
         | 
| 142 | 
            +
                    },
         | 
| 143 | 
            +
                    {
         | 
| 144 | 
            +
                      "internalType": "StateId",
         | 
| 145 | 
            +
                      "name": "required",
         | 
| 146 | 
            +
                      "type": "uint8"
         | 
| 162 147 | 
             
                    }
         | 
| 163 148 | 
             
                  ],
         | 
| 164 | 
            -
                  "name": " | 
| 149 | 
            +
                  "name": "ErrorFromStateMissmatch",
         | 
| 165 150 | 
             
                  "type": "error"
         | 
| 166 151 | 
             
                },
         | 
| 167 152 | 
             
                {
         | 
| 168 153 | 
             
                  "inputs": [
         | 
| 154 | 
            +
                    {
         | 
| 155 | 
            +
                      "internalType": "address",
         | 
| 156 | 
            +
                      "name": "contractAddress",
         | 
| 157 | 
            +
                      "type": "address"
         | 
| 158 | 
            +
                    },
         | 
| 169 159 | 
             
                    {
         | 
| 170 160 | 
             
                      "internalType": "ObjectType",
         | 
| 171 161 | 
             
                      "name": "objectType",
         | 
| 172 162 | 
             
                      "type": "uint8"
         | 
| 163 | 
            +
                    },
         | 
| 164 | 
            +
                    {
         | 
| 165 | 
            +
                      "internalType": "StateId",
         | 
| 166 | 
            +
                      "name": "fromStateId",
         | 
| 167 | 
            +
                      "type": "uint8"
         | 
| 168 | 
            +
                    },
         | 
| 169 | 
            +
                    {
         | 
| 170 | 
            +
                      "internalType": "StateId",
         | 
| 171 | 
            +
                      "name": "toStateId",
         | 
| 172 | 
            +
                      "type": "uint8"
         | 
| 173 173 | 
             
                    }
         | 
| 174 174 | 
             
                  ],
         | 
| 175 | 
            -
                  "name": " | 
| 175 | 
            +
                  "name": "ErrorInvalidStateTransition",
         | 
| 176 176 | 
             
                  "type": "error"
         | 
| 177 177 | 
             
                },
         | 
| 178 178 | 
             
                {
         | 
| @@ -252,7 +252,7 @@ | |
| 252 252 | 
             
                      "indexed": false,
         | 
| 253 253 | 
             
                      "internalType": "Blocknumber",
         | 
| 254 254 | 
             
                      "name": "lastUpdatedIn",
         | 
| 255 | 
            -
                      "type": " | 
| 255 | 
            +
                      "type": "uint40"
         | 
| 256 256 | 
             
                    }
         | 
| 257 257 | 
             
                  ],
         | 
| 258 258 | 
             
                  "name": "LogBalanceStoreBalanceDecreased",
         | 
| @@ -283,7 +283,7 @@ | |
| 283 283 | 
             
                      "indexed": false,
         | 
| 284 284 | 
             
                      "internalType": "Blocknumber",
         | 
| 285 285 | 
             
                      "name": "lastUpdatedIn",
         | 
| 286 | 
            -
                      "type": " | 
| 286 | 
            +
                      "type": "uint40"
         | 
| 287 287 | 
             
                    }
         | 
| 288 288 | 
             
                  ],
         | 
| 289 289 | 
             
                  "name": "LogBalanceStoreBalanceIncreased",
         | 
| @@ -314,7 +314,7 @@ | |
| 314 314 | 
             
                      "indexed": false,
         | 
| 315 315 | 
             
                      "internalType": "Blocknumber",
         | 
| 316 316 | 
             
                      "name": "lastUpdatedIn",
         | 
| 317 | 
            -
                      "type": " | 
| 317 | 
            +
                      "type": "uint40"
         | 
| 318 318 | 
             
                    }
         | 
| 319 319 | 
             
                  ],
         | 
| 320 320 | 
             
                  "name": "LogBalanceStoreFeesDecreased",
         | 
| @@ -345,7 +345,7 @@ | |
| 345 345 | 
             
                      "indexed": false,
         | 
| 346 346 | 
             
                      "internalType": "Blocknumber",
         | 
| 347 347 | 
             
                      "name": "lastUpdatedIn",
         | 
| 348 | 
            -
                      "type": " | 
| 348 | 
            +
                      "type": "uint40"
         | 
| 349 349 | 
             
                    }
         | 
| 350 350 | 
             
                  ],
         | 
| 351 351 | 
             
                  "name": "LogBalanceStoreFeesIncreased",
         | 
| @@ -376,7 +376,7 @@ | |
| 376 376 | 
             
                      "indexed": false,
         | 
| 377 377 | 
             
                      "internalType": "Blocknumber",
         | 
| 378 378 | 
             
                      "name": "lastUpdatedIn",
         | 
| 379 | 
            -
                      "type": " | 
| 379 | 
            +
                      "type": "uint40"
         | 
| 380 380 | 
             
                    }
         | 
| 381 381 | 
             
                  ],
         | 
| 382 382 | 
             
                  "name": "LogBalanceStoreLockedDecreased",
         | 
| @@ -407,7 +407,7 @@ | |
| 407 407 | 
             
                      "indexed": false,
         | 
| 408 408 | 
             
                      "internalType": "Blocknumber",
         | 
| 409 409 | 
             
                      "name": "lastUpdatedIn",
         | 
| 410 | 
            -
                      "type": " | 
| 410 | 
            +
                      "type": "uint40"
         | 
| 411 411 | 
             
                    }
         | 
| 412 412 | 
             
                  ],
         | 
| 413 413 | 
             
                  "name": "LogBalanceStoreLockedIncreased",
         | 
| @@ -431,15 +431,9 @@ | |
| 431 431 | 
             
                  "inputs": [
         | 
| 432 432 | 
             
                    {
         | 
| 433 433 | 
             
                      "indexed": false,
         | 
| 434 | 
            -
                      "internalType": " | 
| 435 | 
            -
                      "name": " | 
| 436 | 
            -
                      "type": " | 
| 437 | 
            -
                    },
         | 
| 438 | 
            -
                    {
         | 
| 439 | 
            -
                      "indexed": false,
         | 
| 440 | 
            -
                      "internalType": "KeyId",
         | 
| 441 | 
            -
                      "name": "keyId",
         | 
| 442 | 
            -
                      "type": "bytes31"
         | 
| 434 | 
            +
                      "internalType": "NftId",
         | 
| 435 | 
            +
                      "name": "bundleNftId",
         | 
| 436 | 
            +
                      "type": "uint96"
         | 
| 443 437 | 
             
                    },
         | 
| 444 438 | 
             
                    {
         | 
| 445 439 | 
             
                      "indexed": false,
         | 
| @@ -460,7 +454,7 @@ | |
| 460 454 | 
             
                      "type": "address"
         | 
| 461 455 | 
             
                    }
         | 
| 462 456 | 
             
                  ],
         | 
| 463 | 
            -
                  "name": " | 
| 457 | 
            +
                  "name": "LogProductStoreBundleInfoCreated",
         | 
| 464 458 | 
             
                  "type": "event"
         | 
| 465 459 | 
             
                },
         | 
| 466 460 | 
             
                {
         | 
| @@ -468,20 +462,20 @@ | |
| 468 462 | 
             
                  "inputs": [
         | 
| 469 463 | 
             
                    {
         | 
| 470 464 | 
             
                      "indexed": false,
         | 
| 471 | 
            -
                      "internalType": " | 
| 472 | 
            -
                      "name": " | 
| 473 | 
            -
                      "type": " | 
| 465 | 
            +
                      "internalType": "NftId",
         | 
| 466 | 
            +
                      "name": "bundleNftId",
         | 
| 467 | 
            +
                      "type": "uint96"
         | 
| 474 468 | 
             
                    },
         | 
| 475 469 | 
             
                    {
         | 
| 476 470 | 
             
                      "indexed": false,
         | 
| 477 | 
            -
                      "internalType": " | 
| 478 | 
            -
                      "name": " | 
| 479 | 
            -
                      "type": " | 
| 471 | 
            +
                      "internalType": "StateId",
         | 
| 472 | 
            +
                      "name": "oldState",
         | 
| 473 | 
            +
                      "type": "uint8"
         | 
| 480 474 | 
             
                    },
         | 
| 481 475 | 
             
                    {
         | 
| 482 476 | 
             
                      "indexed": false,
         | 
| 483 477 | 
             
                      "internalType": "StateId",
         | 
| 484 | 
            -
                      "name": " | 
| 478 | 
            +
                      "name": "newState",
         | 
| 485 479 | 
             
                      "type": "uint8"
         | 
| 486 480 | 
             
                    },
         | 
| 487 481 | 
             
                    {
         | 
| @@ -500,10 +494,10 @@ | |
| 500 494 | 
             
                      "indexed": false,
         | 
| 501 495 | 
             
                      "internalType": "Blocknumber",
         | 
| 502 496 | 
             
                      "name": "lastUpdatedIn",
         | 
| 503 | 
            -
                      "type": " | 
| 497 | 
            +
                      "type": "uint40"
         | 
| 504 498 | 
             
                    }
         | 
| 505 499 | 
             
                  ],
         | 
| 506 | 
            -
                  "name": " | 
| 500 | 
            +
                  "name": "LogProductStoreBundleInfoUpdated",
         | 
| 507 501 | 
             
                  "type": "event"
         | 
| 508 502 | 
             
                },
         | 
| 509 503 | 
             
                {
         | 
| @@ -511,26 +505,51 @@ | |
| 511 505 | 
             
                  "inputs": [
         | 
| 512 506 | 
             
                    {
         | 
| 513 507 | 
             
                      "indexed": false,
         | 
| 514 | 
            -
                      "internalType": " | 
| 515 | 
            -
                      "name": " | 
| 508 | 
            +
                      "internalType": "NftId",
         | 
| 509 | 
            +
                      "name": "componentNftId",
         | 
| 510 | 
            +
                      "type": "uint96"
         | 
| 511 | 
            +
                    },
         | 
| 512 | 
            +
                    {
         | 
| 513 | 
            +
                      "indexed": false,
         | 
| 514 | 
            +
                      "internalType": "StateId",
         | 
| 515 | 
            +
                      "name": "state",
         | 
| 516 516 | 
             
                      "type": "uint8"
         | 
| 517 517 | 
             
                    },
         | 
| 518 518 | 
             
                    {
         | 
| 519 519 | 
             
                      "indexed": false,
         | 
| 520 | 
            -
                      "internalType": " | 
| 521 | 
            -
                      "name": " | 
| 522 | 
            -
                      "type": " | 
| 520 | 
            +
                      "internalType": "address",
         | 
| 521 | 
            +
                      "name": "createdby",
         | 
| 522 | 
            +
                      "type": "address"
         | 
| 523 | 
            +
                    },
         | 
| 524 | 
            +
                    {
         | 
| 525 | 
            +
                      "indexed": false,
         | 
| 526 | 
            +
                      "internalType": "address",
         | 
| 527 | 
            +
                      "name": "txOrigin",
         | 
| 528 | 
            +
                      "type": "address"
         | 
| 529 | 
            +
                    }
         | 
| 530 | 
            +
                  ],
         | 
| 531 | 
            +
                  "name": "LogProductStoreComponentInfoCreated",
         | 
| 532 | 
            +
                  "type": "event"
         | 
| 533 | 
            +
                },
         | 
| 534 | 
            +
                {
         | 
| 535 | 
            +
                  "anonymous": false,
         | 
| 536 | 
            +
                  "inputs": [
         | 
| 537 | 
            +
                    {
         | 
| 538 | 
            +
                      "indexed": false,
         | 
| 539 | 
            +
                      "internalType": "NftId",
         | 
| 540 | 
            +
                      "name": "componentNftId",
         | 
| 541 | 
            +
                      "type": "uint96"
         | 
| 523 542 | 
             
                    },
         | 
| 524 543 | 
             
                    {
         | 
| 525 544 | 
             
                      "indexed": false,
         | 
| 526 545 | 
             
                      "internalType": "StateId",
         | 
| 527 | 
            -
                      "name": " | 
| 546 | 
            +
                      "name": "oldState",
         | 
| 528 547 | 
             
                      "type": "uint8"
         | 
| 529 548 | 
             
                    },
         | 
| 530 549 | 
             
                    {
         | 
| 531 550 | 
             
                      "indexed": false,
         | 
| 532 551 | 
             
                      "internalType": "StateId",
         | 
| 533 | 
            -
                      "name": " | 
| 552 | 
            +
                      "name": "newState",
         | 
| 534 553 | 
             
                      "type": "uint8"
         | 
| 535 554 | 
             
                    },
         | 
| 536 555 | 
             
                    {
         | 
| @@ -549,151 +568,421 @@ | |
| 549 568 | 
             
                      "indexed": false,
         | 
| 550 569 | 
             
                      "internalType": "Blocknumber",
         | 
| 551 570 | 
             
                      "name": "lastUpdatedIn",
         | 
| 552 | 
            -
                      "type": " | 
| 571 | 
            +
                      "type": "uint40"
         | 
| 553 572 | 
             
                    }
         | 
| 554 573 | 
             
                  ],
         | 
| 555 | 
            -
                  "name": " | 
| 574 | 
            +
                  "name": "LogProductStoreComponentInfoUpdated",
         | 
| 556 575 | 
             
                  "type": "event"
         | 
| 557 576 | 
             
                },
         | 
| 558 577 | 
             
                {
         | 
| 559 | 
            -
                  " | 
| 560 | 
            -
                  " | 
| 561 | 
            -
             | 
| 578 | 
            +
                  "anonymous": false,
         | 
| 579 | 
            +
                  "inputs": [
         | 
| 580 | 
            +
                    {
         | 
| 581 | 
            +
                      "indexed": false,
         | 
| 582 | 
            +
                      "internalType": "NftId",
         | 
| 583 | 
            +
                      "name": "distributorNftId",
         | 
| 584 | 
            +
                      "type": "uint96"
         | 
| 585 | 
            +
                    },
         | 
| 586 | 
            +
                    {
         | 
| 587 | 
            +
                      "indexed": false,
         | 
| 588 | 
            +
                      "internalType": "StateId",
         | 
| 589 | 
            +
                      "name": "state",
         | 
| 590 | 
            +
                      "type": "uint8"
         | 
| 591 | 
            +
                    },
         | 
| 562 592 | 
             
                    {
         | 
| 593 | 
            +
                      "indexed": false,
         | 
| 563 594 | 
             
                      "internalType": "address",
         | 
| 564 | 
            -
                      "name": "",
         | 
| 595 | 
            +
                      "name": "createdBy",
         | 
| 596 | 
            +
                      "type": "address"
         | 
| 597 | 
            +
                    },
         | 
| 598 | 
            +
                    {
         | 
| 599 | 
            +
                      "indexed": false,
         | 
| 600 | 
            +
                      "internalType": "address",
         | 
| 601 | 
            +
                      "name": "txOrigin",
         | 
| 565 602 | 
             
                      "type": "address"
         | 
| 566 603 | 
             
                    }
         | 
| 567 604 | 
             
                  ],
         | 
| 568 | 
            -
                  " | 
| 569 | 
            -
                  "type": " | 
| 605 | 
            +
                  "name": "LogProductStoreDistributorInfoCreated",
         | 
| 606 | 
            +
                  "type": "event"
         | 
| 570 607 | 
             
                },
         | 
| 571 608 | 
             
                {
         | 
| 609 | 
            +
                  "anonymous": false,
         | 
| 572 610 | 
             
                  "inputs": [
         | 
| 573 611 | 
             
                    {
         | 
| 574 | 
            -
                      " | 
| 575 | 
            -
                      " | 
| 576 | 
            -
                      " | 
| 612 | 
            +
                      "indexed": false,
         | 
| 613 | 
            +
                      "internalType": "NftId",
         | 
| 614 | 
            +
                      "name": "distributorNftId",
         | 
| 615 | 
            +
                      "type": "uint96"
         | 
| 577 616 | 
             
                    },
         | 
| 578 617 | 
             
                    {
         | 
| 579 | 
            -
                      " | 
| 580 | 
            -
                      " | 
| 618 | 
            +
                      "indexed": false,
         | 
| 619 | 
            +
                      "internalType": "StateId",
         | 
| 620 | 
            +
                      "name": "oldState",
         | 
| 581 621 | 
             
                      "type": "uint8"
         | 
| 582 622 | 
             
                    },
         | 
| 583 623 | 
             
                    {
         | 
| 624 | 
            +
                      "indexed": false,
         | 
| 584 625 | 
             
                      "internalType": "StateId",
         | 
| 585 | 
            -
                      "name": " | 
| 626 | 
            +
                      "name": "newState",
         | 
| 586 627 | 
             
                      "type": "uint8"
         | 
| 587 628 | 
             
                    },
         | 
| 588 629 | 
             
                    {
         | 
| 589 | 
            -
                      " | 
| 590 | 
            -
                      " | 
| 591 | 
            -
                      " | 
| 630 | 
            +
                      "indexed": false,
         | 
| 631 | 
            +
                      "internalType": "address",
         | 
| 632 | 
            +
                      "name": "updatedBy",
         | 
| 633 | 
            +
                      "type": "address"
         | 
| 634 | 
            +
                    },
         | 
| 635 | 
            +
                    {
         | 
| 636 | 
            +
                      "indexed": false,
         | 
| 637 | 
            +
                      "internalType": "address",
         | 
| 638 | 
            +
                      "name": "txOrigin",
         | 
| 639 | 
            +
                      "type": "address"
         | 
| 640 | 
            +
                    },
         | 
| 641 | 
            +
                    {
         | 
| 642 | 
            +
                      "indexed": false,
         | 
| 643 | 
            +
                      "internalType": "Blocknumber",
         | 
| 644 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 645 | 
            +
                      "type": "uint40"
         | 
| 592 646 | 
             
                    }
         | 
| 593 647 | 
             
                  ],
         | 
| 594 | 
            -
                  "name": " | 
| 595 | 
            -
                  " | 
| 596 | 
            -
                  "stateMutability": "view",
         | 
| 597 | 
            -
                  "type": "function"
         | 
| 648 | 
            +
                  "name": "LogProductStoreDistributorInfoUpdated",
         | 
| 649 | 
            +
                  "type": "event"
         | 
| 598 650 | 
             
                },
         | 
| 599 651 | 
             
                {
         | 
| 652 | 
            +
                  "anonymous": false,
         | 
| 600 653 | 
             
                  "inputs": [
         | 
| 601 654 | 
             
                    {
         | 
| 602 | 
            -
                      " | 
| 603 | 
            -
                      " | 
| 604 | 
            -
                      " | 
| 655 | 
            +
                      "indexed": false,
         | 
| 656 | 
            +
                      "internalType": "DistributorType",
         | 
| 657 | 
            +
                      "name": "distributorType",
         | 
| 658 | 
            +
                      "type": "bytes8"
         | 
| 605 659 | 
             
                    },
         | 
| 606 660 | 
             
                    {
         | 
| 607 | 
            -
                      " | 
| 608 | 
            -
             | 
| 609 | 
            -
             | 
| 610 | 
            -
             | 
| 611 | 
            -
             | 
| 612 | 
            -
             | 
| 613 | 
            -
             | 
| 614 | 
            -
             | 
| 615 | 
            -
             | 
| 616 | 
            -
             | 
| 617 | 
            -
             | 
| 618 | 
            -
             | 
| 619 | 
            -
             | 
| 620 | 
            -
             | 
| 621 | 
            -
             | 
| 622 | 
            -
             | 
| 623 | 
            -
             | 
| 624 | 
            -
             | 
| 625 | 
            -
             | 
| 626 | 
            -
             | 
| 627 | 
            -
             | 
| 628 | 
            -
             | 
| 629 | 
            -
             | 
| 630 | 
            -
             | 
| 631 | 
            -
             | 
| 632 | 
            -
             | 
| 633 | 
            -
             | 
| 634 | 
            -
             | 
| 635 | 
            -
             | 
| 636 | 
            -
             | 
| 637 | 
            -
             | 
| 638 | 
            -
             | 
| 639 | 
            -
             | 
| 640 | 
            -
             | 
| 641 | 
            -
             | 
| 642 | 
            -
             | 
| 643 | 
            -
             | 
| 644 | 
            -
             | 
| 645 | 
            -
             | 
| 646 | 
            -
             | 
| 647 | 
            -
             | 
| 648 | 
            -
             | 
| 649 | 
            -
             | 
| 650 | 
            -
             | 
| 651 | 
            -
             | 
| 652 | 
            -
             | 
| 653 | 
            -
             | 
| 654 | 
            -
             | 
| 655 | 
            -
             | 
| 656 | 
            -
             | 
| 657 | 
            -
             | 
| 658 | 
            -
             | 
| 659 | 
            -
             | 
| 660 | 
            -
             | 
| 661 | 
            -
             | 
| 662 | 
            -
             | 
| 663 | 
            -
             | 
| 664 | 
            -
             | 
| 665 | 
            -
             | 
| 666 | 
            -
             | 
| 667 | 
            -
             | 
| 668 | 
            -
             | 
| 669 | 
            -
             | 
| 670 | 
            -
             | 
| 671 | 
            -
             | 
| 672 | 
            -
             | 
| 673 | 
            -
             | 
| 674 | 
            -
             | 
| 675 | 
            -
             | 
| 676 | 
            -
             | 
| 677 | 
            -
             | 
| 678 | 
            -
             | 
| 679 | 
            -
             | 
| 680 | 
            -
             | 
| 681 | 
            -
             | 
| 682 | 
            -
             | 
| 683 | 
            -
             | 
| 684 | 
            -
             | 
| 685 | 
            -
             | 
| 686 | 
            -
             | 
| 687 | 
            -
             | 
| 688 | 
            -
                       | 
| 689 | 
            -
                      " | 
| 690 | 
            -
                      " | 
| 691 | 
            -
             | 
| 661 | 
            +
                      "indexed": false,
         | 
| 662 | 
            +
                      "internalType": "StateId",
         | 
| 663 | 
            +
                      "name": "state",
         | 
| 664 | 
            +
                      "type": "uint8"
         | 
| 665 | 
            +
                    },
         | 
| 666 | 
            +
                    {
         | 
| 667 | 
            +
                      "indexed": false,
         | 
| 668 | 
            +
                      "internalType": "address",
         | 
| 669 | 
            +
                      "name": "createdBy",
         | 
| 670 | 
            +
                      "type": "address"
         | 
| 671 | 
            +
                    },
         | 
| 672 | 
            +
                    {
         | 
| 673 | 
            +
                      "indexed": false,
         | 
| 674 | 
            +
                      "internalType": "address",
         | 
| 675 | 
            +
                      "name": "txOrigin",
         | 
| 676 | 
            +
                      "type": "address"
         | 
| 677 | 
            +
                    }
         | 
| 678 | 
            +
                  ],
         | 
| 679 | 
            +
                  "name": "LogProductStoreDistributorTypeInfoCreated",
         | 
| 680 | 
            +
                  "type": "event"
         | 
| 681 | 
            +
                },
         | 
| 682 | 
            +
                {
         | 
| 683 | 
            +
                  "anonymous": false,
         | 
| 684 | 
            +
                  "inputs": [
         | 
| 685 | 
            +
                    {
         | 
| 686 | 
            +
                      "indexed": false,
         | 
| 687 | 
            +
                      "internalType": "DistributorType",
         | 
| 688 | 
            +
                      "name": "distributorType",
         | 
| 689 | 
            +
                      "type": "bytes8"
         | 
| 690 | 
            +
                    },
         | 
| 691 | 
            +
                    {
         | 
| 692 | 
            +
                      "indexed": false,
         | 
| 693 | 
            +
                      "internalType": "StateId",
         | 
| 694 | 
            +
                      "name": "oldState",
         | 
| 695 | 
            +
                      "type": "uint8"
         | 
| 696 | 
            +
                    },
         | 
| 697 | 
            +
                    {
         | 
| 698 | 
            +
                      "indexed": false,
         | 
| 699 | 
            +
                      "internalType": "StateId",
         | 
| 700 | 
            +
                      "name": "newState",
         | 
| 701 | 
            +
                      "type": "uint8"
         | 
| 702 | 
            +
                    },
         | 
| 703 | 
            +
                    {
         | 
| 704 | 
            +
                      "indexed": false,
         | 
| 705 | 
            +
                      "internalType": "address",
         | 
| 706 | 
            +
                      "name": "updatedBy",
         | 
| 707 | 
            +
                      "type": "address"
         | 
| 708 | 
            +
                    },
         | 
| 709 | 
            +
                    {
         | 
| 710 | 
            +
                      "indexed": false,
         | 
| 711 | 
            +
                      "internalType": "address",
         | 
| 712 | 
            +
                      "name": "txOrigin",
         | 
| 713 | 
            +
                      "type": "address"
         | 
| 714 | 
            +
                    },
         | 
| 715 | 
            +
                    {
         | 
| 716 | 
            +
                      "indexed": false,
         | 
| 717 | 
            +
                      "internalType": "Blocknumber",
         | 
| 718 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 719 | 
            +
                      "type": "uint40"
         | 
| 720 | 
            +
                    }
         | 
| 721 | 
            +
                  ],
         | 
| 722 | 
            +
                  "name": "LogProductStoreDistributorTypeInfoUpdated",
         | 
| 723 | 
            +
                  "type": "event"
         | 
| 724 | 
            +
                },
         | 
| 725 | 
            +
                {
         | 
| 726 | 
            +
                  "anonymous": false,
         | 
| 727 | 
            +
                  "inputs": [
         | 
| 728 | 
            +
                    {
         | 
| 729 | 
            +
                      "indexed": false,
         | 
| 730 | 
            +
                      "internalType": "NftId",
         | 
| 731 | 
            +
                      "name": "poolNftId",
         | 
| 732 | 
            +
                      "type": "uint96"
         | 
| 733 | 
            +
                    },
         | 
| 734 | 
            +
                    {
         | 
| 735 | 
            +
                      "indexed": false,
         | 
| 736 | 
            +
                      "internalType": "StateId",
         | 
| 737 | 
            +
                      "name": "state",
         | 
| 738 | 
            +
                      "type": "uint8"
         | 
| 739 | 
            +
                    },
         | 
| 740 | 
            +
                    {
         | 
| 741 | 
            +
                      "indexed": false,
         | 
| 742 | 
            +
                      "internalType": "address",
         | 
| 743 | 
            +
                      "name": "createdBy",
         | 
| 744 | 
            +
                      "type": "address"
         | 
| 745 | 
            +
                    },
         | 
| 746 | 
            +
                    {
         | 
| 747 | 
            +
                      "indexed": false,
         | 
| 748 | 
            +
                      "internalType": "address",
         | 
| 749 | 
            +
                      "name": "txOrigin",
         | 
| 750 | 
            +
                      "type": "address"
         | 
| 751 | 
            +
                    }
         | 
| 752 | 
            +
                  ],
         | 
| 753 | 
            +
                  "name": "LogProductStorePoolInfoCreated",
         | 
| 754 | 
            +
                  "type": "event"
         | 
| 755 | 
            +
                },
         | 
| 756 | 
            +
                {
         | 
| 757 | 
            +
                  "anonymous": false,
         | 
| 758 | 
            +
                  "inputs": [
         | 
| 759 | 
            +
                    {
         | 
| 760 | 
            +
                      "indexed": false,
         | 
| 761 | 
            +
                      "internalType": "NftId",
         | 
| 762 | 
            +
                      "name": "poolNftId",
         | 
| 763 | 
            +
                      "type": "uint96"
         | 
| 764 | 
            +
                    },
         | 
| 765 | 
            +
                    {
         | 
| 766 | 
            +
                      "indexed": false,
         | 
| 767 | 
            +
                      "internalType": "StateId",
         | 
| 768 | 
            +
                      "name": "oldState",
         | 
| 769 | 
            +
                      "type": "uint8"
         | 
| 770 | 
            +
                    },
         | 
| 771 | 
            +
                    {
         | 
| 772 | 
            +
                      "indexed": false,
         | 
| 773 | 
            +
                      "internalType": "StateId",
         | 
| 774 | 
            +
                      "name": "newState",
         | 
| 775 | 
            +
                      "type": "uint8"
         | 
| 776 | 
            +
                    },
         | 
| 777 | 
            +
                    {
         | 
| 778 | 
            +
                      "indexed": false,
         | 
| 779 | 
            +
                      "internalType": "address",
         | 
| 780 | 
            +
                      "name": "updatedBy",
         | 
| 781 | 
            +
                      "type": "address"
         | 
| 782 | 
            +
                    },
         | 
| 783 | 
            +
                    {
         | 
| 784 | 
            +
                      "indexed": false,
         | 
| 785 | 
            +
                      "internalType": "address",
         | 
| 786 | 
            +
                      "name": "txOrigin",
         | 
| 787 | 
            +
                      "type": "address"
         | 
| 788 | 
            +
                    },
         | 
| 789 | 
            +
                    {
         | 
| 790 | 
            +
                      "indexed": false,
         | 
| 791 | 
            +
                      "internalType": "Blocknumber",
         | 
| 792 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 793 | 
            +
                      "type": "uint40"
         | 
| 794 | 
            +
                    }
         | 
| 795 | 
            +
                  ],
         | 
| 796 | 
            +
                  "name": "LogProductStorePoolInfoUpdated",
         | 
| 797 | 
            +
                  "type": "event"
         | 
| 798 | 
            +
                },
         | 
| 799 | 
            +
                {
         | 
| 800 | 
            +
                  "anonymous": false,
         | 
| 801 | 
            +
                  "inputs": [
         | 
| 802 | 
            +
                    {
         | 
| 803 | 
            +
                      "indexed": false,
         | 
| 804 | 
            +
                      "internalType": "ReferralId",
         | 
| 805 | 
            +
                      "name": "referralId",
         | 
| 806 | 
            +
                      "type": "bytes8"
         | 
| 807 | 
            +
                    },
         | 
| 808 | 
            +
                    {
         | 
| 809 | 
            +
                      "indexed": false,
         | 
| 810 | 
            +
                      "internalType": "StateId",
         | 
| 811 | 
            +
                      "name": "state",
         | 
| 812 | 
            +
                      "type": "uint8"
         | 
| 813 | 
            +
                    },
         | 
| 814 | 
            +
                    {
         | 
| 815 | 
            +
                      "indexed": false,
         | 
| 816 | 
            +
                      "internalType": "address",
         | 
| 817 | 
            +
                      "name": "createdBy",
         | 
| 818 | 
            +
                      "type": "address"
         | 
| 819 | 
            +
                    },
         | 
| 820 | 
            +
                    {
         | 
| 821 | 
            +
                      "indexed": false,
         | 
| 822 | 
            +
                      "internalType": "address",
         | 
| 823 | 
            +
                      "name": "txOrigin",
         | 
| 824 | 
            +
                      "type": "address"
         | 
| 825 | 
            +
                    }
         | 
| 826 | 
            +
                  ],
         | 
| 827 | 
            +
                  "name": "LogProductStoreReferralInfoCreated",
         | 
| 828 | 
            +
                  "type": "event"
         | 
| 829 | 
            +
                },
         | 
| 830 | 
            +
                {
         | 
| 831 | 
            +
                  "anonymous": false,
         | 
| 832 | 
            +
                  "inputs": [
         | 
| 833 | 
            +
                    {
         | 
| 834 | 
            +
                      "indexed": false,
         | 
| 835 | 
            +
                      "internalType": "ReferralId",
         | 
| 836 | 
            +
                      "name": "referralId",
         | 
| 837 | 
            +
                      "type": "bytes8"
         | 
| 838 | 
            +
                    },
         | 
| 839 | 
            +
                    {
         | 
| 840 | 
            +
                      "indexed": false,
         | 
| 841 | 
            +
                      "internalType": "StateId",
         | 
| 842 | 
            +
                      "name": "oldState",
         | 
| 843 | 
            +
                      "type": "uint8"
         | 
| 844 | 
            +
                    },
         | 
| 845 | 
            +
                    {
         | 
| 846 | 
            +
                      "indexed": false,
         | 
| 847 | 
            +
                      "internalType": "StateId",
         | 
| 848 | 
            +
                      "name": "newState",
         | 
| 849 | 
            +
                      "type": "uint8"
         | 
| 850 | 
            +
                    },
         | 
| 851 | 
            +
                    {
         | 
| 852 | 
            +
                      "indexed": false,
         | 
| 853 | 
            +
                      "internalType": "address",
         | 
| 854 | 
            +
                      "name": "updatedBy",
         | 
| 855 | 
            +
                      "type": "address"
         | 
| 856 | 
            +
                    },
         | 
| 857 | 
            +
                    {
         | 
| 858 | 
            +
                      "indexed": false,
         | 
| 859 | 
            +
                      "internalType": "address",
         | 
| 860 | 
            +
                      "name": "txOrigin",
         | 
| 861 | 
            +
                      "type": "address"
         | 
| 862 | 
            +
                    },
         | 
| 863 | 
            +
                    {
         | 
| 864 | 
            +
                      "indexed": false,
         | 
| 865 | 
            +
                      "internalType": "Blocknumber",
         | 
| 866 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 867 | 
            +
                      "type": "uint40"
         | 
| 868 | 
            +
                    }
         | 
| 869 | 
            +
                  ],
         | 
| 870 | 
            +
                  "name": "LogProductStoreReferralInfoUpdated",
         | 
| 871 | 
            +
                  "type": "event"
         | 
| 872 | 
            +
                },
         | 
| 873 | 
            +
                {
         | 
| 874 | 
            +
                  "anonymous": false,
         | 
| 875 | 
            +
                  "inputs": [
         | 
| 876 | 
            +
                    {
         | 
| 877 | 
            +
                      "indexed": false,
         | 
| 878 | 
            +
                      "internalType": "RequestId",
         | 
| 879 | 
            +
                      "name": "requestId",
         | 
| 880 | 
            +
                      "type": "uint64"
         | 
| 881 | 
            +
                    },
         | 
| 882 | 
            +
                    {
         | 
| 883 | 
            +
                      "indexed": false,
         | 
| 884 | 
            +
                      "internalType": "StateId",
         | 
| 885 | 
            +
                      "name": "state",
         | 
| 886 | 
            +
                      "type": "uint8"
         | 
| 887 | 
            +
                    },
         | 
| 888 | 
            +
                    {
         | 
| 889 | 
            +
                      "indexed": false,
         | 
| 890 | 
            +
                      "internalType": "address",
         | 
| 891 | 
            +
                      "name": "createdBy",
         | 
| 892 | 
            +
                      "type": "address"
         | 
| 893 | 
            +
                    },
         | 
| 894 | 
            +
                    {
         | 
| 895 | 
            +
                      "indexed": false,
         | 
| 896 | 
            +
                      "internalType": "address",
         | 
| 897 | 
            +
                      "name": "txOrigin",
         | 
| 898 | 
            +
                      "type": "address"
         | 
| 899 | 
            +
                    }
         | 
| 900 | 
            +
                  ],
         | 
| 901 | 
            +
                  "name": "LogProductStoreRequestInfoCreated",
         | 
| 902 | 
            +
                  "type": "event"
         | 
| 903 | 
            +
                },
         | 
| 904 | 
            +
                {
         | 
| 905 | 
            +
                  "anonymous": false,
         | 
| 906 | 
            +
                  "inputs": [
         | 
| 907 | 
            +
                    {
         | 
| 908 | 
            +
                      "indexed": false,
         | 
| 909 | 
            +
                      "internalType": "RequestId",
         | 
| 910 | 
            +
                      "name": "requestId",
         | 
| 911 | 
            +
                      "type": "uint64"
         | 
| 912 | 
            +
                    },
         | 
| 913 | 
            +
                    {
         | 
| 914 | 
            +
                      "indexed": false,
         | 
| 915 | 
            +
                      "internalType": "StateId",
         | 
| 916 | 
            +
                      "name": "oldState",
         | 
| 917 | 
            +
                      "type": "uint8"
         | 
| 918 | 
            +
                    },
         | 
| 919 | 
            +
                    {
         | 
| 920 | 
            +
                      "indexed": false,
         | 
| 921 | 
            +
                      "internalType": "StateId",
         | 
| 922 | 
            +
                      "name": "newState",
         | 
| 923 | 
            +
                      "type": "uint8"
         | 
| 924 | 
            +
                    },
         | 
| 925 | 
            +
                    {
         | 
| 926 | 
            +
                      "indexed": false,
         | 
| 927 | 
            +
                      "internalType": "address",
         | 
| 928 | 
            +
                      "name": "updatedBy",
         | 
| 929 | 
            +
                      "type": "address"
         | 
| 930 | 
            +
                    },
         | 
| 931 | 
            +
                    {
         | 
| 932 | 
            +
                      "indexed": false,
         | 
| 933 | 
            +
                      "internalType": "address",
         | 
| 934 | 
            +
                      "name": "txOrigin",
         | 
| 935 | 
            +
                      "type": "address"
         | 
| 936 | 
            +
                    },
         | 
| 937 | 
            +
                    {
         | 
| 938 | 
            +
                      "indexed": false,
         | 
| 939 | 
            +
                      "internalType": "Blocknumber",
         | 
| 940 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 941 | 
            +
                      "type": "uint40"
         | 
| 942 | 
            +
                    }
         | 
| 943 | 
            +
                  ],
         | 
| 944 | 
            +
                  "name": "LogProductStoreRequestInfoUpdated",
         | 
| 945 | 
            +
                  "type": "event"
         | 
| 946 | 
            +
                },
         | 
| 947 | 
            +
                {
         | 
| 948 | 
            +
                  "inputs": [],
         | 
| 949 | 
            +
                  "name": "authority",
         | 
| 950 | 
            +
                  "outputs": [
         | 
| 951 | 
            +
                    {
         | 
| 952 | 
            +
                      "internalType": "address",
         | 
| 953 | 
            +
                      "name": "",
         | 
| 954 | 
            +
                      "type": "address"
         | 
| 955 | 
            +
                    }
         | 
| 956 | 
            +
                  ],
         | 
| 957 | 
            +
                  "stateMutability": "view",
         | 
| 958 | 
            +
                  "type": "function"
         | 
| 959 | 
            +
                },
         | 
| 960 | 
            +
                {
         | 
| 961 | 
            +
                  "inputs": [
         | 
| 962 | 
            +
                    {
         | 
| 963 | 
            +
                      "internalType": "StateId",
         | 
| 964 | 
            +
                      "name": "stateId",
         | 
| 965 | 
            +
                      "type": "uint8"
         | 
| 966 | 
            +
                    },
         | 
| 967 | 
            +
                    {
         | 
| 968 | 
            +
                      "internalType": "ObjectType",
         | 
| 969 | 
            +
                      "name": "objectType",
         | 
| 970 | 
            +
                      "type": "uint8"
         | 
| 971 | 
            +
                    },
         | 
| 972 | 
            +
                    {
         | 
| 973 | 
            +
                      "internalType": "StateId",
         | 
| 974 | 
            +
                      "name": "expectedFromId",
         | 
| 975 | 
            +
                      "type": "uint8"
         | 
| 976 | 
            +
                    },
         | 
| 977 | 
            +
                    {
         | 
| 978 | 
            +
                      "internalType": "StateId",
         | 
| 979 | 
            +
                      "name": "toId",
         | 
| 980 | 
            +
                      "type": "uint8"
         | 
| 692 981 | 
             
                    }
         | 
| 693 982 | 
             
                  ],
         | 
| 694 | 
            -
                  "name": " | 
| 983 | 
            +
                  "name": "checkTransition",
         | 
| 695 984 | 
             
                  "outputs": [],
         | 
| 696 | 
            -
                  "stateMutability": " | 
| 985 | 
            +
                  "stateMutability": "view",
         | 
| 697 986 | 
             
                  "type": "function"
         | 
| 698 987 | 
             
                },
         | 
| 699 988 | 
             
                {
         | 
| @@ -705,6 +994,21 @@ | |
| 705 994 | 
             
                    },
         | 
| 706 995 | 
             
                    {
         | 
| 707 996 | 
             
                      "components": [
         | 
| 997 | 
            +
                        {
         | 
| 998 | 
            +
                          "internalType": "Timestamp",
         | 
| 999 | 
            +
                          "name": "activatedAt",
         | 
| 1000 | 
            +
                          "type": "uint40"
         | 
| 1001 | 
            +
                        },
         | 
| 1002 | 
            +
                        {
         | 
| 1003 | 
            +
                          "internalType": "Timestamp",
         | 
| 1004 | 
            +
                          "name": "expiredAt",
         | 
| 1005 | 
            +
                          "type": "uint40"
         | 
| 1006 | 
            +
                        },
         | 
| 1007 | 
            +
                        {
         | 
| 1008 | 
            +
                          "internalType": "Timestamp",
         | 
| 1009 | 
            +
                          "name": "closedAt",
         | 
| 1010 | 
            +
                          "type": "uint40"
         | 
| 1011 | 
            +
                        },
         | 
| 708 1012 | 
             
                        {
         | 
| 709 1013 | 
             
                          "internalType": "NftId",
         | 
| 710 1014 | 
             
                          "name": "poolNftId",
         | 
| @@ -715,12 +1019,12 @@ | |
| 715 1019 | 
             
                            {
         | 
| 716 1020 | 
             
                              "internalType": "UFixed",
         | 
| 717 1021 | 
             
                              "name": "fractionalFee",
         | 
| 718 | 
            -
                              "type": " | 
| 1022 | 
            +
                              "type": "uint160"
         | 
| 719 1023 | 
             
                            },
         | 
| 720 1024 | 
             
                            {
         | 
| 721 | 
            -
                              "internalType": " | 
| 1025 | 
            +
                              "internalType": "Amount",
         | 
| 722 1026 | 
             
                              "name": "fixedFee",
         | 
| 723 | 
            -
                              "type": " | 
| 1027 | 
            +
                              "type": "uint96"
         | 
| 724 1028 | 
             
                            }
         | 
| 725 1029 | 
             
                          ],
         | 
| 726 1030 | 
             
                          "internalType": "struct Fee",
         | 
| @@ -731,21 +1035,6 @@ | |
| 731 1035 | 
             
                          "internalType": "bytes",
         | 
| 732 1036 | 
             
                          "name": "filter",
         | 
| 733 1037 | 
             
                          "type": "bytes"
         | 
| 734 | 
            -
                        },
         | 
| 735 | 
            -
                        {
         | 
| 736 | 
            -
                          "internalType": "Timestamp",
         | 
| 737 | 
            -
                          "name": "activatedAt",
         | 
| 738 | 
            -
                          "type": "uint40"
         | 
| 739 | 
            -
                        },
         | 
| 740 | 
            -
                        {
         | 
| 741 | 
            -
                          "internalType": "Timestamp",
         | 
| 742 | 
            -
                          "name": "expiredAt",
         | 
| 743 | 
            -
                          "type": "uint40"
         | 
| 744 | 
            -
                        },
         | 
| 745 | 
            -
                        {
         | 
| 746 | 
            -
                          "internalType": "Timestamp",
         | 
| 747 | 
            -
                          "name": "closedAt",
         | 
| 748 | 
            -
                          "type": "uint40"
         | 
| 749 1038 | 
             
                        }
         | 
| 750 1039 | 
             
                      ],
         | 
| 751 1040 | 
             
                      "internalType": "struct IBundle.BundleInfo",
         | 
| @@ -758,66 +1047,6 @@ | |
| 758 1047 | 
             
                  "stateMutability": "nonpayable",
         | 
| 759 1048 | 
             
                  "type": "function"
         | 
| 760 1049 | 
             
                },
         | 
| 761 | 
            -
                {
         | 
| 762 | 
            -
                  "inputs": [
         | 
| 763 | 
            -
                    {
         | 
| 764 | 
            -
                      "internalType": "NftId",
         | 
| 765 | 
            -
                      "name": "policyNftId",
         | 
| 766 | 
            -
                      "type": "uint96"
         | 
| 767 | 
            -
                    },
         | 
| 768 | 
            -
                    {
         | 
| 769 | 
            -
                      "internalType": "ClaimId",
         | 
| 770 | 
            -
                      "name": "claimId",
         | 
| 771 | 
            -
                      "type": "uint16"
         | 
| 772 | 
            -
                    },
         | 
| 773 | 
            -
                    {
         | 
| 774 | 
            -
                      "components": [
         | 
| 775 | 
            -
                        {
         | 
| 776 | 
            -
                          "internalType": "Amount",
         | 
| 777 | 
            -
                          "name": "claimAmount",
         | 
| 778 | 
            -
                          "type": "uint96"
         | 
| 779 | 
            -
                        },
         | 
| 780 | 
            -
                        {
         | 
| 781 | 
            -
                          "internalType": "Amount",
         | 
| 782 | 
            -
                          "name": "paidAmount",
         | 
| 783 | 
            -
                          "type": "uint96"
         | 
| 784 | 
            -
                        },
         | 
| 785 | 
            -
                        {
         | 
| 786 | 
            -
                          "internalType": "uint24",
         | 
| 787 | 
            -
                          "name": "payoutsCount",
         | 
| 788 | 
            -
                          "type": "uint24"
         | 
| 789 | 
            -
                        },
         | 
| 790 | 
            -
                        {
         | 
| 791 | 
            -
                          "internalType": "uint24",
         | 
| 792 | 
            -
                          "name": "openPayoutsCount",
         | 
| 793 | 
            -
                          "type": "uint24"
         | 
| 794 | 
            -
                        },
         | 
| 795 | 
            -
                        {
         | 
| 796 | 
            -
                          "internalType": "bytes",
         | 
| 797 | 
            -
                          "name": "submissionData",
         | 
| 798 | 
            -
                          "type": "bytes"
         | 
| 799 | 
            -
                        },
         | 
| 800 | 
            -
                        {
         | 
| 801 | 
            -
                          "internalType": "bytes",
         | 
| 802 | 
            -
                          "name": "processData",
         | 
| 803 | 
            -
                          "type": "bytes"
         | 
| 804 | 
            -
                        },
         | 
| 805 | 
            -
                        {
         | 
| 806 | 
            -
                          "internalType": "Timestamp",
         | 
| 807 | 
            -
                          "name": "closedAt",
         | 
| 808 | 
            -
                          "type": "uint40"
         | 
| 809 | 
            -
                        }
         | 
| 810 | 
            -
                      ],
         | 
| 811 | 
            -
                      "internalType": "struct IPolicy.ClaimInfo",
         | 
| 812 | 
            -
                      "name": "claim",
         | 
| 813 | 
            -
                      "type": "tuple"
         | 
| 814 | 
            -
                    }
         | 
| 815 | 
            -
                  ],
         | 
| 816 | 
            -
                  "name": "createClaim",
         | 
| 817 | 
            -
                  "outputs": [],
         | 
| 818 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 819 | 
            -
                  "type": "function"
         | 
| 820 | 
            -
                },
         | 
| 821 1050 | 
             
                {
         | 
| 822 1051 | 
             
                  "inputs": [
         | 
| 823 1052 | 
             
                    {
         | 
| @@ -832,25 +1061,10 @@ | |
| 832 1061 | 
             
                          "name": "name",
         | 
| 833 1062 | 
             
                          "type": "string"
         | 
| 834 1063 | 
             
                        },
         | 
| 835 | 
            -
                        {
         | 
| 836 | 
            -
                          "internalType": "contract IERC20Metadata",
         | 
| 837 | 
            -
                          "name": "token",
         | 
| 838 | 
            -
                          "type": "address"
         | 
| 839 | 
            -
                        },
         | 
| 840 1064 | 
             
                        {
         | 
| 841 1065 | 
             
                          "internalType": "contract TokenHandler",
         | 
| 842 1066 | 
             
                          "name": "tokenHandler",
         | 
| 843 1067 | 
             
                          "type": "address"
         | 
| 844 | 
            -
                        },
         | 
| 845 | 
            -
                        {
         | 
| 846 | 
            -
                          "internalType": "address",
         | 
| 847 | 
            -
                          "name": "wallet",
         | 
| 848 | 
            -
                          "type": "address"
         | 
| 849 | 
            -
                        },
         | 
| 850 | 
            -
                        {
         | 
| 851 | 
            -
                          "internalType": "bytes",
         | 
| 852 | 
            -
                          "name": "data",
         | 
| 853 | 
            -
                          "type": "bytes"
         | 
| 854 1068 | 
             
                        }
         | 
| 855 1069 | 
             
                      ],
         | 
| 856 1070 | 
             
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| @@ -871,209 +1085,34 @@ | |
| 871 1085 | 
             
                      "type": "uint96"
         | 
| 872 1086 | 
             
                    },
         | 
| 873 1087 | 
             
                    {
         | 
| 874 | 
            -
                      "components": [
         | 
| 875 | 
            -
                        {
         | 
| 876 | 
            -
                          "internalType": "DistributorType",
         | 
| 877 | 
            -
                          "name": "distributorType",
         | 
| 878 | 
            -
                          "type": "bytes8"
         | 
| 879 | 
            -
                        },
         | 
| 880 | 
            -
                        {
         | 
| 881 | 
            -
                          "internalType": "bool",
         | 
| 882 | 
            -
                          "name": "active",
         | 
| 883 | 
            -
                          "type": "bool"
         | 
| 884 | 
            -
                        },
         | 
| 885 | 
            -
                        {
         | 
| 886 | 
            -
                          "internalType": "bytes",
         | 
| 887 | 
            -
                          "name": "data",
         | 
| 888 | 
            -
                          "type": "bytes"
         | 
| 889 | 
            -
                        },
         | 
| 890 | 
            -
                        {
         | 
| 891 | 
            -
                          "internalType": "uint32",
         | 
| 892 | 
            -
                          "name": "numPoliciesSold",
         | 
| 893 | 
            -
                          "type": "uint32"
         | 
| 894 | 
            -
                        }
         | 
| 895 | 
            -
                      ],
         | 
| 896 | 
            -
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 897 | 
            -
                      "name": "info",
         | 
| 898 | 
            -
                      "type": "tuple"
         | 
| 899 | 
            -
                    }
         | 
| 900 | 
            -
                  ],
         | 
| 901 | 
            -
                  "name": "createDistributor",
         | 
| 902 | 
            -
                  "outputs": [],
         | 
| 903 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 904 | 
            -
                  "type": "function"
         | 
| 905 | 
            -
                },
         | 
| 906 | 
            -
                {
         | 
| 907 | 
            -
                  "inputs": [
         | 
| 908 | 
            -
                    {
         | 
| 909 | 
            -
                      "internalType": "DistributorType",
         | 
| 910 | 
            -
                      "name": "distributorType",
         | 
| 911 | 
            -
                      "type": "bytes8"
         | 
| 912 | 
            -
                    },
         | 
| 913 | 
            -
                    {
         | 
| 914 | 
            -
                      "components": [
         | 
| 915 | 
            -
                        {
         | 
| 916 | 
            -
                          "internalType": "string",
         | 
| 917 | 
            -
                          "name": "name",
         | 
| 918 | 
            -
                          "type": "string"
         | 
| 919 | 
            -
                        },
         | 
| 920 | 
            -
                        {
         | 
| 921 | 
            -
                          "internalType": "UFixed",
         | 
| 922 | 
            -
                          "name": "minDiscountPercentage",
         | 
| 923 | 
            -
                          "type": "uint256"
         | 
| 924 | 
            -
                        },
         | 
| 925 | 
            -
                        {
         | 
| 926 | 
            -
                          "internalType": "UFixed",
         | 
| 927 | 
            -
                          "name": "maxDiscountPercentage",
         | 
| 928 | 
            -
                          "type": "uint256"
         | 
| 929 | 
            -
                        },
         | 
| 930 | 
            -
                        {
         | 
| 931 | 
            -
                          "internalType": "UFixed",
         | 
| 932 | 
            -
                          "name": "commissionPercentage",
         | 
| 933 | 
            -
                          "type": "uint256"
         | 
| 934 | 
            -
                        },
         | 
| 935 | 
            -
                        {
         | 
| 936 | 
            -
                          "internalType": "uint32",
         | 
| 937 | 
            -
                          "name": "maxReferralCount",
         | 
| 938 | 
            -
                          "type": "uint32"
         | 
| 939 | 
            -
                        },
         | 
| 940 | 
            -
                        {
         | 
| 941 | 
            -
                          "internalType": "uint32",
         | 
| 942 | 
            -
                          "name": "maxReferralLifetime",
         | 
| 943 | 
            -
                          "type": "uint32"
         | 
| 944 | 
            -
                        },
         | 
| 945 | 
            -
                        {
         | 
| 946 | 
            -
                          "internalType": "bool",
         | 
| 947 | 
            -
                          "name": "allowSelfReferrals",
         | 
| 948 | 
            -
                          "type": "bool"
         | 
| 949 | 
            -
                        },
         | 
| 950 | 
            -
                        {
         | 
| 951 | 
            -
                          "internalType": "bool",
         | 
| 952 | 
            -
                          "name": "allowRenewals",
         | 
| 953 | 
            -
                          "type": "bool"
         | 
| 954 | 
            -
                        },
         | 
| 955 | 
            -
                        {
         | 
| 956 | 
            -
                          "internalType": "bytes",
         | 
| 957 | 
            -
                          "name": "data",
         | 
| 958 | 
            -
                          "type": "bytes"
         | 
| 959 | 
            -
                        }
         | 
| 960 | 
            -
                      ],
         | 
| 961 | 
            -
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 962 | 
            -
                      "name": "info",
         | 
| 963 | 
            -
                      "type": "tuple"
         | 
| 964 | 
            -
                    }
         | 
| 965 | 
            -
                  ],
         | 
| 966 | 
            -
                  "name": "createDistributorType",
         | 
| 967 | 
            -
                  "outputs": [],
         | 
| 968 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 969 | 
            -
                  "type": "function"
         | 
| 970 | 
            -
                },
         | 
| 971 | 
            -
                {
         | 
| 972 | 
            -
                  "inputs": [
         | 
| 973 | 
            -
                    {
         | 
| 974 | 
            -
                      "internalType": "NftId",
         | 
| 975 | 
            -
                      "name": "policyNftId",
         | 
| 976 | 
            -
                      "type": "uint96"
         | 
| 977 | 
            -
                    },
         | 
| 978 | 
            -
                    {
         | 
| 979 | 
            -
                      "internalType": "PayoutId",
         | 
| 980 | 
            -
                      "name": "payoutId",
         | 
| 981 | 
            -
                      "type": "uint40"
         | 
| 982 | 
            -
                    },
         | 
| 983 | 
            -
                    {
         | 
| 984 | 
            -
                      "components": [
         | 
| 985 | 
            -
                        {
         | 
| 986 | 
            -
                          "internalType": "ClaimId",
         | 
| 987 | 
            -
                          "name": "claimId",
         | 
| 988 | 
            -
                          "type": "uint16"
         | 
| 989 | 
            -
                        },
         | 
| 990 | 
            -
                        {
         | 
| 991 | 
            -
                          "internalType": "Amount",
         | 
| 992 | 
            -
                          "name": "amount",
         | 
| 993 | 
            -
                          "type": "uint96"
         | 
| 994 | 
            -
                        },
         | 
| 995 | 
            -
                        {
         | 
| 996 | 
            -
                          "internalType": "address",
         | 
| 997 | 
            -
                          "name": "beneficiary",
         | 
| 998 | 
            -
                          "type": "address"
         | 
| 999 | 
            -
                        },
         | 
| 1000 | 
            -
                        {
         | 
| 1001 | 
            -
                          "internalType": "bytes",
         | 
| 1002 | 
            -
                          "name": "data",
         | 
| 1003 | 
            -
                          "type": "bytes"
         | 
| 1004 | 
            -
                        },
         | 
| 1005 | 
            -
                        {
         | 
| 1006 | 
            -
                          "internalType": "Timestamp",
         | 
| 1007 | 
            -
                          "name": "paidAt",
         | 
| 1008 | 
            -
                          "type": "uint40"
         | 
| 1009 | 
            -
                        }
         | 
| 1010 | 
            -
                      ],
         | 
| 1011 | 
            -
                      "internalType": "struct IPolicy.PayoutInfo",
         | 
| 1012 | 
            -
                      "name": "payout",
         | 
| 1013 | 
            -
                      "type": "tuple"
         | 
| 1014 | 
            -
                    }
         | 
| 1015 | 
            -
                  ],
         | 
| 1016 | 
            -
                  "name": "createPayout",
         | 
| 1017 | 
            -
                  "outputs": [],
         | 
| 1018 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1019 | 
            -
                  "type": "function"
         | 
| 1020 | 
            -
                },
         | 
| 1021 | 
            -
                {
         | 
| 1022 | 
            -
                  "inputs": [
         | 
| 1023 | 
            -
                    {
         | 
| 1024 | 
            -
                      "internalType": "NftId",
         | 
| 1025 | 
            -
                      "name": "poolNftId",
         | 
| 1026 | 
            -
                      "type": "uint96"
         | 
| 1027 | 
            -
                    },
         | 
| 1028 | 
            -
                    {
         | 
| 1029 | 
            -
                      "components": [
         | 
| 1030 | 
            -
                        {
         | 
| 1031 | 
            -
                          "internalType": "Amount",
         | 
| 1032 | 
            -
                          "name": "maxBalanceAmount",
         | 
| 1033 | 
            -
                          "type": "uint96"
         | 
| 1034 | 
            -
                        },
         | 
| 1035 | 
            -
                        {
         | 
| 1036 | 
            -
                          "internalType": "RoleId",
         | 
| 1037 | 
            -
                          "name": "bundleOwnerRole",
         | 
| 1038 | 
            -
                          "type": "uint64"
         | 
| 1039 | 
            -
                        },
         | 
| 1040 | 
            -
                        {
         | 
| 1041 | 
            -
                          "internalType": "bool",
         | 
| 1042 | 
            -
                          "name": "isInterceptingBundleTransfers",
         | 
| 1043 | 
            -
                          "type": "bool"
         | 
| 1044 | 
            -
                        },
         | 
| 1045 | 
            -
                        {
         | 
| 1046 | 
            -
                          "internalType": "bool",
         | 
| 1047 | 
            -
                          "name": "isProcessingConfirmedClaims",
         | 
| 1048 | 
            -
                          "type": "bool"
         | 
| 1049 | 
            -
                        },
         | 
| 1050 | 
            -
                        {
         | 
| 1051 | 
            -
                          "internalType": "bool",
         | 
| 1052 | 
            -
                          "name": "isExternallyManaged",
         | 
| 1053 | 
            -
                          "type": "bool"
         | 
| 1088 | 
            +
                      "components": [
         | 
| 1089 | 
            +
                        {
         | 
| 1090 | 
            +
                          "internalType": "DistributorType",
         | 
| 1091 | 
            +
                          "name": "distributorType",
         | 
| 1092 | 
            +
                          "type": "bytes8"
         | 
| 1054 1093 | 
             
                        },
         | 
| 1055 1094 | 
             
                        {
         | 
| 1056 1095 | 
             
                          "internalType": "bool",
         | 
| 1057 | 
            -
                          "name": " | 
| 1096 | 
            +
                          "name": "active",
         | 
| 1058 1097 | 
             
                          "type": "bool"
         | 
| 1059 1098 | 
             
                        },
         | 
| 1060 1099 | 
             
                        {
         | 
| 1061 | 
            -
                          "internalType": " | 
| 1062 | 
            -
                          "name": " | 
| 1063 | 
            -
                          "type": " | 
| 1100 | 
            +
                          "internalType": "uint32",
         | 
| 1101 | 
            +
                          "name": "numPoliciesSold",
         | 
| 1102 | 
            +
                          "type": "uint32"
         | 
| 1064 1103 | 
             
                        },
         | 
| 1065 1104 | 
             
                        {
         | 
| 1066 | 
            -
                          "internalType": " | 
| 1067 | 
            -
                          "name": " | 
| 1068 | 
            -
                          "type": " | 
| 1105 | 
            +
                          "internalType": "bytes",
         | 
| 1106 | 
            +
                          "name": "data",
         | 
| 1107 | 
            +
                          "type": "bytes"
         | 
| 1069 1108 | 
             
                        }
         | 
| 1070 1109 | 
             
                      ],
         | 
| 1071 | 
            -
                      "internalType": "struct  | 
| 1110 | 
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 1072 1111 | 
             
                      "name": "info",
         | 
| 1073 1112 | 
             
                      "type": "tuple"
         | 
| 1074 1113 | 
             
                    }
         | 
| 1075 1114 | 
             
                  ],
         | 
| 1076 | 
            -
                  "name": " | 
| 1115 | 
            +
                  "name": "createDistributor",
         | 
| 1077 1116 | 
             
                  "outputs": [],
         | 
| 1078 1117 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1079 1118 | 
             
                  "type": "function"
         | 
| @@ -1081,109 +1120,69 @@ | |
| 1081 1120 | 
             
                {
         | 
| 1082 1121 | 
             
                  "inputs": [
         | 
| 1083 1122 | 
             
                    {
         | 
| 1084 | 
            -
                      "internalType": " | 
| 1085 | 
            -
                      "name": " | 
| 1086 | 
            -
                      "type": " | 
| 1123 | 
            +
                      "internalType": "DistributorType",
         | 
| 1124 | 
            +
                      "name": "distributorType",
         | 
| 1125 | 
            +
                      "type": "bytes8"
         | 
| 1087 1126 | 
             
                    },
         | 
| 1088 1127 | 
             
                    {
         | 
| 1089 1128 | 
             
                      "components": [
         | 
| 1090 1129 | 
             
                        {
         | 
| 1091 | 
            -
                          "internalType": " | 
| 1092 | 
            -
                          "name": " | 
| 1093 | 
            -
                          "type": " | 
| 1094 | 
            -
                        },
         | 
| 1095 | 
            -
                        {
         | 
| 1096 | 
            -
                          "internalType": "Amount",
         | 
| 1097 | 
            -
                          "name": "distributionFeeAndCommissionAmount",
         | 
| 1098 | 
            -
                          "type": "uint96"
         | 
| 1099 | 
            -
                        },
         | 
| 1100 | 
            -
                        {
         | 
| 1101 | 
            -
                          "internalType": "Amount",
         | 
| 1102 | 
            -
                          "name": "poolPremiumAndFeeAmount",
         | 
| 1103 | 
            -
                          "type": "uint96"
         | 
| 1104 | 
            -
                        },
         | 
| 1105 | 
            -
                        {
         | 
| 1106 | 
            -
                          "internalType": "Amount",
         | 
| 1107 | 
            -
                          "name": "netPremiumAmount",
         | 
| 1108 | 
            -
                          "type": "uint96"
         | 
| 1109 | 
            -
                        },
         | 
| 1110 | 
            -
                        {
         | 
| 1111 | 
            -
                          "internalType": "Amount",
         | 
| 1112 | 
            -
                          "name": "fullPremiumAmount",
         | 
| 1113 | 
            -
                          "type": "uint96"
         | 
| 1114 | 
            -
                        },
         | 
| 1115 | 
            -
                        {
         | 
| 1116 | 
            -
                          "internalType": "Amount",
         | 
| 1117 | 
            -
                          "name": "premiumAmount",
         | 
| 1118 | 
            -
                          "type": "uint96"
         | 
| 1119 | 
            -
                        },
         | 
| 1120 | 
            -
                        {
         | 
| 1121 | 
            -
                          "internalType": "Amount",
         | 
| 1122 | 
            -
                          "name": "productFeeFixAmount",
         | 
| 1123 | 
            -
                          "type": "uint96"
         | 
| 1124 | 
            -
                        },
         | 
| 1125 | 
            -
                        {
         | 
| 1126 | 
            -
                          "internalType": "Amount",
         | 
| 1127 | 
            -
                          "name": "poolFeeFixAmount",
         | 
| 1128 | 
            -
                          "type": "uint96"
         | 
| 1129 | 
            -
                        },
         | 
| 1130 | 
            -
                        {
         | 
| 1131 | 
            -
                          "internalType": "Amount",
         | 
| 1132 | 
            -
                          "name": "bundleFeeFixAmount",
         | 
| 1133 | 
            -
                          "type": "uint96"
         | 
| 1130 | 
            +
                          "internalType": "UFixed",
         | 
| 1131 | 
            +
                          "name": "minDiscountPercentage",
         | 
| 1132 | 
            +
                          "type": "uint160"
         | 
| 1134 1133 | 
             
                        },
         | 
| 1135 1134 | 
             
                        {
         | 
| 1136 | 
            -
                          "internalType": " | 
| 1137 | 
            -
                          "name": " | 
| 1135 | 
            +
                          "internalType": "NftId",
         | 
| 1136 | 
            +
                          "name": "distributionNftId",
         | 
| 1138 1137 | 
             
                          "type": "uint96"
         | 
| 1139 1138 | 
             
                        },
         | 
| 1140 1139 | 
             
                        {
         | 
| 1141 | 
            -
                          "internalType": " | 
| 1142 | 
            -
                          "name": " | 
| 1143 | 
            -
                          "type": " | 
| 1140 | 
            +
                          "internalType": "UFixed",
         | 
| 1141 | 
            +
                          "name": "maxDiscountPercentage",
         | 
| 1142 | 
            +
                          "type": "uint160"
         | 
| 1144 1143 | 
             
                        },
         | 
| 1145 1144 | 
             
                        {
         | 
| 1146 | 
            -
                          "internalType": " | 
| 1147 | 
            -
                          "name": " | 
| 1148 | 
            -
                          "type": " | 
| 1145 | 
            +
                          "internalType": "uint32",
         | 
| 1146 | 
            +
                          "name": "maxReferralCount",
         | 
| 1147 | 
            +
                          "type": "uint32"
         | 
| 1149 1148 | 
             
                        },
         | 
| 1150 1149 | 
             
                        {
         | 
| 1151 | 
            -
                          "internalType": " | 
| 1152 | 
            -
                          "name": " | 
| 1153 | 
            -
                          "type": " | 
| 1150 | 
            +
                          "internalType": "Seconds",
         | 
| 1151 | 
            +
                          "name": "maxReferralLifetime",
         | 
| 1152 | 
            +
                          "type": "uint40"
         | 
| 1154 1153 | 
             
                        },
         | 
| 1155 1154 | 
             
                        {
         | 
| 1156 | 
            -
                          "internalType": " | 
| 1157 | 
            -
                          "name": " | 
| 1158 | 
            -
                          "type": " | 
| 1155 | 
            +
                          "internalType": "bool",
         | 
| 1156 | 
            +
                          "name": "allowSelfReferrals",
         | 
| 1157 | 
            +
                          "type": "bool"
         | 
| 1159 1158 | 
             
                        },
         | 
| 1160 1159 | 
             
                        {
         | 
| 1161 | 
            -
                          "internalType": " | 
| 1162 | 
            -
                          "name": " | 
| 1163 | 
            -
                          "type": " | 
| 1160 | 
            +
                          "internalType": "bool",
         | 
| 1161 | 
            +
                          "name": "allowRenewals",
         | 
| 1162 | 
            +
                          "type": "bool"
         | 
| 1164 1163 | 
             
                        },
         | 
| 1165 1164 | 
             
                        {
         | 
| 1166 | 
            -
                          "internalType": " | 
| 1167 | 
            -
                          "name": " | 
| 1168 | 
            -
                          "type": " | 
| 1165 | 
            +
                          "internalType": "UFixed",
         | 
| 1166 | 
            +
                          "name": "commissionPercentage",
         | 
| 1167 | 
            +
                          "type": "uint160"
         | 
| 1169 1168 | 
             
                        },
         | 
| 1170 1169 | 
             
                        {
         | 
| 1171 | 
            -
                          "internalType": " | 
| 1172 | 
            -
                          "name": " | 
| 1173 | 
            -
                          "type": " | 
| 1170 | 
            +
                          "internalType": "string",
         | 
| 1171 | 
            +
                          "name": "name",
         | 
| 1172 | 
            +
                          "type": "string"
         | 
| 1174 1173 | 
             
                        },
         | 
| 1175 1174 | 
             
                        {
         | 
| 1176 | 
            -
                          "internalType": " | 
| 1177 | 
            -
                          "name": " | 
| 1178 | 
            -
                          "type": " | 
| 1175 | 
            +
                          "internalType": "bytes",
         | 
| 1176 | 
            +
                          "name": "data",
         | 
| 1177 | 
            +
                          "type": "bytes"
         | 
| 1179 1178 | 
             
                        }
         | 
| 1180 1179 | 
             
                      ],
         | 
| 1181 | 
            -
                      "internalType": "struct  | 
| 1182 | 
            -
                      "name": " | 
| 1180 | 
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 1181 | 
            +
                      "name": "info",
         | 
| 1183 1182 | 
             
                      "type": "tuple"
         | 
| 1184 1183 | 
             
                    }
         | 
| 1185 1184 | 
             
                  ],
         | 
| 1186 | 
            -
                  "name": " | 
| 1185 | 
            +
                  "name": "createDistributorType",
         | 
| 1187 1186 | 
             
                  "outputs": [],
         | 
| 1188 1187 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1189 1188 | 
             
                  "type": "function"
         | 
| @@ -1192,172 +1191,53 @@ | |
| 1192 1191 | 
             
                  "inputs": [
         | 
| 1193 1192 | 
             
                    {
         | 
| 1194 1193 | 
             
                      "internalType": "NftId",
         | 
| 1195 | 
            -
                      "name": " | 
| 1194 | 
            +
                      "name": "poolNftId",
         | 
| 1196 1195 | 
             
                      "type": "uint96"
         | 
| 1197 1196 | 
             
                    },
         | 
| 1198 1197 | 
             
                    {
         | 
| 1199 1198 | 
             
                      "components": [
         | 
| 1200 1199 | 
             
                        {
         | 
| 1201 | 
            -
                          "internalType": " | 
| 1202 | 
            -
                          "name": " | 
| 1203 | 
            -
                          "type": "bool"
         | 
| 1204 | 
            -
                        },
         | 
| 1205 | 
            -
                        {
         | 
| 1206 | 
            -
                          "internalType": "bool",
         | 
| 1207 | 
            -
                          "name": "hasDistribution",
         | 
| 1208 | 
            -
                          "type": "bool"
         | 
| 1209 | 
            -
                        },
         | 
| 1210 | 
            -
                        {
         | 
| 1211 | 
            -
                          "internalType": "uint8",
         | 
| 1212 | 
            -
                          "name": "expectedNumberOfOracles",
         | 
| 1213 | 
            -
                          "type": "uint8"
         | 
| 1214 | 
            -
                        },
         | 
| 1215 | 
            -
                        {
         | 
| 1216 | 
            -
                          "internalType": "uint8",
         | 
| 1217 | 
            -
                          "name": "numberOfOracles",
         | 
| 1218 | 
            -
                          "type": "uint8"
         | 
| 1219 | 
            -
                        },
         | 
| 1220 | 
            -
                        {
         | 
| 1221 | 
            -
                          "internalType": "NftId",
         | 
| 1222 | 
            -
                          "name": "poolNftId",
         | 
| 1223 | 
            -
                          "type": "uint96"
         | 
| 1224 | 
            -
                        },
         | 
| 1225 | 
            -
                        {
         | 
| 1226 | 
            -
                          "internalType": "NftId",
         | 
| 1227 | 
            -
                          "name": "distributionNftId",
         | 
| 1200 | 
            +
                          "internalType": "Amount",
         | 
| 1201 | 
            +
                          "name": "maxBalanceAmount",
         | 
| 1228 1202 | 
             
                          "type": "uint96"
         | 
| 1229 1203 | 
             
                        },
         | 
| 1230 1204 | 
             
                        {
         | 
| 1231 | 
            -
                          "internalType": " | 
| 1232 | 
            -
                          "name": " | 
| 1233 | 
            -
                          "type": " | 
| 1234 | 
            -
                        },
         | 
| 1235 | 
            -
                        {
         | 
| 1236 | 
            -
                          "components": [
         | 
| 1237 | 
            -
                            {
         | 
| 1238 | 
            -
                              "internalType": "UFixed",
         | 
| 1239 | 
            -
                              "name": "fractionalFee",
         | 
| 1240 | 
            -
                              "type": "uint256"
         | 
| 1241 | 
            -
                            },
         | 
| 1242 | 
            -
                            {
         | 
| 1243 | 
            -
                              "internalType": "uint256",
         | 
| 1244 | 
            -
                              "name": "fixedFee",
         | 
| 1245 | 
            -
                              "type": "uint256"
         | 
| 1246 | 
            -
                            }
         | 
| 1247 | 
            -
                          ],
         | 
| 1248 | 
            -
                          "internalType": "struct Fee",
         | 
| 1249 | 
            -
                          "name": "productFee",
         | 
| 1250 | 
            -
                          "type": "tuple"
         | 
| 1251 | 
            -
                        },
         | 
| 1252 | 
            -
                        {
         | 
| 1253 | 
            -
                          "components": [
         | 
| 1254 | 
            -
                            {
         | 
| 1255 | 
            -
                              "internalType": "UFixed",
         | 
| 1256 | 
            -
                              "name": "fractionalFee",
         | 
| 1257 | 
            -
                              "type": "uint256"
         | 
| 1258 | 
            -
                            },
         | 
| 1259 | 
            -
                            {
         | 
| 1260 | 
            -
                              "internalType": "uint256",
         | 
| 1261 | 
            -
                              "name": "fixedFee",
         | 
| 1262 | 
            -
                              "type": "uint256"
         | 
| 1263 | 
            -
                            }
         | 
| 1264 | 
            -
                          ],
         | 
| 1265 | 
            -
                          "internalType": "struct Fee",
         | 
| 1266 | 
            -
                          "name": "processingFee",
         | 
| 1267 | 
            -
                          "type": "tuple"
         | 
| 1205 | 
            +
                          "internalType": "UFixed",
         | 
| 1206 | 
            +
                          "name": "collateralizationLevel",
         | 
| 1207 | 
            +
                          "type": "uint160"
         | 
| 1268 1208 | 
             
                        },
         | 
| 1269 1209 | 
             
                        {
         | 
| 1270 | 
            -
                          " | 
| 1271 | 
            -
             | 
| 1272 | 
            -
             | 
| 1273 | 
            -
                              "name": "fractionalFee",
         | 
| 1274 | 
            -
                              "type": "uint256"
         | 
| 1275 | 
            -
                            },
         | 
| 1276 | 
            -
                            {
         | 
| 1277 | 
            -
                              "internalType": "uint256",
         | 
| 1278 | 
            -
                              "name": "fixedFee",
         | 
| 1279 | 
            -
                              "type": "uint256"
         | 
| 1280 | 
            -
                            }
         | 
| 1281 | 
            -
                          ],
         | 
| 1282 | 
            -
                          "internalType": "struct Fee",
         | 
| 1283 | 
            -
                          "name": "distributionFee",
         | 
| 1284 | 
            -
                          "type": "tuple"
         | 
| 1210 | 
            +
                          "internalType": "UFixed",
         | 
| 1211 | 
            +
                          "name": "retentionLevel",
         | 
| 1212 | 
            +
                          "type": "uint160"
         | 
| 1285 1213 | 
             
                        },
         | 
| 1286 1214 | 
             
                        {
         | 
| 1287 | 
            -
                          " | 
| 1288 | 
            -
             | 
| 1289 | 
            -
             | 
| 1290 | 
            -
                              "name": "fractionalFee",
         | 
| 1291 | 
            -
                              "type": "uint256"
         | 
| 1292 | 
            -
                            },
         | 
| 1293 | 
            -
                            {
         | 
| 1294 | 
            -
                              "internalType": "uint256",
         | 
| 1295 | 
            -
                              "name": "fixedFee",
         | 
| 1296 | 
            -
                              "type": "uint256"
         | 
| 1297 | 
            -
                            }
         | 
| 1298 | 
            -
                          ],
         | 
| 1299 | 
            -
                          "internalType": "struct Fee",
         | 
| 1300 | 
            -
                          "name": "minDistributionOwnerFee",
         | 
| 1301 | 
            -
                          "type": "tuple"
         | 
| 1215 | 
            +
                          "internalType": "bool",
         | 
| 1216 | 
            +
                          "name": "isInterceptingBundleTransfers",
         | 
| 1217 | 
            +
                          "type": "bool"
         | 
| 1302 1218 | 
             
                        },
         | 
| 1303 1219 | 
             
                        {
         | 
| 1304 | 
            -
                          " | 
| 1305 | 
            -
             | 
| 1306 | 
            -
             | 
| 1307 | 
            -
                              "name": "fractionalFee",
         | 
| 1308 | 
            -
                              "type": "uint256"
         | 
| 1309 | 
            -
                            },
         | 
| 1310 | 
            -
                            {
         | 
| 1311 | 
            -
                              "internalType": "uint256",
         | 
| 1312 | 
            -
                              "name": "fixedFee",
         | 
| 1313 | 
            -
                              "type": "uint256"
         | 
| 1314 | 
            -
                            }
         | 
| 1315 | 
            -
                          ],
         | 
| 1316 | 
            -
                          "internalType": "struct Fee",
         | 
| 1317 | 
            -
                          "name": "poolFee",
         | 
| 1318 | 
            -
                          "type": "tuple"
         | 
| 1220 | 
            +
                          "internalType": "bool",
         | 
| 1221 | 
            +
                          "name": "isProcessingConfirmedClaims",
         | 
| 1222 | 
            +
                          "type": "bool"
         | 
| 1319 1223 | 
             
                        },
         | 
| 1320 1224 | 
             
                        {
         | 
| 1321 | 
            -
                          " | 
| 1322 | 
            -
             | 
| 1323 | 
            -
             | 
| 1324 | 
            -
                              "name": "fractionalFee",
         | 
| 1325 | 
            -
                              "type": "uint256"
         | 
| 1326 | 
            -
                            },
         | 
| 1327 | 
            -
                            {
         | 
| 1328 | 
            -
                              "internalType": "uint256",
         | 
| 1329 | 
            -
                              "name": "fixedFee",
         | 
| 1330 | 
            -
                              "type": "uint256"
         | 
| 1331 | 
            -
                            }
         | 
| 1332 | 
            -
                          ],
         | 
| 1333 | 
            -
                          "internalType": "struct Fee",
         | 
| 1334 | 
            -
                          "name": "stakingFee",
         | 
| 1335 | 
            -
                          "type": "tuple"
         | 
| 1225 | 
            +
                          "internalType": "bool",
         | 
| 1226 | 
            +
                          "name": "isExternallyManaged",
         | 
| 1227 | 
            +
                          "type": "bool"
         | 
| 1336 1228 | 
             
                        },
         | 
| 1337 1229 | 
             
                        {
         | 
| 1338 | 
            -
                          " | 
| 1339 | 
            -
             | 
| 1340 | 
            -
             | 
| 1341 | 
            -
                              "name": "fractionalFee",
         | 
| 1342 | 
            -
                              "type": "uint256"
         | 
| 1343 | 
            -
                            },
         | 
| 1344 | 
            -
                            {
         | 
| 1345 | 
            -
                              "internalType": "uint256",
         | 
| 1346 | 
            -
                              "name": "fixedFee",
         | 
| 1347 | 
            -
                              "type": "uint256"
         | 
| 1348 | 
            -
                            }
         | 
| 1349 | 
            -
                          ],
         | 
| 1350 | 
            -
                          "internalType": "struct Fee",
         | 
| 1351 | 
            -
                          "name": "performanceFee",
         | 
| 1352 | 
            -
                          "type": "tuple"
         | 
| 1230 | 
            +
                          "internalType": "bool",
         | 
| 1231 | 
            +
                          "name": "isVerifyingApplications",
         | 
| 1232 | 
            +
                          "type": "bool"
         | 
| 1353 1233 | 
             
                        }
         | 
| 1354 1234 | 
             
                      ],
         | 
| 1355 | 
            -
                      "internalType": "struct IComponents. | 
| 1235 | 
            +
                      "internalType": "struct IComponents.PoolInfo",
         | 
| 1356 1236 | 
             
                      "name": "info",
         | 
| 1357 1237 | 
             
                      "type": "tuple"
         | 
| 1358 1238 | 
             
                    }
         | 
| 1359 1239 | 
             
                  ],
         | 
| 1360 | 
            -
                  "name": " | 
| 1240 | 
            +
                  "name": "createPool",
         | 
| 1361 1241 | 
             
                  "outputs": [],
         | 
| 1362 1242 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1363 1243 | 
             
                  "type": "function"
         | 
| @@ -1373,18 +1253,13 @@ | |
| 1373 1253 | 
             
                      "components": [
         | 
| 1374 1254 | 
             
                        {
         | 
| 1375 1255 | 
             
                          "internalType": "NftId",
         | 
| 1376 | 
            -
                          "name": " | 
| 1256 | 
            +
                          "name": "distributionNftId",
         | 
| 1377 1257 | 
             
                          "type": "uint96"
         | 
| 1378 1258 | 
             
                        },
         | 
| 1379 1259 | 
             
                        {
         | 
| 1380 | 
            -
                          "internalType": " | 
| 1381 | 
            -
                          "name": " | 
| 1382 | 
            -
                          "type": " | 
| 1383 | 
            -
                        },
         | 
| 1384 | 
            -
                        {
         | 
| 1385 | 
            -
                          "internalType": "UFixed",
         | 
| 1386 | 
            -
                          "name": "discountPercentage",
         | 
| 1387 | 
            -
                          "type": "uint256"
         | 
| 1260 | 
            +
                          "internalType": "NftId",
         | 
| 1261 | 
            +
                          "name": "distributorNftId",
         | 
| 1262 | 
            +
                          "type": "uint96"
         | 
| 1388 1263 | 
             
                        },
         | 
| 1389 1264 | 
             
                        {
         | 
| 1390 1265 | 
             
                          "internalType": "uint32",
         | 
| @@ -1396,11 +1271,21 @@ | |
| 1396 1271 | 
             
                          "name": "usedReferrals",
         | 
| 1397 1272 | 
             
                          "type": "uint32"
         | 
| 1398 1273 | 
             
                        },
         | 
| 1274 | 
            +
                        {
         | 
| 1275 | 
            +
                          "internalType": "UFixed",
         | 
| 1276 | 
            +
                          "name": "discountPercentage",
         | 
| 1277 | 
            +
                          "type": "uint160"
         | 
| 1278 | 
            +
                        },
         | 
| 1399 1279 | 
             
                        {
         | 
| 1400 1280 | 
             
                          "internalType": "Timestamp",
         | 
| 1401 1281 | 
             
                          "name": "expiryAt",
         | 
| 1402 1282 | 
             
                          "type": "uint40"
         | 
| 1403 1283 | 
             
                        },
         | 
| 1284 | 
            +
                        {
         | 
| 1285 | 
            +
                          "internalType": "string",
         | 
| 1286 | 
            +
                          "name": "referralCode",
         | 
| 1287 | 
            +
                          "type": "string"
         | 
| 1288 | 
            +
                        },
         | 
| 1404 1289 | 
             
                        {
         | 
| 1405 1290 | 
             
                          "internalType": "bytes",
         | 
| 1406 1291 | 
             
                          "name": "data",
         | 
| @@ -1426,25 +1311,15 @@ | |
| 1426 1311 | 
             
                          "name": "requesterNftId",
         | 
| 1427 1312 | 
             
                          "type": "uint96"
         | 
| 1428 1313 | 
             
                        },
         | 
| 1429 | 
            -
                        {
         | 
| 1430 | 
            -
                          "internalType": "string",
         | 
| 1431 | 
            -
                          "name": "callbackMethodName",
         | 
| 1432 | 
            -
                          "type": "string"
         | 
| 1433 | 
            -
                        },
         | 
| 1434 1314 | 
             
                        {
         | 
| 1435 1315 | 
             
                          "internalType": "NftId",
         | 
| 1436 1316 | 
             
                          "name": "oracleNftId",
         | 
| 1437 1317 | 
             
                          "type": "uint96"
         | 
| 1438 1318 | 
             
                        },
         | 
| 1439 1319 | 
             
                        {
         | 
| 1440 | 
            -
                          "internalType": " | 
| 1441 | 
            -
                          "name": " | 
| 1442 | 
            -
                          "type": " | 
| 1443 | 
            -
                        },
         | 
| 1444 | 
            -
                        {
         | 
| 1445 | 
            -
                          "internalType": "bytes",
         | 
| 1446 | 
            -
                          "name": "responseData",
         | 
| 1447 | 
            -
                          "type": "bytes"
         | 
| 1320 | 
            +
                          "internalType": "bool",
         | 
| 1321 | 
            +
                          "name": "isCancelled",
         | 
| 1322 | 
            +
                          "type": "bool"
         | 
| 1448 1323 | 
             
                        },
         | 
| 1449 1324 | 
             
                        {
         | 
| 1450 1325 | 
             
                          "internalType": "Timestamp",
         | 
| @@ -1457,9 +1332,19 @@ | |
| 1457 1332 | 
             
                          "type": "uint40"
         | 
| 1458 1333 | 
             
                        },
         | 
| 1459 1334 | 
             
                        {
         | 
| 1460 | 
            -
                          "internalType": " | 
| 1461 | 
            -
                          "name": " | 
| 1462 | 
            -
                          "type": " | 
| 1335 | 
            +
                          "internalType": "string",
         | 
| 1336 | 
            +
                          "name": "callbackMethodName",
         | 
| 1337 | 
            +
                          "type": "string"
         | 
| 1338 | 
            +
                        },
         | 
| 1339 | 
            +
                        {
         | 
| 1340 | 
            +
                          "internalType": "bytes",
         | 
| 1341 | 
            +
                          "name": "requestData",
         | 
| 1342 | 
            +
                          "type": "bytes"
         | 
| 1343 | 
            +
                        },
         | 
| 1344 | 
            +
                        {
         | 
| 1345 | 
            +
                          "internalType": "bytes",
         | 
| 1346 | 
            +
                          "name": "responseData",
         | 
| 1347 | 
            +
                          "type": "bytes"
         | 
| 1463 1348 | 
             
                        }
         | 
| 1464 1349 | 
             
                      ],
         | 
| 1465 1350 | 
             
                      "internalType": "struct IOracle.RequestInfo",
         | 
| @@ -1478,36 +1363,6 @@ | |
| 1478 1363 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1479 1364 | 
             
                  "type": "function"
         | 
| 1480 1365 | 
             
                },
         | 
| 1481 | 
            -
                {
         | 
| 1482 | 
            -
                  "inputs": [
         | 
| 1483 | 
            -
                    {
         | 
| 1484 | 
            -
                      "internalType": "RiskId",
         | 
| 1485 | 
            -
                      "name": "riskId",
         | 
| 1486 | 
            -
                      "type": "bytes8"
         | 
| 1487 | 
            -
                    },
         | 
| 1488 | 
            -
                    {
         | 
| 1489 | 
            -
                      "components": [
         | 
| 1490 | 
            -
                        {
         | 
| 1491 | 
            -
                          "internalType": "NftId",
         | 
| 1492 | 
            -
                          "name": "productNftId",
         | 
| 1493 | 
            -
                          "type": "uint96"
         | 
| 1494 | 
            -
                        },
         | 
| 1495 | 
            -
                        {
         | 
| 1496 | 
            -
                          "internalType": "bytes",
         | 
| 1497 | 
            -
                          "name": "data",
         | 
| 1498 | 
            -
                          "type": "bytes"
         | 
| 1499 | 
            -
                        }
         | 
| 1500 | 
            -
                      ],
         | 
| 1501 | 
            -
                      "internalType": "struct IRisk.RiskInfo",
         | 
| 1502 | 
            -
                      "name": "risk",
         | 
| 1503 | 
            -
                      "type": "tuple"
         | 
| 1504 | 
            -
                    }
         | 
| 1505 | 
            -
                  ],
         | 
| 1506 | 
            -
                  "name": "createRisk",
         | 
| 1507 | 
            -
                  "outputs": [],
         | 
| 1508 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1509 | 
            -
                  "type": "function"
         | 
| 1510 | 
            -
                },
         | 
| 1511 1366 | 
             
                {
         | 
| 1512 1367 | 
             
                  "inputs": [
         | 
| 1513 1368 | 
             
                    {
         | 
| @@ -1599,59 +1454,6 @@ | |
| 1599 1454 | 
             
                  "stateMutability": "view",
         | 
| 1600 1455 | 
             
                  "type": "function"
         | 
| 1601 1456 | 
             
                },
         | 
| 1602 | 
            -
                {
         | 
| 1603 | 
            -
                  "inputs": [
         | 
| 1604 | 
            -
                    {
         | 
| 1605 | 
            -
                      "internalType": "Key32",
         | 
| 1606 | 
            -
                      "name": "key32",
         | 
| 1607 | 
            -
                      "type": "bytes32"
         | 
| 1608 | 
            -
                    }
         | 
| 1609 | 
            -
                  ],
         | 
| 1610 | 
            -
                  "name": "get",
         | 
| 1611 | 
            -
                  "outputs": [
         | 
| 1612 | 
            -
                    {
         | 
| 1613 | 
            -
                      "components": [
         | 
| 1614 | 
            -
                        {
         | 
| 1615 | 
            -
                          "components": [
         | 
| 1616 | 
            -
                            {
         | 
| 1617 | 
            -
                              "internalType": "ObjectType",
         | 
| 1618 | 
            -
                              "name": "objectType",
         | 
| 1619 | 
            -
                              "type": "uint8"
         | 
| 1620 | 
            -
                            },
         | 
| 1621 | 
            -
                            {
         | 
| 1622 | 
            -
                              "internalType": "StateId",
         | 
| 1623 | 
            -
                              "name": "state",
         | 
| 1624 | 
            -
                              "type": "uint8"
         | 
| 1625 | 
            -
                            },
         | 
| 1626 | 
            -
                            {
         | 
| 1627 | 
            -
                              "internalType": "Blocknumber",
         | 
| 1628 | 
            -
                              "name": "updatedIn",
         | 
| 1629 | 
            -
                              "type": "uint32"
         | 
| 1630 | 
            -
                            },
         | 
| 1631 | 
            -
                            {
         | 
| 1632 | 
            -
                              "internalType": "Blocknumber",
         | 
| 1633 | 
            -
                              "name": "createdIn",
         | 
| 1634 | 
            -
                              "type": "uint32"
         | 
| 1635 | 
            -
                            }
         | 
| 1636 | 
            -
                          ],
         | 
| 1637 | 
            -
                          "internalType": "struct IKeyValueStore.Metadata",
         | 
| 1638 | 
            -
                          "name": "metadata",
         | 
| 1639 | 
            -
                          "type": "tuple"
         | 
| 1640 | 
            -
                        },
         | 
| 1641 | 
            -
                        {
         | 
| 1642 | 
            -
                          "internalType": "bytes",
         | 
| 1643 | 
            -
                          "name": "data",
         | 
| 1644 | 
            -
                          "type": "bytes"
         | 
| 1645 | 
            -
                        }
         | 
| 1646 | 
            -
                      ],
         | 
| 1647 | 
            -
                      "internalType": "struct IKeyValueStore.Value",
         | 
| 1648 | 
            -
                      "name": "value",
         | 
| 1649 | 
            -
                      "type": "tuple"
         | 
| 1650 | 
            -
                    }
         | 
| 1651 | 
            -
                  ],
         | 
| 1652 | 
            -
                  "stateMutability": "view",
         | 
| 1653 | 
            -
                  "type": "function"
         | 
| 1654 | 
            -
                },
         | 
| 1655 1457 | 
             
                {
         | 
| 1656 1458 | 
             
                  "inputs": [
         | 
| 1657 1459 | 
             
                    {
         | 
| @@ -1700,39 +1502,64 @@ | |
| 1700 1502 | 
             
                  "stateMutability": "view",
         | 
| 1701 1503 | 
             
                  "type": "function"
         | 
| 1702 1504 | 
             
                },
         | 
| 1703 | 
            -
                {
         | 
| 1704 | 
            -
                  "inputs": [
         | 
| 1705 | 
            -
                    {
         | 
| 1706 | 
            -
                      "internalType": "Key32",
         | 
| 1707 | 
            -
                      "name": "key32",
         | 
| 1708 | 
            -
                      "type": "bytes32"
         | 
| 1709 | 
            -
                    }
         | 
| 1710 | 
            -
                  ],
         | 
| 1711 | 
            -
                  "name": "getData",
         | 
| 1712 | 
            -
                  "outputs": [
         | 
| 1713 | 
            -
                    {
         | 
| 1714 | 
            -
                      "internalType": "bytes",
         | 
| 1715 | 
            -
                      "name": "data",
         | 
| 1716 | 
            -
                      "type": "bytes"
         | 
| 1717 | 
            -
                    }
         | 
| 1718 | 
            -
                  ],
         | 
| 1719 | 
            -
                  "stateMutability": "view",
         | 
| 1720 | 
            -
                  "type": "function"
         | 
| 1721 | 
            -
                },
         | 
| 1722 1505 | 
             
                {
         | 
| 1723 1506 | 
             
                  "inputs": [
         | 
| 1724 1507 | 
             
                    {
         | 
| 1725 1508 | 
             
                      "internalType": "NftId",
         | 
| 1726 | 
            -
                      "name": " | 
| 1509 | 
            +
                      "name": "bundleNftId",
         | 
| 1727 1510 | 
             
                      "type": "uint96"
         | 
| 1728 1511 | 
             
                    }
         | 
| 1729 1512 | 
             
                  ],
         | 
| 1730 | 
            -
                  "name": " | 
| 1513 | 
            +
                  "name": "getBundleInfo",
         | 
| 1731 1514 | 
             
                  "outputs": [
         | 
| 1732 1515 | 
             
                    {
         | 
| 1733 | 
            -
                      " | 
| 1734 | 
            -
             | 
| 1735 | 
            -
             | 
| 1516 | 
            +
                      "components": [
         | 
| 1517 | 
            +
                        {
         | 
| 1518 | 
            +
                          "internalType": "Timestamp",
         | 
| 1519 | 
            +
                          "name": "activatedAt",
         | 
| 1520 | 
            +
                          "type": "uint40"
         | 
| 1521 | 
            +
                        },
         | 
| 1522 | 
            +
                        {
         | 
| 1523 | 
            +
                          "internalType": "Timestamp",
         | 
| 1524 | 
            +
                          "name": "expiredAt",
         | 
| 1525 | 
            +
                          "type": "uint40"
         | 
| 1526 | 
            +
                        },
         | 
| 1527 | 
            +
                        {
         | 
| 1528 | 
            +
                          "internalType": "Timestamp",
         | 
| 1529 | 
            +
                          "name": "closedAt",
         | 
| 1530 | 
            +
                          "type": "uint40"
         | 
| 1531 | 
            +
                        },
         | 
| 1532 | 
            +
                        {
         | 
| 1533 | 
            +
                          "internalType": "NftId",
         | 
| 1534 | 
            +
                          "name": "poolNftId",
         | 
| 1535 | 
            +
                          "type": "uint96"
         | 
| 1536 | 
            +
                        },
         | 
| 1537 | 
            +
                        {
         | 
| 1538 | 
            +
                          "components": [
         | 
| 1539 | 
            +
                            {
         | 
| 1540 | 
            +
                              "internalType": "UFixed",
         | 
| 1541 | 
            +
                              "name": "fractionalFee",
         | 
| 1542 | 
            +
                              "type": "uint160"
         | 
| 1543 | 
            +
                            },
         | 
| 1544 | 
            +
                            {
         | 
| 1545 | 
            +
                              "internalType": "Amount",
         | 
| 1546 | 
            +
                              "name": "fixedFee",
         | 
| 1547 | 
            +
                              "type": "uint96"
         | 
| 1548 | 
            +
                            }
         | 
| 1549 | 
            +
                          ],
         | 
| 1550 | 
            +
                          "internalType": "struct Fee",
         | 
| 1551 | 
            +
                          "name": "fee",
         | 
| 1552 | 
            +
                          "type": "tuple"
         | 
| 1553 | 
            +
                        },
         | 
| 1554 | 
            +
                        {
         | 
| 1555 | 
            +
                          "internalType": "bytes",
         | 
| 1556 | 
            +
                          "name": "filter",
         | 
| 1557 | 
            +
                          "type": "bytes"
         | 
| 1558 | 
            +
                        }
         | 
| 1559 | 
            +
                      ],
         | 
| 1560 | 
            +
                      "internalType": "struct IBundle.BundleInfo",
         | 
| 1561 | 
            +
                      "name": "bundle",
         | 
| 1562 | 
            +
                      "type": "tuple"
         | 
| 1736 1563 | 
             
                    }
         | 
| 1737 1564 | 
             
                  ],
         | 
| 1738 1565 | 
             
                  "stateMutability": "view",
         | 
| @@ -1741,17 +1568,29 @@ | |
| 1741 1568 | 
             
                {
         | 
| 1742 1569 | 
             
                  "inputs": [
         | 
| 1743 1570 | 
             
                    {
         | 
| 1744 | 
            -
                      "internalType": " | 
| 1745 | 
            -
                      "name": " | 
| 1746 | 
            -
                      "type": " | 
| 1571 | 
            +
                      "internalType": "NftId",
         | 
| 1572 | 
            +
                      "name": "componentNftId",
         | 
| 1573 | 
            +
                      "type": "uint96"
         | 
| 1747 1574 | 
             
                    }
         | 
| 1748 1575 | 
             
                  ],
         | 
| 1749 | 
            -
                  "name": " | 
| 1576 | 
            +
                  "name": "getComponentInfo",
         | 
| 1750 1577 | 
             
                  "outputs": [
         | 
| 1751 1578 | 
             
                    {
         | 
| 1752 | 
            -
                      " | 
| 1753 | 
            -
             | 
| 1754 | 
            -
             | 
| 1579 | 
            +
                      "components": [
         | 
| 1580 | 
            +
                        {
         | 
| 1581 | 
            +
                          "internalType": "string",
         | 
| 1582 | 
            +
                          "name": "name",
         | 
| 1583 | 
            +
                          "type": "string"
         | 
| 1584 | 
            +
                        },
         | 
| 1585 | 
            +
                        {
         | 
| 1586 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 1587 | 
            +
                          "name": "tokenHandler",
         | 
| 1588 | 
            +
                          "type": "address"
         | 
| 1589 | 
            +
                        }
         | 
| 1590 | 
            +
                      ],
         | 
| 1591 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 1592 | 
            +
                      "name": "componentInfo",
         | 
| 1593 | 
            +
                      "type": "tuple"
         | 
| 1755 1594 | 
             
                    }
         | 
| 1756 1595 | 
             
                  ],
         | 
| 1757 1596 | 
             
                  "stateMutability": "view",
         | 
| @@ -1761,16 +1600,38 @@ | |
| 1761 1600 | 
             
                  "inputs": [
         | 
| 1762 1601 | 
             
                    {
         | 
| 1763 1602 | 
             
                      "internalType": "NftId",
         | 
| 1764 | 
            -
                      "name": " | 
| 1603 | 
            +
                      "name": "distributorNftId",
         | 
| 1765 1604 | 
             
                      "type": "uint96"
         | 
| 1766 1605 | 
             
                    }
         | 
| 1767 1606 | 
             
                  ],
         | 
| 1768 | 
            -
                  "name": " | 
| 1607 | 
            +
                  "name": "getDistributorInfo",
         | 
| 1769 1608 | 
             
                  "outputs": [
         | 
| 1770 1609 | 
             
                    {
         | 
| 1771 | 
            -
                      " | 
| 1772 | 
            -
             | 
| 1773 | 
            -
             | 
| 1610 | 
            +
                      "components": [
         | 
| 1611 | 
            +
                        {
         | 
| 1612 | 
            +
                          "internalType": "DistributorType",
         | 
| 1613 | 
            +
                          "name": "distributorType",
         | 
| 1614 | 
            +
                          "type": "bytes8"
         | 
| 1615 | 
            +
                        },
         | 
| 1616 | 
            +
                        {
         | 
| 1617 | 
            +
                          "internalType": "bool",
         | 
| 1618 | 
            +
                          "name": "active",
         | 
| 1619 | 
            +
                          "type": "bool"
         | 
| 1620 | 
            +
                        },
         | 
| 1621 | 
            +
                        {
         | 
| 1622 | 
            +
                          "internalType": "uint32",
         | 
| 1623 | 
            +
                          "name": "numPoliciesSold",
         | 
| 1624 | 
            +
                          "type": "uint32"
         | 
| 1625 | 
            +
                        },
         | 
| 1626 | 
            +
                        {
         | 
| 1627 | 
            +
                          "internalType": "bytes",
         | 
| 1628 | 
            +
                          "name": "data",
         | 
| 1629 | 
            +
                          "type": "bytes"
         | 
| 1630 | 
            +
                        }
         | 
| 1631 | 
            +
                      ],
         | 
| 1632 | 
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 1633 | 
            +
                      "name": "info",
         | 
| 1634 | 
            +
                      "type": "tuple"
         | 
| 1774 1635 | 
             
                    }
         | 
| 1775 1636 | 
             
                  ],
         | 
| 1776 1637 | 
             
                  "stateMutability": "view",
         | 
| @@ -1779,38 +1640,68 @@ | |
| 1779 1640 | 
             
                {
         | 
| 1780 1641 | 
             
                  "inputs": [
         | 
| 1781 1642 | 
             
                    {
         | 
| 1782 | 
            -
                      "internalType": " | 
| 1783 | 
            -
                      "name": " | 
| 1784 | 
            -
                      "type": " | 
| 1643 | 
            +
                      "internalType": "DistributorType",
         | 
| 1644 | 
            +
                      "name": "distributorType",
         | 
| 1645 | 
            +
                      "type": "bytes8"
         | 
| 1785 1646 | 
             
                    }
         | 
| 1786 1647 | 
             
                  ],
         | 
| 1787 | 
            -
                  "name": " | 
| 1648 | 
            +
                  "name": "getDistributorTypeInfo",
         | 
| 1788 1649 | 
             
                  "outputs": [
         | 
| 1789 1650 | 
             
                    {
         | 
| 1790 1651 | 
             
                      "components": [
         | 
| 1791 1652 | 
             
                        {
         | 
| 1792 | 
            -
                          "internalType": " | 
| 1793 | 
            -
                          "name": " | 
| 1794 | 
            -
                          "type": " | 
| 1653 | 
            +
                          "internalType": "UFixed",
         | 
| 1654 | 
            +
                          "name": "minDiscountPercentage",
         | 
| 1655 | 
            +
                          "type": "uint160"
         | 
| 1795 1656 | 
             
                        },
         | 
| 1796 1657 | 
             
                        {
         | 
| 1797 | 
            -
                          "internalType": " | 
| 1798 | 
            -
                          "name": " | 
| 1799 | 
            -
                          "type": " | 
| 1658 | 
            +
                          "internalType": "NftId",
         | 
| 1659 | 
            +
                          "name": "distributionNftId",
         | 
| 1660 | 
            +
                          "type": "uint96"
         | 
| 1800 1661 | 
             
                        },
         | 
| 1801 1662 | 
             
                        {
         | 
| 1802 | 
            -
                          "internalType": " | 
| 1803 | 
            -
                          "name": " | 
| 1663 | 
            +
                          "internalType": "UFixed",
         | 
| 1664 | 
            +
                          "name": "maxDiscountPercentage",
         | 
| 1665 | 
            +
                          "type": "uint160"
         | 
| 1666 | 
            +
                        },
         | 
| 1667 | 
            +
                        {
         | 
| 1668 | 
            +
                          "internalType": "uint32",
         | 
| 1669 | 
            +
                          "name": "maxReferralCount",
         | 
| 1804 1670 | 
             
                          "type": "uint32"
         | 
| 1805 1671 | 
             
                        },
         | 
| 1806 1672 | 
             
                        {
         | 
| 1807 | 
            -
                          "internalType": " | 
| 1808 | 
            -
                          "name": " | 
| 1809 | 
            -
                          "type": " | 
| 1673 | 
            +
                          "internalType": "Seconds",
         | 
| 1674 | 
            +
                          "name": "maxReferralLifetime",
         | 
| 1675 | 
            +
                          "type": "uint40"
         | 
| 1676 | 
            +
                        },
         | 
| 1677 | 
            +
                        {
         | 
| 1678 | 
            +
                          "internalType": "bool",
         | 
| 1679 | 
            +
                          "name": "allowSelfReferrals",
         | 
| 1680 | 
            +
                          "type": "bool"
         | 
| 1681 | 
            +
                        },
         | 
| 1682 | 
            +
                        {
         | 
| 1683 | 
            +
                          "internalType": "bool",
         | 
| 1684 | 
            +
                          "name": "allowRenewals",
         | 
| 1685 | 
            +
                          "type": "bool"
         | 
| 1686 | 
            +
                        },
         | 
| 1687 | 
            +
                        {
         | 
| 1688 | 
            +
                          "internalType": "UFixed",
         | 
| 1689 | 
            +
                          "name": "commissionPercentage",
         | 
| 1690 | 
            +
                          "type": "uint160"
         | 
| 1691 | 
            +
                        },
         | 
| 1692 | 
            +
                        {
         | 
| 1693 | 
            +
                          "internalType": "string",
         | 
| 1694 | 
            +
                          "name": "name",
         | 
| 1695 | 
            +
                          "type": "string"
         | 
| 1696 | 
            +
                        },
         | 
| 1697 | 
            +
                        {
         | 
| 1698 | 
            +
                          "internalType": "bytes",
         | 
| 1699 | 
            +
                          "name": "data",
         | 
| 1700 | 
            +
                          "type": "bytes"
         | 
| 1810 1701 | 
             
                        }
         | 
| 1811 1702 | 
             
                      ],
         | 
| 1812 | 
            -
                      "internalType": "struct  | 
| 1813 | 
            -
                      "name": " | 
| 1703 | 
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 1704 | 
            +
                      "name": "info",
         | 
| 1814 1705 | 
             
                      "type": "tuple"
         | 
| 1815 1706 | 
             
                    }
         | 
| 1816 1707 | 
             
                  ],
         | 
| @@ -1820,17 +1711,17 @@ | |
| 1820 1711 | 
             
                {
         | 
| 1821 1712 | 
             
                  "inputs": [
         | 
| 1822 1713 | 
             
                    {
         | 
| 1823 | 
            -
                      "internalType": " | 
| 1824 | 
            -
                      "name": " | 
| 1825 | 
            -
                      "type": " | 
| 1714 | 
            +
                      "internalType": "NftId",
         | 
| 1715 | 
            +
                      "name": "targetNftId",
         | 
| 1716 | 
            +
                      "type": "uint96"
         | 
| 1826 1717 | 
             
                    }
         | 
| 1827 1718 | 
             
                  ],
         | 
| 1828 | 
            -
                  "name": " | 
| 1719 | 
            +
                  "name": "getFeeAmount",
         | 
| 1829 1720 | 
             
                  "outputs": [
         | 
| 1830 1721 | 
             
                    {
         | 
| 1831 | 
            -
                      "internalType": " | 
| 1832 | 
            -
                      "name": " | 
| 1833 | 
            -
                      "type": " | 
| 1722 | 
            +
                      "internalType": "Amount",
         | 
| 1723 | 
            +
                      "name": "feeAmount",
         | 
| 1724 | 
            +
                      "type": "uint96"
         | 
| 1834 1725 | 
             
                    }
         | 
| 1835 1726 | 
             
                  ],
         | 
| 1836 1727 | 
             
                  "stateMutability": "view",
         | 
| @@ -1844,12 +1735,12 @@ | |
| 1844 1735 | 
             
                      "type": "uint8"
         | 
| 1845 1736 | 
             
                    }
         | 
| 1846 1737 | 
             
                  ],
         | 
| 1847 | 
            -
                  "name": " | 
| 1738 | 
            +
                  "name": "getInitialState",
         | 
| 1848 1739 | 
             
                  "outputs": [
         | 
| 1849 1740 | 
             
                    {
         | 
| 1850 | 
            -
                      "internalType": " | 
| 1741 | 
            +
                      "internalType": "StateId",
         | 
| 1851 1742 | 
             
                      "name": "",
         | 
| 1852 | 
            -
                      "type": " | 
| 1743 | 
            +
                      "type": "uint8"
         | 
| 1853 1744 | 
             
                    }
         | 
| 1854 1745 | 
             
                  ],
         | 
| 1855 1746 | 
             
                  "stateMutability": "view",
         | 
| @@ -1861,116 +1752,50 @@ | |
| 1861 1752 | 
             
                      "internalType": "NftId",
         | 
| 1862 1753 | 
             
                      "name": "targetNftId",
         | 
| 1863 1754 | 
             
                      "type": "uint96"
         | 
| 1864 | 
            -
                    },
         | 
| 1865 | 
            -
                    {
         | 
| 1866 | 
            -
                      "internalType": "Amount",
         | 
| 1867 | 
            -
                      "name": "amount",
         | 
| 1868 | 
            -
                      "type": "uint96"
         | 
| 1869 | 
            -
                    }
         | 
| 1870 | 
            -
                  ],
         | 
| 1871 | 
            -
                  "name": "increaseBalance",
         | 
| 1872 | 
            -
                  "outputs": [
         | 
| 1873 | 
            -
                    {
         | 
| 1874 | 
            -
                      "internalType": "Amount",
         | 
| 1875 | 
            -
                      "name": "newBalance",
         | 
| 1876 | 
            -
                      "type": "uint96"
         | 
| 1877 | 
            -
                    }
         | 
| 1878 | 
            -
                  ],
         | 
| 1879 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1880 | 
            -
                  "type": "function"
         | 
| 1881 | 
            -
                },
         | 
| 1882 | 
            -
                {
         | 
| 1883 | 
            -
                  "inputs": [
         | 
| 1884 | 
            -
                    {
         | 
| 1885 | 
            -
                      "internalType": "NftId",
         | 
| 1886 | 
            -
                      "name": "targetNftId",
         | 
| 1887 | 
            -
                      "type": "uint96"
         | 
| 1888 | 
            -
                    },
         | 
| 1889 | 
            -
                    {
         | 
| 1890 | 
            -
                      "internalType": "Amount",
         | 
| 1891 | 
            -
                      "name": "amount",
         | 
| 1892 | 
            -
                      "type": "uint96"
         | 
| 1893 | 
            -
                    }
         | 
| 1894 | 
            -
                  ],
         | 
| 1895 | 
            -
                  "name": "increaseFees",
         | 
| 1896 | 
            -
                  "outputs": [
         | 
| 1897 | 
            -
                    {
         | 
| 1898 | 
            -
                      "internalType": "Amount",
         | 
| 1899 | 
            -
                      "name": "newFeeBalance",
         | 
| 1900 | 
            -
                      "type": "uint96"
         | 
| 1901 | 
            -
                    }
         | 
| 1902 | 
            -
                  ],
         | 
| 1903 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1904 | 
            -
                  "type": "function"
         | 
| 1905 | 
            -
                },
         | 
| 1906 | 
            -
                {
         | 
| 1907 | 
            -
                  "inputs": [
         | 
| 1908 | 
            -
                    {
         | 
| 1909 | 
            -
                      "internalType": "NftId",
         | 
| 1910 | 
            -
                      "name": "targetNftId",
         | 
| 1911 | 
            -
                      "type": "uint96"
         | 
| 1912 | 
            -
                    },
         | 
| 1913 | 
            -
                    {
         | 
| 1914 | 
            -
                      "internalType": "Amount",
         | 
| 1915 | 
            -
                      "name": "amount",
         | 
| 1916 | 
            -
                      "type": "uint96"
         | 
| 1917 1755 | 
             
                    }
         | 
| 1918 1756 | 
             
                  ],
         | 
| 1919 | 
            -
                  "name": " | 
| 1757 | 
            +
                  "name": "getLockedAmount",
         | 
| 1920 1758 | 
             
                  "outputs": [
         | 
| 1921 1759 | 
             
                    {
         | 
| 1922 1760 | 
             
                      "internalType": "Amount",
         | 
| 1923 | 
            -
                      "name": " | 
| 1761 | 
            +
                      "name": "lockedAmount",
         | 
| 1924 1762 | 
             
                      "type": "uint96"
         | 
| 1925 1763 | 
             
                    }
         | 
| 1926 1764 | 
             
                  ],
         | 
| 1927 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1928 | 
            -
                  "type": "function"
         | 
| 1929 | 
            -
                },
         | 
| 1930 | 
            -
                {
         | 
| 1931 | 
            -
                  "inputs": [],
         | 
| 1932 | 
            -
                  "name": "initialize",
         | 
| 1933 | 
            -
                  "outputs": [],
         | 
| 1934 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1935 | 
            -
                  "type": "function"
         | 
| 1936 | 
            -
                },
         | 
| 1937 | 
            -
                {
         | 
| 1938 | 
            -
                  "inputs": [],
         | 
| 1939 | 
            -
                  "name": "isConsumingScheduledOp",
         | 
| 1940 | 
            -
                  "outputs": [
         | 
| 1941 | 
            -
                    {
         | 
| 1942 | 
            -
                      "internalType": "bytes4",
         | 
| 1943 | 
            -
                      "name": "",
         | 
| 1944 | 
            -
                      "type": "bytes4"
         | 
| 1945 | 
            -
                    }
         | 
| 1946 | 
            -
                  ],
         | 
| 1947 1765 | 
             
                  "stateMutability": "view",
         | 
| 1948 1766 | 
             
                  "type": "function"
         | 
| 1949 1767 | 
             
                },
         | 
| 1950 1768 | 
             
                {
         | 
| 1951 1769 | 
             
                  "inputs": [
         | 
| 1952 1770 | 
             
                    {
         | 
| 1953 | 
            -
                      "internalType": " | 
| 1954 | 
            -
                      "name": " | 
| 1955 | 
            -
                      "type": " | 
| 1956 | 
            -
                    },
         | 
| 1957 | 
            -
                    {
         | 
| 1958 | 
            -
                      "internalType": "StateId",
         | 
| 1959 | 
            -
                      "name": "fromId",
         | 
| 1960 | 
            -
                      "type": "uint8"
         | 
| 1961 | 
            -
                    },
         | 
| 1962 | 
            -
                    {
         | 
| 1963 | 
            -
                      "internalType": "StateId",
         | 
| 1964 | 
            -
                      "name": "toId",
         | 
| 1965 | 
            -
                      "type": "uint8"
         | 
| 1771 | 
            +
                      "internalType": "Key32",
         | 
| 1772 | 
            +
                      "name": "key32",
         | 
| 1773 | 
            +
                      "type": "bytes32"
         | 
| 1966 1774 | 
             
                    }
         | 
| 1967 1775 | 
             
                  ],
         | 
| 1968 | 
            -
                  "name": " | 
| 1776 | 
            +
                  "name": "getMetadata",
         | 
| 1969 1777 | 
             
                  "outputs": [
         | 
| 1970 1778 | 
             
                    {
         | 
| 1971 | 
            -
                      " | 
| 1972 | 
            -
             | 
| 1973 | 
            -
             | 
| 1779 | 
            +
                      "components": [
         | 
| 1780 | 
            +
                        {
         | 
| 1781 | 
            +
                          "internalType": "ObjectType",
         | 
| 1782 | 
            +
                          "name": "objectType",
         | 
| 1783 | 
            +
                          "type": "uint8"
         | 
| 1784 | 
            +
                        },
         | 
| 1785 | 
            +
                        {
         | 
| 1786 | 
            +
                          "internalType": "StateId",
         | 
| 1787 | 
            +
                          "name": "state",
         | 
| 1788 | 
            +
                          "type": "uint8"
         | 
| 1789 | 
            +
                        },
         | 
| 1790 | 
            +
                        {
         | 
| 1791 | 
            +
                          "internalType": "Blocknumber",
         | 
| 1792 | 
            +
                          "name": "updatedIn",
         | 
| 1793 | 
            +
                          "type": "uint40"
         | 
| 1794 | 
            +
                        }
         | 
| 1795 | 
            +
                      ],
         | 
| 1796 | 
            +
                      "internalType": "struct IBaseStore.Metadata",
         | 
| 1797 | 
            +
                      "name": "metadata",
         | 
| 1798 | 
            +
                      "type": "tuple"
         | 
| 1974 1799 | 
             
                    }
         | 
| 1975 1800 | 
             
                  ],
         | 
| 1976 1801 | 
             
                  "stateMutability": "view",
         | 
| @@ -1979,428 +1804,240 @@ | |
| 1979 1804 | 
             
                {
         | 
| 1980 1805 | 
             
                  "inputs": [
         | 
| 1981 1806 | 
             
                    {
         | 
| 1982 | 
            -
                      "internalType": " | 
| 1983 | 
            -
                      "name": " | 
| 1984 | 
            -
                      "type": " | 
| 1985 | 
            -
                    }
         | 
| 1986 | 
            -
                  ],
         | 
| 1987 | 
            -
                  "name": "setAuthority",
         | 
| 1988 | 
            -
                  "outputs": [],
         | 
| 1989 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1990 | 
            -
                  "type": "function"
         | 
| 1991 | 
            -
                },
         | 
| 1992 | 
            -
                {
         | 
| 1993 | 
            -
                  "inputs": [
         | 
| 1994 | 
            -
                    {
         | 
| 1995 | 
            -
                      "internalType": "ObjectType",
         | 
| 1996 | 
            -
                      "name": "objectType",
         | 
| 1997 | 
            -
                      "type": "uint8"
         | 
| 1998 | 
            -
                    },
         | 
| 1999 | 
            -
                    {
         | 
| 2000 | 
            -
                      "internalType": "KeyId",
         | 
| 2001 | 
            -
                      "name": "id",
         | 
| 2002 | 
            -
                      "type": "bytes31"
         | 
| 1807 | 
            +
                      "internalType": "NftId",
         | 
| 1808 | 
            +
                      "name": "poolNftId",
         | 
| 1809 | 
            +
                      "type": "uint96"
         | 
| 2003 1810 | 
             
                    }
         | 
| 2004 1811 | 
             
                  ],
         | 
| 2005 | 
            -
                  "name": " | 
| 1812 | 
            +
                  "name": "getPoolInfo",
         | 
| 2006 1813 | 
             
                  "outputs": [
         | 
| 2007 | 
            -
                    {
         | 
| 2008 | 
            -
                      "internalType": "Key32",
         | 
| 2009 | 
            -
                      "name": "",
         | 
| 2010 | 
            -
                      "type": "bytes32"
         | 
| 2011 | 
            -
                    }
         | 
| 2012 | 
            -
                  ],
         | 
| 2013 | 
            -
                  "stateMutability": "pure",
         | 
| 2014 | 
            -
                  "type": "function"
         | 
| 2015 | 
            -
                },
         | 
| 2016 | 
            -
                {
         | 
| 2017 | 
            -
                  "inputs": [
         | 
| 2018 | 
            -
                    {
         | 
| 2019 | 
            -
                      "internalType": "NftId",
         | 
| 2020 | 
            -
                      "name": "applicationNftId",
         | 
| 2021 | 
            -
                      "type": "uint96"
         | 
| 2022 | 
            -
                    },
         | 
| 2023 1814 | 
             
                    {
         | 
| 2024 1815 | 
             
                      "components": [
         | 
| 2025 | 
            -
                        {
         | 
| 2026 | 
            -
                          "internalType": "NftId",
         | 
| 2027 | 
            -
                          "name": "productNftId",
         | 
| 2028 | 
            -
                          "type": "uint96"
         | 
| 2029 | 
            -
                        },
         | 
| 2030 | 
            -
                        {
         | 
| 2031 | 
            -
                          "internalType": "NftId",
         | 
| 2032 | 
            -
                          "name": "bundleNftId",
         | 
| 2033 | 
            -
                          "type": "uint96"
         | 
| 2034 | 
            -
                        },
         | 
| 2035 | 
            -
                        {
         | 
| 2036 | 
            -
                          "internalType": "ReferralId",
         | 
| 2037 | 
            -
                          "name": "referralId",
         | 
| 2038 | 
            -
                          "type": "bytes8"
         | 
| 2039 | 
            -
                        },
         | 
| 2040 | 
            -
                        {
         | 
| 2041 | 
            -
                          "internalType": "RiskId",
         | 
| 2042 | 
            -
                          "name": "riskId",
         | 
| 2043 | 
            -
                          "type": "bytes8"
         | 
| 2044 | 
            -
                        },
         | 
| 2045 | 
            -
                        {
         | 
| 2046 | 
            -
                          "internalType": "Amount",
         | 
| 2047 | 
            -
                          "name": "sumInsuredAmount",
         | 
| 2048 | 
            -
                          "type": "uint96"
         | 
| 2049 | 
            -
                        },
         | 
| 2050 1816 | 
             
                        {
         | 
| 2051 1817 | 
             
                          "internalType": "Amount",
         | 
| 2052 | 
            -
                          "name": " | 
| 1818 | 
            +
                          "name": "maxBalanceAmount",
         | 
| 2053 1819 | 
             
                          "type": "uint96"
         | 
| 2054 1820 | 
             
                        },
         | 
| 2055 1821 | 
             
                        {
         | 
| 2056 | 
            -
                          "internalType": " | 
| 2057 | 
            -
                          "name": " | 
| 2058 | 
            -
                          "type": " | 
| 2059 | 
            -
                        },
         | 
| 2060 | 
            -
                        {
         | 
| 2061 | 
            -
                          "internalType": "bytes",
         | 
| 2062 | 
            -
                          "name": "applicationData",
         | 
| 2063 | 
            -
                          "type": "bytes"
         | 
| 2064 | 
            -
                        },
         | 
| 2065 | 
            -
                        {
         | 
| 2066 | 
            -
                          "internalType": "bytes",
         | 
| 2067 | 
            -
                          "name": "processData",
         | 
| 2068 | 
            -
                          "type": "bytes"
         | 
| 2069 | 
            -
                        },
         | 
| 2070 | 
            -
                        {
         | 
| 2071 | 
            -
                          "internalType": "uint16",
         | 
| 2072 | 
            -
                          "name": "claimsCount",
         | 
| 2073 | 
            -
                          "type": "uint16"
         | 
| 2074 | 
            -
                        },
         | 
| 2075 | 
            -
                        {
         | 
| 2076 | 
            -
                          "internalType": "uint16",
         | 
| 2077 | 
            -
                          "name": "openClaimsCount",
         | 
| 2078 | 
            -
                          "type": "uint16"
         | 
| 1822 | 
            +
                          "internalType": "UFixed",
         | 
| 1823 | 
            +
                          "name": "collateralizationLevel",
         | 
| 1824 | 
            +
                          "type": "uint160"
         | 
| 2079 1825 | 
             
                        },
         | 
| 2080 1826 | 
             
                        {
         | 
| 2081 | 
            -
                          "internalType": " | 
| 2082 | 
            -
                          "name": " | 
| 2083 | 
            -
                          "type": " | 
| 1827 | 
            +
                          "internalType": "UFixed",
         | 
| 1828 | 
            +
                          "name": "retentionLevel",
         | 
| 1829 | 
            +
                          "type": "uint160"
         | 
| 2084 1830 | 
             
                        },
         | 
| 2085 1831 | 
             
                        {
         | 
| 2086 | 
            -
                          "internalType": " | 
| 2087 | 
            -
                          "name": " | 
| 2088 | 
            -
                          "type": " | 
| 1832 | 
            +
                          "internalType": "bool",
         | 
| 1833 | 
            +
                          "name": "isInterceptingBundleTransfers",
         | 
| 1834 | 
            +
                          "type": "bool"
         | 
| 2089 1835 | 
             
                        },
         | 
| 2090 1836 | 
             
                        {
         | 
| 2091 | 
            -
                          "internalType": " | 
| 2092 | 
            -
                          "name": " | 
| 2093 | 
            -
                          "type": " | 
| 1837 | 
            +
                          "internalType": "bool",
         | 
| 1838 | 
            +
                          "name": "isProcessingConfirmedClaims",
         | 
| 1839 | 
            +
                          "type": "bool"
         | 
| 2094 1840 | 
             
                        },
         | 
| 2095 1841 | 
             
                        {
         | 
| 2096 | 
            -
                          "internalType": " | 
| 2097 | 
            -
                          "name": " | 
| 2098 | 
            -
                          "type": " | 
| 1842 | 
            +
                          "internalType": "bool",
         | 
| 1843 | 
            +
                          "name": "isExternallyManaged",
         | 
| 1844 | 
            +
                          "type": "bool"
         | 
| 2099 1845 | 
             
                        },
         | 
| 2100 1846 | 
             
                        {
         | 
| 2101 | 
            -
                          "internalType": " | 
| 2102 | 
            -
                          "name": " | 
| 2103 | 
            -
                          "type": " | 
| 1847 | 
            +
                          "internalType": "bool",
         | 
| 1848 | 
            +
                          "name": "isVerifyingApplications",
         | 
| 1849 | 
            +
                          "type": "bool"
         | 
| 2104 1850 | 
             
                        }
         | 
| 2105 | 
            -
                      ],
         | 
| 2106 | 
            -
                      "internalType": "struct  | 
| 2107 | 
            -
                      "name": " | 
| 2108 | 
            -
                      "type": "tuple"
         | 
| 2109 | 
            -
                    },
         | 
| 2110 | 
            -
                    {
         | 
| 2111 | 
            -
                      "internalType": "StateId",
         | 
| 2112 | 
            -
                      "name": "newState",
         | 
| 2113 | 
            -
                      "type": "uint8"
         | 
| 1851 | 
            +
                      ],
         | 
| 1852 | 
            +
                      "internalType": "struct IComponents.PoolInfo",
         | 
| 1853 | 
            +
                      "name": "info",
         | 
| 1854 | 
            +
                      "type": "tuple"
         | 
| 2114 1855 | 
             
                    }
         | 
| 2115 1856 | 
             
                  ],
         | 
| 2116 | 
            -
                  " | 
| 2117 | 
            -
                  "outputs": [],
         | 
| 2118 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1857 | 
            +
                  "stateMutability": "view",
         | 
| 2119 1858 | 
             
                  "type": "function"
         | 
| 2120 1859 | 
             
                },
         | 
| 2121 1860 | 
             
                {
         | 
| 2122 1861 | 
             
                  "inputs": [
         | 
| 2123 1862 | 
             
                    {
         | 
| 2124 | 
            -
                      "internalType": " | 
| 2125 | 
            -
                      "name": " | 
| 2126 | 
            -
                      "type": " | 
| 2127 | 
            -
                    },
         | 
| 2128 | 
            -
                    {
         | 
| 2129 | 
            -
                      "internalType": "StateId",
         | 
| 2130 | 
            -
                      "name": "newState",
         | 
| 2131 | 
            -
                      "type": "uint8"
         | 
| 1863 | 
            +
                      "internalType": "ReferralId",
         | 
| 1864 | 
            +
                      "name": "referralId",
         | 
| 1865 | 
            +
                      "type": "bytes8"
         | 
| 2132 1866 | 
             
                    }
         | 
| 2133 1867 | 
             
                  ],
         | 
| 2134 | 
            -
                  "name": " | 
| 2135 | 
            -
                  "outputs": [ | 
| 2136 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 2137 | 
            -
                  "type": "function"
         | 
| 2138 | 
            -
                },
         | 
| 2139 | 
            -
                {
         | 
| 2140 | 
            -
                  "inputs": [
         | 
| 2141 | 
            -
                    {
         | 
| 2142 | 
            -
                      "internalType": "NftId",
         | 
| 2143 | 
            -
                      "name": "bundleNftId",
         | 
| 2144 | 
            -
                      "type": "uint96"
         | 
| 2145 | 
            -
                    },
         | 
| 1868 | 
            +
                  "name": "getReferralInfo",
         | 
| 1869 | 
            +
                  "outputs": [
         | 
| 2146 1870 | 
             
                    {
         | 
| 2147 1871 | 
             
                      "components": [
         | 
| 2148 1872 | 
             
                        {
         | 
| 2149 1873 | 
             
                          "internalType": "NftId",
         | 
| 2150 | 
            -
                          "name": " | 
| 1874 | 
            +
                          "name": "distributionNftId",
         | 
| 2151 1875 | 
             
                          "type": "uint96"
         | 
| 2152 1876 | 
             
                        },
         | 
| 2153 1877 | 
             
                        {
         | 
| 2154 | 
            -
                          " | 
| 2155 | 
            -
             | 
| 2156 | 
            -
             | 
| 2157 | 
            -
                              "name": "fractionalFee",
         | 
| 2158 | 
            -
                              "type": "uint256"
         | 
| 2159 | 
            -
                            },
         | 
| 2160 | 
            -
                            {
         | 
| 2161 | 
            -
                              "internalType": "uint256",
         | 
| 2162 | 
            -
                              "name": "fixedFee",
         | 
| 2163 | 
            -
                              "type": "uint256"
         | 
| 2164 | 
            -
                            }
         | 
| 2165 | 
            -
                          ],
         | 
| 2166 | 
            -
                          "internalType": "struct Fee",
         | 
| 2167 | 
            -
                          "name": "fee",
         | 
| 2168 | 
            -
                          "type": "tuple"
         | 
| 1878 | 
            +
                          "internalType": "NftId",
         | 
| 1879 | 
            +
                          "name": "distributorNftId",
         | 
| 1880 | 
            +
                          "type": "uint96"
         | 
| 2169 1881 | 
             
                        },
         | 
| 2170 1882 | 
             
                        {
         | 
| 2171 | 
            -
                          "internalType": " | 
| 2172 | 
            -
                          "name": " | 
| 2173 | 
            -
                          "type": " | 
| 1883 | 
            +
                          "internalType": "uint32",
         | 
| 1884 | 
            +
                          "name": "maxReferrals",
         | 
| 1885 | 
            +
                          "type": "uint32"
         | 
| 2174 1886 | 
             
                        },
         | 
| 2175 1887 | 
             
                        {
         | 
| 2176 | 
            -
                          "internalType": " | 
| 2177 | 
            -
                          "name": " | 
| 2178 | 
            -
                          "type": " | 
| 1888 | 
            +
                          "internalType": "uint32",
         | 
| 1889 | 
            +
                          "name": "usedReferrals",
         | 
| 1890 | 
            +
                          "type": "uint32"
         | 
| 2179 1891 | 
             
                        },
         | 
| 2180 1892 | 
             
                        {
         | 
| 2181 | 
            -
                          "internalType": " | 
| 2182 | 
            -
                          "name": " | 
| 2183 | 
            -
                          "type": " | 
| 1893 | 
            +
                          "internalType": "UFixed",
         | 
| 1894 | 
            +
                          "name": "discountPercentage",
         | 
| 1895 | 
            +
                          "type": "uint160"
         | 
| 2184 1896 | 
             
                        },
         | 
| 2185 1897 | 
             
                        {
         | 
| 2186 1898 | 
             
                          "internalType": "Timestamp",
         | 
| 2187 | 
            -
                          "name": " | 
| 1899 | 
            +
                          "name": "expiryAt",
         | 
| 2188 1900 | 
             
                          "type": "uint40"
         | 
| 1901 | 
            +
                        },
         | 
| 1902 | 
            +
                        {
         | 
| 1903 | 
            +
                          "internalType": "string",
         | 
| 1904 | 
            +
                          "name": "referralCode",
         | 
| 1905 | 
            +
                          "type": "string"
         | 
| 1906 | 
            +
                        },
         | 
| 1907 | 
            +
                        {
         | 
| 1908 | 
            +
                          "internalType": "bytes",
         | 
| 1909 | 
            +
                          "name": "data",
         | 
| 1910 | 
            +
                          "type": "bytes"
         | 
| 2189 1911 | 
             
                        }
         | 
| 2190 1912 | 
             
                      ],
         | 
| 2191 | 
            -
                      "internalType": "struct  | 
| 2192 | 
            -
                      "name": " | 
| 1913 | 
            +
                      "internalType": "struct IDistribution.ReferralInfo",
         | 
| 1914 | 
            +
                      "name": "referralInfo",
         | 
| 2193 1915 | 
             
                      "type": "tuple"
         | 
| 2194 | 
            -
                    },
         | 
| 2195 | 
            -
                    {
         | 
| 2196 | 
            -
                      "internalType": "StateId",
         | 
| 2197 | 
            -
                      "name": "newState",
         | 
| 2198 | 
            -
                      "type": "uint8"
         | 
| 2199 1916 | 
             
                    }
         | 
| 2200 1917 | 
             
                  ],
         | 
| 2201 | 
            -
                  " | 
| 2202 | 
            -
                  "outputs": [],
         | 
| 2203 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1918 | 
            +
                  "stateMutability": "view",
         | 
| 2204 1919 | 
             
                  "type": "function"
         | 
| 2205 1920 | 
             
                },
         | 
| 2206 1921 | 
             
                {
         | 
| 2207 1922 | 
             
                  "inputs": [
         | 
| 2208 1923 | 
             
                    {
         | 
| 2209 | 
            -
                      "internalType": " | 
| 2210 | 
            -
                      "name": " | 
| 2211 | 
            -
                      "type": " | 
| 2212 | 
            -
                    },
         | 
| 2213 | 
            -
                    {
         | 
| 2214 | 
            -
                      "internalType": "StateId",
         | 
| 2215 | 
            -
                      "name": "newState",
         | 
| 2216 | 
            -
                      "type": "uint8"
         | 
| 1924 | 
            +
                      "internalType": "RequestId",
         | 
| 1925 | 
            +
                      "name": "requestId",
         | 
| 1926 | 
            +
                      "type": "uint64"
         | 
| 2217 1927 | 
             
                    }
         | 
| 2218 1928 | 
             
                  ],
         | 
| 2219 | 
            -
                  "name": " | 
| 2220 | 
            -
                  "outputs": [ | 
| 2221 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 2222 | 
            -
                  "type": "function"
         | 
| 2223 | 
            -
                },
         | 
| 2224 | 
            -
                {
         | 
| 2225 | 
            -
                  "inputs": [
         | 
| 2226 | 
            -
                    {
         | 
| 2227 | 
            -
                      "internalType": "NftId",
         | 
| 2228 | 
            -
                      "name": "policyNftId",
         | 
| 2229 | 
            -
                      "type": "uint96"
         | 
| 2230 | 
            -
                    },
         | 
| 2231 | 
            -
                    {
         | 
| 2232 | 
            -
                      "internalType": "ClaimId",
         | 
| 2233 | 
            -
                      "name": "claimId",
         | 
| 2234 | 
            -
                      "type": "uint16"
         | 
| 2235 | 
            -
                    },
         | 
| 1929 | 
            +
                  "name": "getRequestInfo",
         | 
| 1930 | 
            +
                  "outputs": [
         | 
| 2236 1931 | 
             
                    {
         | 
| 2237 1932 | 
             
                      "components": [
         | 
| 2238 1933 | 
             
                        {
         | 
| 2239 | 
            -
                          "internalType": " | 
| 2240 | 
            -
                          "name": " | 
| 1934 | 
            +
                          "internalType": "NftId",
         | 
| 1935 | 
            +
                          "name": "requesterNftId",
         | 
| 2241 1936 | 
             
                          "type": "uint96"
         | 
| 2242 1937 | 
             
                        },
         | 
| 2243 1938 | 
             
                        {
         | 
| 2244 | 
            -
                          "internalType": " | 
| 2245 | 
            -
                          "name": " | 
| 1939 | 
            +
                          "internalType": "NftId",
         | 
| 1940 | 
            +
                          "name": "oracleNftId",
         | 
| 2246 1941 | 
             
                          "type": "uint96"
         | 
| 2247 1942 | 
             
                        },
         | 
| 2248 1943 | 
             
                        {
         | 
| 2249 | 
            -
                          "internalType": " | 
| 2250 | 
            -
                          "name": " | 
| 2251 | 
            -
                          "type": " | 
| 1944 | 
            +
                          "internalType": "bool",
         | 
| 1945 | 
            +
                          "name": "isCancelled",
         | 
| 1946 | 
            +
                          "type": "bool"
         | 
| 2252 1947 | 
             
                        },
         | 
| 2253 1948 | 
             
                        {
         | 
| 2254 | 
            -
                          "internalType": " | 
| 2255 | 
            -
                          "name": " | 
| 2256 | 
            -
                          "type": " | 
| 1949 | 
            +
                          "internalType": "Timestamp",
         | 
| 1950 | 
            +
                          "name": "respondedAt",
         | 
| 1951 | 
            +
                          "type": "uint40"
         | 
| 2257 1952 | 
             
                        },
         | 
| 2258 1953 | 
             
                        {
         | 
| 2259 | 
            -
                          "internalType": " | 
| 2260 | 
            -
                          "name": " | 
| 2261 | 
            -
                          "type": " | 
| 1954 | 
            +
                          "internalType": "Timestamp",
         | 
| 1955 | 
            +
                          "name": "expiredAt",
         | 
| 1956 | 
            +
                          "type": "uint40"
         | 
| 1957 | 
            +
                        },
         | 
| 1958 | 
            +
                        {
         | 
| 1959 | 
            +
                          "internalType": "string",
         | 
| 1960 | 
            +
                          "name": "callbackMethodName",
         | 
| 1961 | 
            +
                          "type": "string"
         | 
| 2262 1962 | 
             
                        },
         | 
| 2263 1963 | 
             
                        {
         | 
| 2264 1964 | 
             
                          "internalType": "bytes",
         | 
| 2265 | 
            -
                          "name": " | 
| 1965 | 
            +
                          "name": "requestData",
         | 
| 2266 1966 | 
             
                          "type": "bytes"
         | 
| 2267 1967 | 
             
                        },
         | 
| 2268 1968 | 
             
                        {
         | 
| 2269 | 
            -
                          "internalType": " | 
| 2270 | 
            -
                          "name": " | 
| 2271 | 
            -
                          "type": " | 
| 1969 | 
            +
                          "internalType": "bytes",
         | 
| 1970 | 
            +
                          "name": "responseData",
         | 
| 1971 | 
            +
                          "type": "bytes"
         | 
| 2272 1972 | 
             
                        }
         | 
| 2273 1973 | 
             
                      ],
         | 
| 2274 | 
            -
                      "internalType": "struct  | 
| 2275 | 
            -
                      "name": " | 
| 1974 | 
            +
                      "internalType": "struct IOracle.RequestInfo",
         | 
| 1975 | 
            +
                      "name": "request",
         | 
| 2276 1976 | 
             
                      "type": "tuple"
         | 
| 2277 | 
            -
                    },
         | 
| 2278 | 
            -
                    {
         | 
| 2279 | 
            -
                      "internalType": "StateId",
         | 
| 2280 | 
            -
                      "name": "newState",
         | 
| 2281 | 
            -
                      "type": "uint8"
         | 
| 2282 1977 | 
             
                    }
         | 
| 2283 1978 | 
             
                  ],
         | 
| 2284 | 
            -
                  " | 
| 2285 | 
            -
                  "outputs": [],
         | 
| 2286 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1979 | 
            +
                  "stateMutability": "view",
         | 
| 2287 1980 | 
             
                  "type": "function"
         | 
| 2288 1981 | 
             
                },
         | 
| 2289 1982 | 
             
                {
         | 
| 2290 1983 | 
             
                  "inputs": [
         | 
| 2291 1984 | 
             
                    {
         | 
| 2292 | 
            -
                      "internalType": " | 
| 2293 | 
            -
                      "name": " | 
| 2294 | 
            -
                      "type": " | 
| 2295 | 
            -
                    } | 
| 2296 | 
            -
             | 
| 2297 | 
            -
             | 
| 2298 | 
            -
             | 
| 2299 | 
            -
                      "type": "uint16"
         | 
| 2300 | 
            -
                    },
         | 
| 1985 | 
            +
                      "internalType": "Key32",
         | 
| 1986 | 
            +
                      "name": "key32",
         | 
| 1987 | 
            +
                      "type": "bytes32"
         | 
| 1988 | 
            +
                    }
         | 
| 1989 | 
            +
                  ],
         | 
| 1990 | 
            +
                  "name": "getState",
         | 
| 1991 | 
            +
                  "outputs": [
         | 
| 2301 1992 | 
             
                    {
         | 
| 2302 1993 | 
             
                      "internalType": "StateId",
         | 
| 2303 | 
            -
                      "name": " | 
| 1994 | 
            +
                      "name": "state",
         | 
| 2304 1995 | 
             
                      "type": "uint8"
         | 
| 2305 1996 | 
             
                    }
         | 
| 2306 1997 | 
             
                  ],
         | 
| 2307 | 
            -
                  " | 
| 2308 | 
            -
                  "outputs": [],
         | 
| 2309 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1998 | 
            +
                  "stateMutability": "view",
         | 
| 2310 1999 | 
             
                  "type": "function"
         | 
| 2311 2000 | 
             
                },
         | 
| 2312 2001 | 
             
                {
         | 
| 2313 2002 | 
             
                  "inputs": [
         | 
| 2314 2003 | 
             
                    {
         | 
| 2315 | 
            -
                      "internalType": " | 
| 2316 | 
            -
                      "name": " | 
| 2317 | 
            -
                      "type": "uint96"
         | 
| 2318 | 
            -
                    },
         | 
| 2319 | 
            -
                    {
         | 
| 2320 | 
            -
                      "components": [
         | 
| 2321 | 
            -
                        {
         | 
| 2322 | 
            -
                          "internalType": "string",
         | 
| 2323 | 
            -
                          "name": "name",
         | 
| 2324 | 
            -
                          "type": "string"
         | 
| 2325 | 
            -
                        },
         | 
| 2326 | 
            -
                        {
         | 
| 2327 | 
            -
                          "internalType": "contract IERC20Metadata",
         | 
| 2328 | 
            -
                          "name": "token",
         | 
| 2329 | 
            -
                          "type": "address"
         | 
| 2330 | 
            -
                        },
         | 
| 2331 | 
            -
                        {
         | 
| 2332 | 
            -
                          "internalType": "contract TokenHandler",
         | 
| 2333 | 
            -
                          "name": "tokenHandler",
         | 
| 2334 | 
            -
                          "type": "address"
         | 
| 2335 | 
            -
                        },
         | 
| 2336 | 
            -
                        {
         | 
| 2337 | 
            -
                          "internalType": "address",
         | 
| 2338 | 
            -
                          "name": "wallet",
         | 
| 2339 | 
            -
                          "type": "address"
         | 
| 2340 | 
            -
                        },
         | 
| 2341 | 
            -
                        {
         | 
| 2342 | 
            -
                          "internalType": "bytes",
         | 
| 2343 | 
            -
                          "name": "data",
         | 
| 2344 | 
            -
                          "type": "bytes"
         | 
| 2345 | 
            -
                        }
         | 
| 2346 | 
            -
                      ],
         | 
| 2347 | 
            -
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 2348 | 
            -
                      "name": "componentInfo",
         | 
| 2349 | 
            -
                      "type": "tuple"
         | 
| 2350 | 
            -
                    },
         | 
| 2351 | 
            -
                    {
         | 
| 2352 | 
            -
                      "internalType": "StateId",
         | 
| 2353 | 
            -
                      "name": "newState",
         | 
| 2004 | 
            +
                      "internalType": "ObjectType",
         | 
| 2005 | 
            +
                      "name": "objectType",
         | 
| 2354 2006 | 
             
                      "type": "uint8"
         | 
| 2355 2007 | 
             
                    }
         | 
| 2356 2008 | 
             
                  ],
         | 
| 2357 | 
            -
                  "name": " | 
| 2358 | 
            -
                  "outputs": [ | 
| 2359 | 
            -
             | 
| 2009 | 
            +
                  "name": "hasLifecycle",
         | 
| 2010 | 
            +
                  "outputs": [
         | 
| 2011 | 
            +
                    {
         | 
| 2012 | 
            +
                      "internalType": "bool",
         | 
| 2013 | 
            +
                      "name": "",
         | 
| 2014 | 
            +
                      "type": "bool"
         | 
| 2015 | 
            +
                    }
         | 
| 2016 | 
            +
                  ],
         | 
| 2017 | 
            +
                  "stateMutability": "view",
         | 
| 2360 2018 | 
             
                  "type": "function"
         | 
| 2361 2019 | 
             
                },
         | 
| 2362 2020 | 
             
                {
         | 
| 2363 2021 | 
             
                  "inputs": [
         | 
| 2364 2022 | 
             
                    {
         | 
| 2365 2023 | 
             
                      "internalType": "NftId",
         | 
| 2366 | 
            -
                      "name": " | 
| 2024 | 
            +
                      "name": "targetNftId",
         | 
| 2367 2025 | 
             
                      "type": "uint96"
         | 
| 2368 2026 | 
             
                    },
         | 
| 2369 2027 | 
             
                    {
         | 
| 2370 | 
            -
                      " | 
| 2371 | 
            -
             | 
| 2372 | 
            -
             | 
| 2373 | 
            -
             | 
| 2374 | 
            -
             | 
| 2375 | 
            -
             | 
| 2376 | 
            -
             | 
| 2377 | 
            -
                          "internalType": "bool",
         | 
| 2378 | 
            -
                          "name": "active",
         | 
| 2379 | 
            -
                          "type": "bool"
         | 
| 2380 | 
            -
                        },
         | 
| 2381 | 
            -
                        {
         | 
| 2382 | 
            -
                          "internalType": "bytes",
         | 
| 2383 | 
            -
                          "name": "data",
         | 
| 2384 | 
            -
                          "type": "bytes"
         | 
| 2385 | 
            -
                        },
         | 
| 2386 | 
            -
                        {
         | 
| 2387 | 
            -
                          "internalType": "uint32",
         | 
| 2388 | 
            -
                          "name": "numPoliciesSold",
         | 
| 2389 | 
            -
                          "type": "uint32"
         | 
| 2390 | 
            -
                        }
         | 
| 2391 | 
            -
                      ],
         | 
| 2392 | 
            -
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 2393 | 
            -
                      "name": "info",
         | 
| 2394 | 
            -
                      "type": "tuple"
         | 
| 2395 | 
            -
                    },
         | 
| 2028 | 
            +
                      "internalType": "Amount",
         | 
| 2029 | 
            +
                      "name": "amount",
         | 
| 2030 | 
            +
                      "type": "uint96"
         | 
| 2031 | 
            +
                    }
         | 
| 2032 | 
            +
                  ],
         | 
| 2033 | 
            +
                  "name": "increaseBalance",
         | 
| 2034 | 
            +
                  "outputs": [
         | 
| 2396 2035 | 
             
                    {
         | 
| 2397 | 
            -
                      "internalType": " | 
| 2398 | 
            -
                      "name": " | 
| 2399 | 
            -
                      "type": " | 
| 2036 | 
            +
                      "internalType": "Amount",
         | 
| 2037 | 
            +
                      "name": "newBalance",
         | 
| 2038 | 
            +
                      "type": "uint96"
         | 
| 2400 2039 | 
             
                    }
         | 
| 2401 2040 | 
             
                  ],
         | 
| 2402 | 
            -
                  "name": "updateDistributor",
         | 
| 2403 | 
            -
                  "outputs": [],
         | 
| 2404 2041 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2405 2042 | 
             
                  "type": "function"
         | 
| 2406 2043 | 
             
                },
         | 
| @@ -2408,159 +2045,108 @@ | |
| 2408 2045 | 
             
                  "inputs": [
         | 
| 2409 2046 | 
             
                    {
         | 
| 2410 2047 | 
             
                      "internalType": "NftId",
         | 
| 2411 | 
            -
                      "name": " | 
| 2048 | 
            +
                      "name": "targetNftId",
         | 
| 2412 2049 | 
             
                      "type": "uint96"
         | 
| 2413 2050 | 
             
                    },
         | 
| 2414 2051 | 
             
                    {
         | 
| 2415 | 
            -
                      "internalType": " | 
| 2416 | 
            -
                      "name": " | 
| 2417 | 
            -
                      "type": " | 
| 2052 | 
            +
                      "internalType": "Amount",
         | 
| 2053 | 
            +
                      "name": "amount",
         | 
| 2054 | 
            +
                      "type": "uint96"
         | 
| 2055 | 
            +
                    }
         | 
| 2056 | 
            +
                  ],
         | 
| 2057 | 
            +
                  "name": "increaseFees",
         | 
| 2058 | 
            +
                  "outputs": [
         | 
| 2059 | 
            +
                    {
         | 
| 2060 | 
            +
                      "internalType": "Amount",
         | 
| 2061 | 
            +
                      "name": "newFeeBalance",
         | 
| 2062 | 
            +
                      "type": "uint96"
         | 
| 2418 2063 | 
             
                    }
         | 
| 2419 2064 | 
             
                  ],
         | 
| 2420 | 
            -
                  "name": "updateDistributorState",
         | 
| 2421 | 
            -
                  "outputs": [],
         | 
| 2422 2065 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2423 2066 | 
             
                  "type": "function"
         | 
| 2424 2067 | 
             
                },
         | 
| 2425 2068 | 
             
                {
         | 
| 2426 2069 | 
             
                  "inputs": [
         | 
| 2427 2070 | 
             
                    {
         | 
| 2428 | 
            -
                      "internalType": " | 
| 2429 | 
            -
                      "name": " | 
| 2430 | 
            -
                      "type": " | 
| 2071 | 
            +
                      "internalType": "NftId",
         | 
| 2072 | 
            +
                      "name": "targetNftId",
         | 
| 2073 | 
            +
                      "type": "uint96"
         | 
| 2431 2074 | 
             
                    },
         | 
| 2432 2075 | 
             
                    {
         | 
| 2433 | 
            -
                      " | 
| 2434 | 
            -
             | 
| 2435 | 
            -
             | 
| 2436 | 
            -
             | 
| 2437 | 
            -
             | 
| 2438 | 
            -
             | 
| 2439 | 
            -
             | 
| 2440 | 
            -
                          "internalType": "UFixed",
         | 
| 2441 | 
            -
                          "name": "minDiscountPercentage",
         | 
| 2442 | 
            -
                          "type": "uint256"
         | 
| 2443 | 
            -
                        },
         | 
| 2444 | 
            -
                        {
         | 
| 2445 | 
            -
                          "internalType": "UFixed",
         | 
| 2446 | 
            -
                          "name": "maxDiscountPercentage",
         | 
| 2447 | 
            -
                          "type": "uint256"
         | 
| 2448 | 
            -
                        },
         | 
| 2449 | 
            -
                        {
         | 
| 2450 | 
            -
                          "internalType": "UFixed",
         | 
| 2451 | 
            -
                          "name": "commissionPercentage",
         | 
| 2452 | 
            -
                          "type": "uint256"
         | 
| 2453 | 
            -
                        },
         | 
| 2454 | 
            -
                        {
         | 
| 2455 | 
            -
                          "internalType": "uint32",
         | 
| 2456 | 
            -
                          "name": "maxReferralCount",
         | 
| 2457 | 
            -
                          "type": "uint32"
         | 
| 2458 | 
            -
                        },
         | 
| 2459 | 
            -
                        {
         | 
| 2460 | 
            -
                          "internalType": "uint32",
         | 
| 2461 | 
            -
                          "name": "maxReferralLifetime",
         | 
| 2462 | 
            -
                          "type": "uint32"
         | 
| 2463 | 
            -
                        },
         | 
| 2464 | 
            -
                        {
         | 
| 2465 | 
            -
                          "internalType": "bool",
         | 
| 2466 | 
            -
                          "name": "allowSelfReferrals",
         | 
| 2467 | 
            -
                          "type": "bool"
         | 
| 2468 | 
            -
                        },
         | 
| 2469 | 
            -
                        {
         | 
| 2470 | 
            -
                          "internalType": "bool",
         | 
| 2471 | 
            -
                          "name": "allowRenewals",
         | 
| 2472 | 
            -
                          "type": "bool"
         | 
| 2473 | 
            -
                        },
         | 
| 2474 | 
            -
                        {
         | 
| 2475 | 
            -
                          "internalType": "bytes",
         | 
| 2476 | 
            -
                          "name": "data",
         | 
| 2477 | 
            -
                          "type": "bytes"
         | 
| 2478 | 
            -
                        }
         | 
| 2479 | 
            -
                      ],
         | 
| 2480 | 
            -
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 2481 | 
            -
                      "name": "info",
         | 
| 2482 | 
            -
                      "type": "tuple"
         | 
| 2483 | 
            -
                    },
         | 
| 2076 | 
            +
                      "internalType": "Amount",
         | 
| 2077 | 
            +
                      "name": "amount",
         | 
| 2078 | 
            +
                      "type": "uint96"
         | 
| 2079 | 
            +
                    }
         | 
| 2080 | 
            +
                  ],
         | 
| 2081 | 
            +
                  "name": "increaseLocked",
         | 
| 2082 | 
            +
                  "outputs": [
         | 
| 2484 2083 | 
             
                    {
         | 
| 2485 | 
            -
                      "internalType": " | 
| 2486 | 
            -
                      "name": " | 
| 2487 | 
            -
                      "type": " | 
| 2084 | 
            +
                      "internalType": "Amount",
         | 
| 2085 | 
            +
                      "name": "newBalance",
         | 
| 2086 | 
            +
                      "type": "uint96"
         | 
| 2488 2087 | 
             
                    }
         | 
| 2489 2088 | 
             
                  ],
         | 
| 2490 | 
            -
                  " | 
| 2089 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2090 | 
            +
                  "type": "function"
         | 
| 2091 | 
            +
                },
         | 
| 2092 | 
            +
                {
         | 
| 2093 | 
            +
                  "inputs": [],
         | 
| 2094 | 
            +
                  "name": "initialize",
         | 
| 2491 2095 | 
             
                  "outputs": [],
         | 
| 2492 2096 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2493 2097 | 
             
                  "type": "function"
         | 
| 2494 2098 | 
             
                },
         | 
| 2495 2099 | 
             
                {
         | 
| 2496 | 
            -
                  "inputs": [
         | 
| 2497 | 
            -
             | 
| 2498 | 
            -
             | 
| 2499 | 
            -
                      "name": "distributorType",
         | 
| 2500 | 
            -
                      "type": "bytes8"
         | 
| 2501 | 
            -
                    },
         | 
| 2100 | 
            +
                  "inputs": [],
         | 
| 2101 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 2102 | 
            +
                  "outputs": [
         | 
| 2502 2103 | 
             
                    {
         | 
| 2503 | 
            -
                      "internalType": " | 
| 2504 | 
            -
                      "name": " | 
| 2505 | 
            -
                      "type": " | 
| 2104 | 
            +
                      "internalType": "bytes4",
         | 
| 2105 | 
            +
                      "name": "",
         | 
| 2106 | 
            +
                      "type": "bytes4"
         | 
| 2506 2107 | 
             
                    }
         | 
| 2507 2108 | 
             
                  ],
         | 
| 2508 | 
            -
                  " | 
| 2509 | 
            -
                  "outputs": [],
         | 
| 2510 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 2109 | 
            +
                  "stateMutability": "view",
         | 
| 2511 2110 | 
             
                  "type": "function"
         | 
| 2512 2111 | 
             
                },
         | 
| 2513 2112 | 
             
                {
         | 
| 2514 2113 | 
             
                  "inputs": [
         | 
| 2515 2114 | 
             
                    {
         | 
| 2516 | 
            -
                      "internalType": " | 
| 2517 | 
            -
                      "name": " | 
| 2518 | 
            -
                      "type": " | 
| 2519 | 
            -
                    },
         | 
| 2520 | 
            -
                    {
         | 
| 2521 | 
            -
                      "internalType": "PayoutId",
         | 
| 2522 | 
            -
                      "name": "payoutId",
         | 
| 2523 | 
            -
                      "type": "uint40"
         | 
| 2115 | 
            +
                      "internalType": "ObjectType",
         | 
| 2116 | 
            +
                      "name": "objectType",
         | 
| 2117 | 
            +
                      "type": "uint8"
         | 
| 2524 2118 | 
             
                    },
         | 
| 2525 2119 | 
             
                    {
         | 
| 2526 | 
            -
                      " | 
| 2527 | 
            -
             | 
| 2528 | 
            -
             | 
| 2529 | 
            -
                          "name": "claimId",
         | 
| 2530 | 
            -
                          "type": "uint16"
         | 
| 2531 | 
            -
                        },
         | 
| 2532 | 
            -
                        {
         | 
| 2533 | 
            -
                          "internalType": "Amount",
         | 
| 2534 | 
            -
                          "name": "amount",
         | 
| 2535 | 
            -
                          "type": "uint96"
         | 
| 2536 | 
            -
                        },
         | 
| 2537 | 
            -
                        {
         | 
| 2538 | 
            -
                          "internalType": "address",
         | 
| 2539 | 
            -
                          "name": "beneficiary",
         | 
| 2540 | 
            -
                          "type": "address"
         | 
| 2541 | 
            -
                        },
         | 
| 2542 | 
            -
                        {
         | 
| 2543 | 
            -
                          "internalType": "bytes",
         | 
| 2544 | 
            -
                          "name": "data",
         | 
| 2545 | 
            -
                          "type": "bytes"
         | 
| 2546 | 
            -
                        },
         | 
| 2547 | 
            -
                        {
         | 
| 2548 | 
            -
                          "internalType": "Timestamp",
         | 
| 2549 | 
            -
                          "name": "paidAt",
         | 
| 2550 | 
            -
                          "type": "uint40"
         | 
| 2551 | 
            -
                        }
         | 
| 2552 | 
            -
                      ],
         | 
| 2553 | 
            -
                      "internalType": "struct IPolicy.PayoutInfo",
         | 
| 2554 | 
            -
                      "name": "payout",
         | 
| 2555 | 
            -
                      "type": "tuple"
         | 
| 2120 | 
            +
                      "internalType": "StateId",
         | 
| 2121 | 
            +
                      "name": "fromId",
         | 
| 2122 | 
            +
                      "type": "uint8"
         | 
| 2556 2123 | 
             
                    },
         | 
| 2557 2124 | 
             
                    {
         | 
| 2558 2125 | 
             
                      "internalType": "StateId",
         | 
| 2559 | 
            -
                      "name": " | 
| 2126 | 
            +
                      "name": "toId",
         | 
| 2560 2127 | 
             
                      "type": "uint8"
         | 
| 2561 2128 | 
             
                    }
         | 
| 2562 2129 | 
             
                  ],
         | 
| 2563 | 
            -
                  "name": " | 
| 2130 | 
            +
                  "name": "isValidTransition",
         | 
| 2131 | 
            +
                  "outputs": [
         | 
| 2132 | 
            +
                    {
         | 
| 2133 | 
            +
                      "internalType": "bool",
         | 
| 2134 | 
            +
                      "name": "",
         | 
| 2135 | 
            +
                      "type": "bool"
         | 
| 2136 | 
            +
                    }
         | 
| 2137 | 
            +
                  ],
         | 
| 2138 | 
            +
                  "stateMutability": "view",
         | 
| 2139 | 
            +
                  "type": "function"
         | 
| 2140 | 
            +
                },
         | 
| 2141 | 
            +
                {
         | 
| 2142 | 
            +
                  "inputs": [
         | 
| 2143 | 
            +
                    {
         | 
| 2144 | 
            +
                      "internalType": "address",
         | 
| 2145 | 
            +
                      "name": "newAuthority",
         | 
| 2146 | 
            +
                      "type": "address"
         | 
| 2147 | 
            +
                    }
         | 
| 2148 | 
            +
                  ],
         | 
| 2149 | 
            +
                  "name": "setAuthority",
         | 
| 2564 2150 | 
             
                  "outputs": [],
         | 
| 2565 2151 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2566 2152 | 
             
                  "type": "function"
         | 
| @@ -2568,118 +2154,81 @@ | |
| 2568 2154 | 
             
                {
         | 
| 2569 2155 | 
             
                  "inputs": [
         | 
| 2570 2156 | 
             
                    {
         | 
| 2571 | 
            -
                      "internalType": " | 
| 2572 | 
            -
                      "name": " | 
| 2573 | 
            -
                      "type": " | 
| 2157 | 
            +
                      "internalType": "ObjectType",
         | 
| 2158 | 
            +
                      "name": "objectType",
         | 
| 2159 | 
            +
                      "type": "uint8"
         | 
| 2574 2160 | 
             
                    },
         | 
| 2575 2161 | 
             
                    {
         | 
| 2576 | 
            -
                      "internalType": " | 
| 2577 | 
            -
                      "name": " | 
| 2578 | 
            -
                      "type": " | 
| 2579 | 
            -
                    } | 
| 2162 | 
            +
                      "internalType": "KeyId",
         | 
| 2163 | 
            +
                      "name": "id",
         | 
| 2164 | 
            +
                      "type": "bytes31"
         | 
| 2165 | 
            +
                    }
         | 
| 2166 | 
            +
                  ],
         | 
| 2167 | 
            +
                  "name": "toKey32",
         | 
| 2168 | 
            +
                  "outputs": [
         | 
| 2580 2169 | 
             
                    {
         | 
| 2581 | 
            -
                      "internalType": " | 
| 2582 | 
            -
                      "name": " | 
| 2583 | 
            -
                      "type": " | 
| 2170 | 
            +
                      "internalType": "Key32",
         | 
| 2171 | 
            +
                      "name": "",
         | 
| 2172 | 
            +
                      "type": "bytes32"
         | 
| 2584 2173 | 
             
                    }
         | 
| 2585 2174 | 
             
                  ],
         | 
| 2586 | 
            -
                  " | 
| 2587 | 
            -
                  "outputs": [],
         | 
| 2588 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 2175 | 
            +
                  "stateMutability": "pure",
         | 
| 2589 2176 | 
             
                  "type": "function"
         | 
| 2590 2177 | 
             
                },
         | 
| 2591 2178 | 
             
                {
         | 
| 2592 2179 | 
             
                  "inputs": [
         | 
| 2593 2180 | 
             
                    {
         | 
| 2594 2181 | 
             
                      "internalType": "NftId",
         | 
| 2595 | 
            -
                      "name": " | 
| 2182 | 
            +
                      "name": "bundleNftId",
         | 
| 2596 2183 | 
             
                      "type": "uint96"
         | 
| 2597 2184 | 
             
                    },
         | 
| 2598 2185 | 
             
                    {
         | 
| 2599 2186 | 
             
                      "components": [
         | 
| 2600 2187 | 
             
                        {
         | 
| 2601 | 
            -
                          "internalType": " | 
| 2602 | 
            -
                          "name": " | 
| 2603 | 
            -
                          "type": "uint96"
         | 
| 2604 | 
            -
                        },
         | 
| 2605 | 
            -
                        {
         | 
| 2606 | 
            -
                          "internalType": "NftId",
         | 
| 2607 | 
            -
                          "name": "bundleNftId",
         | 
| 2608 | 
            -
                          "type": "uint96"
         | 
| 2609 | 
            -
                        },
         | 
| 2610 | 
            -
                        {
         | 
| 2611 | 
            -
                          "internalType": "ReferralId",
         | 
| 2612 | 
            -
                          "name": "referralId",
         | 
| 2613 | 
            -
                          "type": "bytes8"
         | 
| 2614 | 
            -
                        },
         | 
| 2615 | 
            -
                        {
         | 
| 2616 | 
            -
                          "internalType": "RiskId",
         | 
| 2617 | 
            -
                          "name": "riskId",
         | 
| 2618 | 
            -
                          "type": "bytes8"
         | 
| 2619 | 
            -
                        },
         | 
| 2620 | 
            -
                        {
         | 
| 2621 | 
            -
                          "internalType": "Amount",
         | 
| 2622 | 
            -
                          "name": "sumInsuredAmount",
         | 
| 2623 | 
            -
                          "type": "uint96"
         | 
| 2624 | 
            -
                        },
         | 
| 2625 | 
            -
                        {
         | 
| 2626 | 
            -
                          "internalType": "Amount",
         | 
| 2627 | 
            -
                          "name": "premiumAmount",
         | 
| 2628 | 
            -
                          "type": "uint96"
         | 
| 2629 | 
            -
                        },
         | 
| 2630 | 
            -
                        {
         | 
| 2631 | 
            -
                          "internalType": "Seconds",
         | 
| 2632 | 
            -
                          "name": "lifetime",
         | 
| 2188 | 
            +
                          "internalType": "Timestamp",
         | 
| 2189 | 
            +
                          "name": "activatedAt",
         | 
| 2633 2190 | 
             
                          "type": "uint40"
         | 
| 2634 2191 | 
             
                        },
         | 
| 2635 2192 | 
             
                        {
         | 
| 2636 | 
            -
                          "internalType": " | 
| 2637 | 
            -
                          "name": " | 
| 2638 | 
            -
                          "type": " | 
| 2639 | 
            -
                        },
         | 
| 2640 | 
            -
                        {
         | 
| 2641 | 
            -
                          "internalType": "bytes",
         | 
| 2642 | 
            -
                          "name": "processData",
         | 
| 2643 | 
            -
                          "type": "bytes"
         | 
| 2644 | 
            -
                        },
         | 
| 2645 | 
            -
                        {
         | 
| 2646 | 
            -
                          "internalType": "uint16",
         | 
| 2647 | 
            -
                          "name": "claimsCount",
         | 
| 2648 | 
            -
                          "type": "uint16"
         | 
| 2649 | 
            -
                        },
         | 
| 2650 | 
            -
                        {
         | 
| 2651 | 
            -
                          "internalType": "uint16",
         | 
| 2652 | 
            -
                          "name": "openClaimsCount",
         | 
| 2653 | 
            -
                          "type": "uint16"
         | 
| 2193 | 
            +
                          "internalType": "Timestamp",
         | 
| 2194 | 
            +
                          "name": "expiredAt",
         | 
| 2195 | 
            +
                          "type": "uint40"
         | 
| 2654 2196 | 
             
                        },
         | 
| 2655 2197 | 
             
                        {
         | 
| 2656 | 
            -
                          "internalType": " | 
| 2657 | 
            -
                          "name": " | 
| 2658 | 
            -
                          "type": " | 
| 2198 | 
            +
                          "internalType": "Timestamp",
         | 
| 2199 | 
            +
                          "name": "closedAt",
         | 
| 2200 | 
            +
                          "type": "uint40"
         | 
| 2659 2201 | 
             
                        },
         | 
| 2660 2202 | 
             
                        {
         | 
| 2661 | 
            -
                          "internalType": " | 
| 2662 | 
            -
                          "name": " | 
| 2203 | 
            +
                          "internalType": "NftId",
         | 
| 2204 | 
            +
                          "name": "poolNftId",
         | 
| 2663 2205 | 
             
                          "type": "uint96"
         | 
| 2664 2206 | 
             
                        },
         | 
| 2665 2207 | 
             
                        {
         | 
| 2666 | 
            -
                          " | 
| 2667 | 
            -
             | 
| 2668 | 
            -
             | 
| 2669 | 
            -
             | 
| 2670 | 
            -
             | 
| 2671 | 
            -
             | 
| 2672 | 
            -
             | 
| 2673 | 
            -
             | 
| 2208 | 
            +
                          "components": [
         | 
| 2209 | 
            +
                            {
         | 
| 2210 | 
            +
                              "internalType": "UFixed",
         | 
| 2211 | 
            +
                              "name": "fractionalFee",
         | 
| 2212 | 
            +
                              "type": "uint160"
         | 
| 2213 | 
            +
                            },
         | 
| 2214 | 
            +
                            {
         | 
| 2215 | 
            +
                              "internalType": "Amount",
         | 
| 2216 | 
            +
                              "name": "fixedFee",
         | 
| 2217 | 
            +
                              "type": "uint96"
         | 
| 2218 | 
            +
                            }
         | 
| 2219 | 
            +
                          ],
         | 
| 2220 | 
            +
                          "internalType": "struct Fee",
         | 
| 2221 | 
            +
                          "name": "fee",
         | 
| 2222 | 
            +
                          "type": "tuple"
         | 
| 2674 2223 | 
             
                        },
         | 
| 2675 2224 | 
             
                        {
         | 
| 2676 | 
            -
                          "internalType": " | 
| 2677 | 
            -
                          "name": " | 
| 2678 | 
            -
                          "type": " | 
| 2225 | 
            +
                          "internalType": "bytes",
         | 
| 2226 | 
            +
                          "name": "filter",
         | 
| 2227 | 
            +
                          "type": "bytes"
         | 
| 2679 2228 | 
             
                        }
         | 
| 2680 2229 | 
             
                      ],
         | 
| 2681 | 
            -
                      "internalType": "struct  | 
| 2682 | 
            -
                      "name": " | 
| 2230 | 
            +
                      "internalType": "struct IBundle.BundleInfo",
         | 
| 2231 | 
            +
                      "name": "bundle",
         | 
| 2683 2232 | 
             
                      "type": "tuple"
         | 
| 2684 2233 | 
             
                    },
         | 
| 2685 2234 | 
             
                    {
         | 
| @@ -2688,7 +2237,25 @@ | |
| 2688 2237 | 
             
                      "type": "uint8"
         | 
| 2689 2238 | 
             
                    }
         | 
| 2690 2239 | 
             
                  ],
         | 
| 2691 | 
            -
                  "name": " | 
| 2240 | 
            +
                  "name": "updateBundle",
         | 
| 2241 | 
            +
                  "outputs": [],
         | 
| 2242 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2243 | 
            +
                  "type": "function"
         | 
| 2244 | 
            +
                },
         | 
| 2245 | 
            +
                {
         | 
| 2246 | 
            +
                  "inputs": [
         | 
| 2247 | 
            +
                    {
         | 
| 2248 | 
            +
                      "internalType": "NftId",
         | 
| 2249 | 
            +
                      "name": "bundleNftId",
         | 
| 2250 | 
            +
                      "type": "uint96"
         | 
| 2251 | 
            +
                    },
         | 
| 2252 | 
            +
                    {
         | 
| 2253 | 
            +
                      "internalType": "StateId",
         | 
| 2254 | 
            +
                      "name": "newState",
         | 
| 2255 | 
            +
                      "type": "uint8"
         | 
| 2256 | 
            +
                    }
         | 
| 2257 | 
            +
                  ],
         | 
| 2258 | 
            +
                  "name": "updateBundleState",
         | 
| 2692 2259 | 
             
                  "outputs": [],
         | 
| 2693 2260 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2694 2261 | 
             
                  "type": "function"
         | 
| @@ -2697,94 +2264,69 @@ | |
| 2697 2264 | 
             
                  "inputs": [
         | 
| 2698 2265 | 
             
                    {
         | 
| 2699 2266 | 
             
                      "internalType": "NftId",
         | 
| 2700 | 
            -
                      "name": " | 
| 2267 | 
            +
                      "name": "componentNftId",
         | 
| 2701 2268 | 
             
                      "type": "uint96"
         | 
| 2702 2269 | 
             
                    },
         | 
| 2703 2270 | 
             
                    {
         | 
| 2704 2271 | 
             
                      "components": [
         | 
| 2705 2272 | 
             
                        {
         | 
| 2706 | 
            -
                          "internalType": " | 
| 2707 | 
            -
                          "name": " | 
| 2708 | 
            -
                          "type": " | 
| 2709 | 
            -
                        },
         | 
| 2710 | 
            -
                        {
         | 
| 2711 | 
            -
                          "internalType": "NftId",
         | 
| 2712 | 
            -
                          "name": "bundleNftId",
         | 
| 2713 | 
            -
                          "type": "uint96"
         | 
| 2273 | 
            +
                          "internalType": "string",
         | 
| 2274 | 
            +
                          "name": "name",
         | 
| 2275 | 
            +
                          "type": "string"
         | 
| 2714 2276 | 
             
                        },
         | 
| 2715 2277 | 
             
                        {
         | 
| 2716 | 
            -
                          "internalType": " | 
| 2717 | 
            -
                          "name": " | 
| 2718 | 
            -
                          "type": " | 
| 2719 | 
            -
                        } | 
| 2278 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 2279 | 
            +
                          "name": "tokenHandler",
         | 
| 2280 | 
            +
                          "type": "address"
         | 
| 2281 | 
            +
                        }
         | 
| 2282 | 
            +
                      ],
         | 
| 2283 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 2284 | 
            +
                      "name": "componentInfo",
         | 
| 2285 | 
            +
                      "type": "tuple"
         | 
| 2286 | 
            +
                    },
         | 
| 2287 | 
            +
                    {
         | 
| 2288 | 
            +
                      "internalType": "StateId",
         | 
| 2289 | 
            +
                      "name": "newState",
         | 
| 2290 | 
            +
                      "type": "uint8"
         | 
| 2291 | 
            +
                    }
         | 
| 2292 | 
            +
                  ],
         | 
| 2293 | 
            +
                  "name": "updateComponent",
         | 
| 2294 | 
            +
                  "outputs": [],
         | 
| 2295 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2296 | 
            +
                  "type": "function"
         | 
| 2297 | 
            +
                },
         | 
| 2298 | 
            +
                {
         | 
| 2299 | 
            +
                  "inputs": [
         | 
| 2300 | 
            +
                    {
         | 
| 2301 | 
            +
                      "internalType": "NftId",
         | 
| 2302 | 
            +
                      "name": "distributorNftId",
         | 
| 2303 | 
            +
                      "type": "uint96"
         | 
| 2304 | 
            +
                    },
         | 
| 2305 | 
            +
                    {
         | 
| 2306 | 
            +
                      "components": [
         | 
| 2720 2307 | 
             
                        {
         | 
| 2721 | 
            -
                          "internalType": " | 
| 2722 | 
            -
                          "name": " | 
| 2308 | 
            +
                          "internalType": "DistributorType",
         | 
| 2309 | 
            +
                          "name": "distributorType",
         | 
| 2723 2310 | 
             
                          "type": "bytes8"
         | 
| 2724 2311 | 
             
                        },
         | 
| 2725 2312 | 
             
                        {
         | 
| 2726 | 
            -
                          "internalType": " | 
| 2727 | 
            -
                          "name": " | 
| 2728 | 
            -
                          "type": " | 
| 2729 | 
            -
                        },
         | 
| 2730 | 
            -
                        {
         | 
| 2731 | 
            -
                          "internalType": "Amount",
         | 
| 2732 | 
            -
                          "name": "premiumAmount",
         | 
| 2733 | 
            -
                          "type": "uint96"
         | 
| 2734 | 
            -
                        },
         | 
| 2735 | 
            -
                        {
         | 
| 2736 | 
            -
                          "internalType": "Seconds",
         | 
| 2737 | 
            -
                          "name": "lifetime",
         | 
| 2738 | 
            -
                          "type": "uint40"
         | 
| 2313 | 
            +
                          "internalType": "bool",
         | 
| 2314 | 
            +
                          "name": "active",
         | 
| 2315 | 
            +
                          "type": "bool"
         | 
| 2739 2316 | 
             
                        },
         | 
| 2740 2317 | 
             
                        {
         | 
| 2741 | 
            -
                          "internalType": " | 
| 2742 | 
            -
                          "name": " | 
| 2743 | 
            -
                          "type": " | 
| 2318 | 
            +
                          "internalType": "uint32",
         | 
| 2319 | 
            +
                          "name": "numPoliciesSold",
         | 
| 2320 | 
            +
                          "type": "uint32"
         | 
| 2744 2321 | 
             
                        },
         | 
| 2745 2322 | 
             
                        {
         | 
| 2746 2323 | 
             
                          "internalType": "bytes",
         | 
| 2747 | 
            -
                          "name": " | 
| 2324 | 
            +
                          "name": "data",
         | 
| 2748 2325 | 
             
                          "type": "bytes"
         | 
| 2749 | 
            -
                        },
         | 
| 2750 | 
            -
                        {
         | 
| 2751 | 
            -
                          "internalType": "uint16",
         | 
| 2752 | 
            -
                          "name": "claimsCount",
         | 
| 2753 | 
            -
                          "type": "uint16"
         | 
| 2754 | 
            -
                        },
         | 
| 2755 | 
            -
                        {
         | 
| 2756 | 
            -
                          "internalType": "uint16",
         | 
| 2757 | 
            -
                          "name": "openClaimsCount",
         | 
| 2758 | 
            -
                          "type": "uint16"
         | 
| 2759 | 
            -
                        },
         | 
| 2760 | 
            -
                        {
         | 
| 2761 | 
            -
                          "internalType": "Amount",
         | 
| 2762 | 
            -
                          "name": "claimAmount",
         | 
| 2763 | 
            -
                          "type": "uint96"
         | 
| 2764 | 
            -
                        },
         | 
| 2765 | 
            -
                        {
         | 
| 2766 | 
            -
                          "internalType": "Amount",
         | 
| 2767 | 
            -
                          "name": "payoutAmount",
         | 
| 2768 | 
            -
                          "type": "uint96"
         | 
| 2769 | 
            -
                        },
         | 
| 2770 | 
            -
                        {
         | 
| 2771 | 
            -
                          "internalType": "Timestamp",
         | 
| 2772 | 
            -
                          "name": "activatedAt",
         | 
| 2773 | 
            -
                          "type": "uint40"
         | 
| 2774 | 
            -
                        },
         | 
| 2775 | 
            -
                        {
         | 
| 2776 | 
            -
                          "internalType": "Timestamp",
         | 
| 2777 | 
            -
                          "name": "expiredAt",
         | 
| 2778 | 
            -
                          "type": "uint40"
         | 
| 2779 | 
            -
                        },
         | 
| 2780 | 
            -
                        {
         | 
| 2781 | 
            -
                          "internalType": "Timestamp",
         | 
| 2782 | 
            -
                          "name": "closedAt",
         | 
| 2783 | 
            -
                          "type": "uint40"
         | 
| 2784 2326 | 
             
                        }
         | 
| 2785 2327 | 
             
                      ],
         | 
| 2786 | 
            -
                      "internalType": "struct  | 
| 2787 | 
            -
                      "name": " | 
| 2328 | 
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 2329 | 
            +
                      "name": "info",
         | 
| 2788 2330 | 
             
                      "type": "tuple"
         | 
| 2789 2331 | 
             
                    },
         | 
| 2790 2332 | 
             
                    {
         | 
| @@ -2793,7 +2335,7 @@ | |
| 2793 2335 | 
             
                      "type": "uint8"
         | 
| 2794 2336 | 
             
                    }
         | 
| 2795 2337 | 
             
                  ],
         | 
| 2796 | 
            -
                  "name": " | 
| 2338 | 
            +
                  "name": "updateDistributor",
         | 
| 2797 2339 | 
             
                  "outputs": [],
         | 
| 2798 2340 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2799 2341 | 
             
                  "type": "function"
         | 
| @@ -2802,7 +2344,7 @@ | |
| 2802 2344 | 
             
                  "inputs": [
         | 
| 2803 2345 | 
             
                    {
         | 
| 2804 2346 | 
             
                      "internalType": "NftId",
         | 
| 2805 | 
            -
                      "name": " | 
| 2347 | 
            +
                      "name": "distributorNftId",
         | 
| 2806 2348 | 
             
                      "type": "uint96"
         | 
| 2807 2349 | 
             
                    },
         | 
| 2808 2350 | 
             
                    {
         | 
| @@ -2811,7 +2353,7 @@ | |
| 2811 2353 | 
             
                      "type": "uint8"
         | 
| 2812 2354 | 
             
                    }
         | 
| 2813 2355 | 
             
                  ],
         | 
| 2814 | 
            -
                  "name": " | 
| 2356 | 
            +
                  "name": "updateDistributorState",
         | 
| 2815 2357 | 
             
                  "outputs": [],
         | 
| 2816 2358 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2817 2359 | 
             
                  "type": "function"
         | 
| @@ -2819,54 +2361,64 @@ | |
| 2819 2361 | 
             
                {
         | 
| 2820 2362 | 
             
                  "inputs": [
         | 
| 2821 2363 | 
             
                    {
         | 
| 2822 | 
            -
                      "internalType": " | 
| 2823 | 
            -
                      "name": " | 
| 2824 | 
            -
                      "type": " | 
| 2364 | 
            +
                      "internalType": "DistributorType",
         | 
| 2365 | 
            +
                      "name": "distributorType",
         | 
| 2366 | 
            +
                      "type": "bytes8"
         | 
| 2825 2367 | 
             
                    },
         | 
| 2826 2368 | 
             
                    {
         | 
| 2827 2369 | 
             
                      "components": [
         | 
| 2828 2370 | 
             
                        {
         | 
| 2829 | 
            -
                          "internalType": " | 
| 2830 | 
            -
                          "name": " | 
| 2371 | 
            +
                          "internalType": "UFixed",
         | 
| 2372 | 
            +
                          "name": "minDiscountPercentage",
         | 
| 2373 | 
            +
                          "type": "uint160"
         | 
| 2374 | 
            +
                        },
         | 
| 2375 | 
            +
                        {
         | 
| 2376 | 
            +
                          "internalType": "NftId",
         | 
| 2377 | 
            +
                          "name": "distributionNftId",
         | 
| 2831 2378 | 
             
                          "type": "uint96"
         | 
| 2832 2379 | 
             
                        },
         | 
| 2833 2380 | 
             
                        {
         | 
| 2834 | 
            -
                          "internalType": " | 
| 2835 | 
            -
                          "name": " | 
| 2836 | 
            -
                          "type": " | 
| 2381 | 
            +
                          "internalType": "UFixed",
         | 
| 2382 | 
            +
                          "name": "maxDiscountPercentage",
         | 
| 2383 | 
            +
                          "type": "uint160"
         | 
| 2837 2384 | 
             
                        },
         | 
| 2838 2385 | 
             
                        {
         | 
| 2839 | 
            -
                          "internalType": " | 
| 2840 | 
            -
                          "name": " | 
| 2841 | 
            -
                          "type": " | 
| 2386 | 
            +
                          "internalType": "uint32",
         | 
| 2387 | 
            +
                          "name": "maxReferralCount",
         | 
| 2388 | 
            +
                          "type": "uint32"
         | 
| 2842 2389 | 
             
                        },
         | 
| 2843 2390 | 
             
                        {
         | 
| 2844 | 
            -
                          "internalType": " | 
| 2845 | 
            -
                          "name": " | 
| 2846 | 
            -
                          "type": " | 
| 2391 | 
            +
                          "internalType": "Seconds",
         | 
| 2392 | 
            +
                          "name": "maxReferralLifetime",
         | 
| 2393 | 
            +
                          "type": "uint40"
         | 
| 2847 2394 | 
             
                        },
         | 
| 2848 2395 | 
             
                        {
         | 
| 2849 2396 | 
             
                          "internalType": "bool",
         | 
| 2850 | 
            -
                          "name": " | 
| 2397 | 
            +
                          "name": "allowSelfReferrals",
         | 
| 2851 2398 | 
             
                          "type": "bool"
         | 
| 2852 2399 | 
             
                        },
         | 
| 2853 2400 | 
             
                        {
         | 
| 2854 2401 | 
             
                          "internalType": "bool",
         | 
| 2855 | 
            -
                          "name": " | 
| 2402 | 
            +
                          "name": "allowRenewals",
         | 
| 2856 2403 | 
             
                          "type": "bool"
         | 
| 2857 2404 | 
             
                        },
         | 
| 2858 2405 | 
             
                        {
         | 
| 2859 2406 | 
             
                          "internalType": "UFixed",
         | 
| 2860 | 
            -
                          "name": " | 
| 2861 | 
            -
                          "type": " | 
| 2407 | 
            +
                          "name": "commissionPercentage",
         | 
| 2408 | 
            +
                          "type": "uint160"
         | 
| 2862 2409 | 
             
                        },
         | 
| 2863 2410 | 
             
                        {
         | 
| 2864 | 
            -
                          "internalType": " | 
| 2865 | 
            -
                          "name": " | 
| 2866 | 
            -
                          "type": " | 
| 2411 | 
            +
                          "internalType": "string",
         | 
| 2412 | 
            +
                          "name": "name",
         | 
| 2413 | 
            +
                          "type": "string"
         | 
| 2414 | 
            +
                        },
         | 
| 2415 | 
            +
                        {
         | 
| 2416 | 
            +
                          "internalType": "bytes",
         | 
| 2417 | 
            +
                          "name": "data",
         | 
| 2418 | 
            +
                          "type": "bytes"
         | 
| 2867 2419 | 
             
                        }
         | 
| 2868 2420 | 
             
                      ],
         | 
| 2869 | 
            -
                      "internalType": "struct  | 
| 2421 | 
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 2870 2422 | 
             
                      "name": "info",
         | 
| 2871 2423 | 
             
                      "type": "tuple"
         | 
| 2872 2424 | 
             
                    },
         | 
| @@ -2876,7 +2428,7 @@ | |
| 2876 2428 | 
             
                      "type": "uint8"
         | 
| 2877 2429 | 
             
                    }
         | 
| 2878 2430 | 
             
                  ],
         | 
| 2879 | 
            -
                  "name": " | 
| 2431 | 
            +
                  "name": "updateDistributorType",
         | 
| 2880 2432 | 
             
                  "outputs": [],
         | 
| 2881 2433 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2882 2434 | 
             
                  "type": "function"
         | 
| @@ -2884,9 +2436,9 @@ | |
| 2884 2436 | 
             
                {
         | 
| 2885 2437 | 
             
                  "inputs": [
         | 
| 2886 2438 | 
             
                    {
         | 
| 2887 | 
            -
                      "internalType": " | 
| 2888 | 
            -
                      "name": " | 
| 2889 | 
            -
                      "type": " | 
| 2439 | 
            +
                      "internalType": "DistributorType",
         | 
| 2440 | 
            +
                      "name": "distributorType",
         | 
| 2441 | 
            +
                      "type": "bytes8"
         | 
| 2890 2442 | 
             
                    },
         | 
| 2891 2443 | 
             
                    {
         | 
| 2892 2444 | 
             
                      "internalType": "StateId",
         | 
| @@ -2894,7 +2446,7 @@ | |
| 2894 2446 | 
             
                      "type": "uint8"
         | 
| 2895 2447 | 
             
                    }
         | 
| 2896 2448 | 
             
                  ],
         | 
| 2897 | 
            -
                  "name": " | 
| 2449 | 
            +
                  "name": "updateDistributorTypeState",
         | 
| 2898 2450 | 
             
                  "outputs": [],
         | 
| 2899 2451 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2900 2452 | 
             
                  "type": "function"
         | 
| @@ -2903,167 +2455,48 @@ | |
| 2903 2455 | 
             
                  "inputs": [
         | 
| 2904 2456 | 
             
                    {
         | 
| 2905 2457 | 
             
                      "internalType": "NftId",
         | 
| 2906 | 
            -
                      "name": " | 
| 2458 | 
            +
                      "name": "poolNftId",
         | 
| 2907 2459 | 
             
                      "type": "uint96"
         | 
| 2908 2460 | 
             
                    },
         | 
| 2909 2461 | 
             
                    {
         | 
| 2910 2462 | 
             
                      "components": [
         | 
| 2911 2463 | 
             
                        {
         | 
| 2912 | 
            -
                          "internalType": " | 
| 2913 | 
            -
                          "name": " | 
| 2914 | 
            -
                          "type": "bool"
         | 
| 2915 | 
            -
                        },
         | 
| 2916 | 
            -
                        {
         | 
| 2917 | 
            -
                          "internalType": "bool",
         | 
| 2918 | 
            -
                          "name": "hasDistribution",
         | 
| 2919 | 
            -
                          "type": "bool"
         | 
| 2920 | 
            -
                        },
         | 
| 2921 | 
            -
                        {
         | 
| 2922 | 
            -
                          "internalType": "uint8",
         | 
| 2923 | 
            -
                          "name": "expectedNumberOfOracles",
         | 
| 2924 | 
            -
                          "type": "uint8"
         | 
| 2925 | 
            -
                        },
         | 
| 2926 | 
            -
                        {
         | 
| 2927 | 
            -
                          "internalType": "uint8",
         | 
| 2928 | 
            -
                          "name": "numberOfOracles",
         | 
| 2929 | 
            -
                          "type": "uint8"
         | 
| 2930 | 
            -
                        },
         | 
| 2931 | 
            -
                        {
         | 
| 2932 | 
            -
                          "internalType": "NftId",
         | 
| 2933 | 
            -
                          "name": "poolNftId",
         | 
| 2934 | 
            -
                          "type": "uint96"
         | 
| 2935 | 
            -
                        },
         | 
| 2936 | 
            -
                        {
         | 
| 2937 | 
            -
                          "internalType": "NftId",
         | 
| 2938 | 
            -
                          "name": "distributionNftId",
         | 
| 2464 | 
            +
                          "internalType": "Amount",
         | 
| 2465 | 
            +
                          "name": "maxBalanceAmount",
         | 
| 2939 2466 | 
             
                          "type": "uint96"
         | 
| 2940 2467 | 
             
                        },
         | 
| 2941 2468 | 
             
                        {
         | 
| 2942 | 
            -
                          "internalType": " | 
| 2943 | 
            -
                          "name": " | 
| 2944 | 
            -
                          "type": " | 
| 2945 | 
            -
                        },
         | 
| 2946 | 
            -
                        {
         | 
| 2947 | 
            -
                          "components": [
         | 
| 2948 | 
            -
                            {
         | 
| 2949 | 
            -
                              "internalType": "UFixed",
         | 
| 2950 | 
            -
                              "name": "fractionalFee",
         | 
| 2951 | 
            -
                              "type": "uint256"
         | 
| 2952 | 
            -
                            },
         | 
| 2953 | 
            -
                            {
         | 
| 2954 | 
            -
                              "internalType": "uint256",
         | 
| 2955 | 
            -
                              "name": "fixedFee",
         | 
| 2956 | 
            -
                              "type": "uint256"
         | 
| 2957 | 
            -
                            }
         | 
| 2958 | 
            -
                          ],
         | 
| 2959 | 
            -
                          "internalType": "struct Fee",
         | 
| 2960 | 
            -
                          "name": "productFee",
         | 
| 2961 | 
            -
                          "type": "tuple"
         | 
| 2962 | 
            -
                        },
         | 
| 2963 | 
            -
                        {
         | 
| 2964 | 
            -
                          "components": [
         | 
| 2965 | 
            -
                            {
         | 
| 2966 | 
            -
                              "internalType": "UFixed",
         | 
| 2967 | 
            -
                              "name": "fractionalFee",
         | 
| 2968 | 
            -
                              "type": "uint256"
         | 
| 2969 | 
            -
                            },
         | 
| 2970 | 
            -
                            {
         | 
| 2971 | 
            -
                              "internalType": "uint256",
         | 
| 2972 | 
            -
                              "name": "fixedFee",
         | 
| 2973 | 
            -
                              "type": "uint256"
         | 
| 2974 | 
            -
                            }
         | 
| 2975 | 
            -
                          ],
         | 
| 2976 | 
            -
                          "internalType": "struct Fee",
         | 
| 2977 | 
            -
                          "name": "processingFee",
         | 
| 2978 | 
            -
                          "type": "tuple"
         | 
| 2979 | 
            -
                        },
         | 
| 2980 | 
            -
                        {
         | 
| 2981 | 
            -
                          "components": [
         | 
| 2982 | 
            -
                            {
         | 
| 2983 | 
            -
                              "internalType": "UFixed",
         | 
| 2984 | 
            -
                              "name": "fractionalFee",
         | 
| 2985 | 
            -
                              "type": "uint256"
         | 
| 2986 | 
            -
                            },
         | 
| 2987 | 
            -
                            {
         | 
| 2988 | 
            -
                              "internalType": "uint256",
         | 
| 2989 | 
            -
                              "name": "fixedFee",
         | 
| 2990 | 
            -
                              "type": "uint256"
         | 
| 2991 | 
            -
                            }
         | 
| 2992 | 
            -
                          ],
         | 
| 2993 | 
            -
                          "internalType": "struct Fee",
         | 
| 2994 | 
            -
                          "name": "distributionFee",
         | 
| 2995 | 
            -
                          "type": "tuple"
         | 
| 2996 | 
            -
                        },
         | 
| 2997 | 
            -
                        {
         | 
| 2998 | 
            -
                          "components": [
         | 
| 2999 | 
            -
                            {
         | 
| 3000 | 
            -
                              "internalType": "UFixed",
         | 
| 3001 | 
            -
                              "name": "fractionalFee",
         | 
| 3002 | 
            -
                              "type": "uint256"
         | 
| 3003 | 
            -
                            },
         | 
| 3004 | 
            -
                            {
         | 
| 3005 | 
            -
                              "internalType": "uint256",
         | 
| 3006 | 
            -
                              "name": "fixedFee",
         | 
| 3007 | 
            -
                              "type": "uint256"
         | 
| 3008 | 
            -
                            }
         | 
| 3009 | 
            -
                          ],
         | 
| 3010 | 
            -
                          "internalType": "struct Fee",
         | 
| 3011 | 
            -
                          "name": "minDistributionOwnerFee",
         | 
| 3012 | 
            -
                          "type": "tuple"
         | 
| 2469 | 
            +
                          "internalType": "UFixed",
         | 
| 2470 | 
            +
                          "name": "collateralizationLevel",
         | 
| 2471 | 
            +
                          "type": "uint160"
         | 
| 3013 2472 | 
             
                        },
         | 
| 3014 2473 | 
             
                        {
         | 
| 3015 | 
            -
                          " | 
| 3016 | 
            -
             | 
| 3017 | 
            -
             | 
| 3018 | 
            -
                              "name": "fractionalFee",
         | 
| 3019 | 
            -
                              "type": "uint256"
         | 
| 3020 | 
            -
                            },
         | 
| 3021 | 
            -
                            {
         | 
| 3022 | 
            -
                              "internalType": "uint256",
         | 
| 3023 | 
            -
                              "name": "fixedFee",
         | 
| 3024 | 
            -
                              "type": "uint256"
         | 
| 3025 | 
            -
                            }
         | 
| 3026 | 
            -
                          ],
         | 
| 3027 | 
            -
                          "internalType": "struct Fee",
         | 
| 3028 | 
            -
                          "name": "poolFee",
         | 
| 3029 | 
            -
                          "type": "tuple"
         | 
| 2474 | 
            +
                          "internalType": "UFixed",
         | 
| 2475 | 
            +
                          "name": "retentionLevel",
         | 
| 2476 | 
            +
                          "type": "uint160"
         | 
| 3030 2477 | 
             
                        },
         | 
| 3031 2478 | 
             
                        {
         | 
| 3032 | 
            -
                          " | 
| 3033 | 
            -
             | 
| 3034 | 
            -
             | 
| 3035 | 
            -
                              "name": "fractionalFee",
         | 
| 3036 | 
            -
                              "type": "uint256"
         | 
| 3037 | 
            -
                            },
         | 
| 3038 | 
            -
                            {
         | 
| 3039 | 
            -
                              "internalType": "uint256",
         | 
| 3040 | 
            -
                              "name": "fixedFee",
         | 
| 3041 | 
            -
                              "type": "uint256"
         | 
| 3042 | 
            -
                            }
         | 
| 3043 | 
            -
                          ],
         | 
| 3044 | 
            -
                          "internalType": "struct Fee",
         | 
| 3045 | 
            -
                          "name": "stakingFee",
         | 
| 3046 | 
            -
                          "type": "tuple"
         | 
| 2479 | 
            +
                          "internalType": "bool",
         | 
| 2480 | 
            +
                          "name": "isInterceptingBundleTransfers",
         | 
| 2481 | 
            +
                          "type": "bool"
         | 
| 3047 2482 | 
             
                        },
         | 
| 3048 2483 | 
             
                        {
         | 
| 3049 | 
            -
                          " | 
| 3050 | 
            -
             | 
| 3051 | 
            -
             | 
| 3052 | 
            -
             | 
| 3053 | 
            -
             | 
| 3054 | 
            -
             | 
| 3055 | 
            -
             | 
| 3056 | 
            -
             | 
| 3057 | 
            -
             | 
| 3058 | 
            -
             | 
| 3059 | 
            -
             | 
| 3060 | 
            -
                           | 
| 3061 | 
            -
                          " | 
| 3062 | 
            -
                          "name": "performanceFee",
         | 
| 3063 | 
            -
                          "type": "tuple"
         | 
| 2484 | 
            +
                          "internalType": "bool",
         | 
| 2485 | 
            +
                          "name": "isProcessingConfirmedClaims",
         | 
| 2486 | 
            +
                          "type": "bool"
         | 
| 2487 | 
            +
                        },
         | 
| 2488 | 
            +
                        {
         | 
| 2489 | 
            +
                          "internalType": "bool",
         | 
| 2490 | 
            +
                          "name": "isExternallyManaged",
         | 
| 2491 | 
            +
                          "type": "bool"
         | 
| 2492 | 
            +
                        },
         | 
| 2493 | 
            +
                        {
         | 
| 2494 | 
            +
                          "internalType": "bool",
         | 
| 2495 | 
            +
                          "name": "isVerifyingApplications",
         | 
| 2496 | 
            +
                          "type": "bool"
         | 
| 3064 2497 | 
             
                        }
         | 
| 3065 2498 | 
             
                      ],
         | 
| 3066 | 
            -
                      "internalType": "struct IComponents. | 
| 2499 | 
            +
                      "internalType": "struct IComponents.PoolInfo",
         | 
| 3067 2500 | 
             
                      "name": "info",
         | 
| 3068 2501 | 
             
                      "type": "tuple"
         | 
| 3069 2502 | 
             
                    },
         | 
| @@ -3073,7 +2506,7 @@ | |
| 3073 2506 | 
             
                      "type": "uint8"
         | 
| 3074 2507 | 
             
                    }
         | 
| 3075 2508 | 
             
                  ],
         | 
| 3076 | 
            -
                  "name": " | 
| 2509 | 
            +
                  "name": "updatePool",
         | 
| 3077 2510 | 
             
                  "outputs": [],
         | 
| 3078 2511 | 
             
                  "stateMutability": "nonpayable",
         | 
| 3079 2512 | 
             
                  "type": "function"
         | 
| @@ -3089,18 +2522,13 @@ | |
| 3089 2522 | 
             
                      "components": [
         | 
| 3090 2523 | 
             
                        {
         | 
| 3091 2524 | 
             
                          "internalType": "NftId",
         | 
| 3092 | 
            -
                          "name": " | 
| 2525 | 
            +
                          "name": "distributionNftId",
         | 
| 3093 2526 | 
             
                          "type": "uint96"
         | 
| 3094 2527 | 
             
                        },
         | 
| 3095 2528 | 
             
                        {
         | 
| 3096 | 
            -
                          "internalType": " | 
| 3097 | 
            -
                          "name": " | 
| 3098 | 
            -
                          "type": " | 
| 3099 | 
            -
                        },
         | 
| 3100 | 
            -
                        {
         | 
| 3101 | 
            -
                          "internalType": "UFixed",
         | 
| 3102 | 
            -
                          "name": "discountPercentage",
         | 
| 3103 | 
            -
                          "type": "uint256"
         | 
| 2529 | 
            +
                          "internalType": "NftId",
         | 
| 2530 | 
            +
                          "name": "distributorNftId",
         | 
| 2531 | 
            +
                          "type": "uint96"
         | 
| 3104 2532 | 
             
                        },
         | 
| 3105 2533 | 
             
                        {
         | 
| 3106 2534 | 
             
                          "internalType": "uint32",
         | 
| @@ -3112,11 +2540,21 @@ | |
| 3112 2540 | 
             
                          "name": "usedReferrals",
         | 
| 3113 2541 | 
             
                          "type": "uint32"
         | 
| 3114 2542 | 
             
                        },
         | 
| 2543 | 
            +
                        {
         | 
| 2544 | 
            +
                          "internalType": "UFixed",
         | 
| 2545 | 
            +
                          "name": "discountPercentage",
         | 
| 2546 | 
            +
                          "type": "uint160"
         | 
| 2547 | 
            +
                        },
         | 
| 3115 2548 | 
             
                        {
         | 
| 3116 2549 | 
             
                          "internalType": "Timestamp",
         | 
| 3117 2550 | 
             
                          "name": "expiryAt",
         | 
| 3118 2551 | 
             
                          "type": "uint40"
         | 
| 3119 2552 | 
             
                        },
         | 
| 2553 | 
            +
                        {
         | 
| 2554 | 
            +
                          "internalType": "string",
         | 
| 2555 | 
            +
                          "name": "referralCode",
         | 
| 2556 | 
            +
                          "type": "string"
         | 
| 2557 | 
            +
                        },
         | 
| 3120 2558 | 
             
                        {
         | 
| 3121 2559 | 
             
                          "internalType": "bytes",
         | 
| 3122 2560 | 
             
                          "name": "data",
         | 
| @@ -3170,25 +2608,15 @@ | |
| 3170 2608 | 
             
                          "name": "requesterNftId",
         | 
| 3171 2609 | 
             
                          "type": "uint96"
         | 
| 3172 2610 | 
             
                        },
         | 
| 3173 | 
            -
                        {
         | 
| 3174 | 
            -
                          "internalType": "string",
         | 
| 3175 | 
            -
                          "name": "callbackMethodName",
         | 
| 3176 | 
            -
                          "type": "string"
         | 
| 3177 | 
            -
                        },
         | 
| 3178 2611 | 
             
                        {
         | 
| 3179 2612 | 
             
                          "internalType": "NftId",
         | 
| 3180 2613 | 
             
                          "name": "oracleNftId",
         | 
| 3181 2614 | 
             
                          "type": "uint96"
         | 
| 3182 2615 | 
             
                        },
         | 
| 3183 2616 | 
             
                        {
         | 
| 3184 | 
            -
                          "internalType": " | 
| 3185 | 
            -
                          "name": " | 
| 3186 | 
            -
                          "type": " | 
| 3187 | 
            -
                        },
         | 
| 3188 | 
            -
                        {
         | 
| 3189 | 
            -
                          "internalType": "bytes",
         | 
| 3190 | 
            -
                          "name": "responseData",
         | 
| 3191 | 
            -
                          "type": "bytes"
         | 
| 2617 | 
            +
                          "internalType": "bool",
         | 
| 2618 | 
            +
                          "name": "isCancelled",
         | 
| 2619 | 
            +
                          "type": "bool"
         | 
| 3192 2620 | 
             
                        },
         | 
| 3193 2621 | 
             
                        {
         | 
| 3194 2622 | 
             
                          "internalType": "Timestamp",
         | 
| @@ -3201,9 +2629,19 @@ | |
| 3201 2629 | 
             
                          "type": "uint40"
         | 
| 3202 2630 | 
             
                        },
         | 
| 3203 2631 | 
             
                        {
         | 
| 3204 | 
            -
                          "internalType": " | 
| 3205 | 
            -
                          "name": " | 
| 3206 | 
            -
                          "type": " | 
| 2632 | 
            +
                          "internalType": "string",
         | 
| 2633 | 
            +
                          "name": "callbackMethodName",
         | 
| 2634 | 
            +
                          "type": "string"
         | 
| 2635 | 
            +
                        },
         | 
| 2636 | 
            +
                        {
         | 
| 2637 | 
            +
                          "internalType": "bytes",
         | 
| 2638 | 
            +
                          "name": "requestData",
         | 
| 2639 | 
            +
                          "type": "bytes"
         | 
| 2640 | 
            +
                        },
         | 
| 2641 | 
            +
                        {
         | 
| 2642 | 
            +
                          "internalType": "bytes",
         | 
| 2643 | 
            +
                          "name": "responseData",
         | 
| 2644 | 
            +
                          "type": "bytes"
         | 
| 3207 2645 | 
             
                        }
         | 
| 3208 2646 | 
             
                      ],
         | 
| 3209 2647 | 
             
                      "internalType": "struct IOracle.RequestInfo",
         | 
| @@ -3238,73 +2676,20 @@ | |
| 3238 2676 | 
             
                  "outputs": [],
         | 
| 3239 2677 | 
             
                  "stateMutability": "nonpayable",
         | 
| 3240 2678 | 
             
                  "type": "function"
         | 
| 3241 | 
            -
                },
         | 
| 3242 | 
            -
                {
         | 
| 3243 | 
            -
                  "inputs": [
         | 
| 3244 | 
            -
                    {
         | 
| 3245 | 
            -
                      "internalType": "RiskId",
         | 
| 3246 | 
            -
                      "name": "riskId",
         | 
| 3247 | 
            -
                      "type": "bytes8"
         | 
| 3248 | 
            -
                    },
         | 
| 3249 | 
            -
                    {
         | 
| 3250 | 
            -
                      "components": [
         | 
| 3251 | 
            -
                        {
         | 
| 3252 | 
            -
                          "internalType": "NftId",
         | 
| 3253 | 
            -
                          "name": "productNftId",
         | 
| 3254 | 
            -
                          "type": "uint96"
         | 
| 3255 | 
            -
                        },
         | 
| 3256 | 
            -
                        {
         | 
| 3257 | 
            -
                          "internalType": "bytes",
         | 
| 3258 | 
            -
                          "name": "data",
         | 
| 3259 | 
            -
                          "type": "bytes"
         | 
| 3260 | 
            -
                        }
         | 
| 3261 | 
            -
                      ],
         | 
| 3262 | 
            -
                      "internalType": "struct IRisk.RiskInfo",
         | 
| 3263 | 
            -
                      "name": "risk",
         | 
| 3264 | 
            -
                      "type": "tuple"
         | 
| 3265 | 
            -
                    },
         | 
| 3266 | 
            -
                    {
         | 
| 3267 | 
            -
                      "internalType": "StateId",
         | 
| 3268 | 
            -
                      "name": "newState",
         | 
| 3269 | 
            -
                      "type": "uint8"
         | 
| 3270 | 
            -
                    }
         | 
| 3271 | 
            -
                  ],
         | 
| 3272 | 
            -
                  "name": "updateRisk",
         | 
| 3273 | 
            -
                  "outputs": [],
         | 
| 3274 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 3275 | 
            -
                  "type": "function"
         | 
| 3276 | 
            -
                },
         | 
| 3277 | 
            -
                {
         | 
| 3278 | 
            -
                  "inputs": [
         | 
| 3279 | 
            -
                    {
         | 
| 3280 | 
            -
                      "internalType": "RiskId",
         | 
| 3281 | 
            -
                      "name": "riskId",
         | 
| 3282 | 
            -
                      "type": "bytes8"
         | 
| 3283 | 
            -
                    },
         | 
| 3284 | 
            -
                    {
         | 
| 3285 | 
            -
                      "internalType": "StateId",
         | 
| 3286 | 
            -
                      "name": "newState",
         | 
| 3287 | 
            -
                      "type": "uint8"
         | 
| 3288 | 
            -
                    }
         | 
| 3289 | 
            -
                  ],
         | 
| 3290 | 
            -
                  "name": "updateRiskState",
         | 
| 3291 | 
            -
                  "outputs": [],
         | 
| 3292 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 3293 | 
            -
                  "type": "function"
         | 
| 3294 2679 | 
             
                }
         | 
| 3295 2680 | 
             
              ],
         | 
| 3296 | 
            -
              "bytecode": "0x6080604052348015600e575f80fd5b5061589a8061001c5f395ff3fe608060405234801561000f575f80fd5b50600436106103a9575f3560e01c80637cd81ef8116101ea578063b0628dc311610114578063d625d758116100a9578063e9e96c7011610079578063e9e96c701461098c578063f48016ce146109c9578063f71d7ffe146109ea578063fe1f18d6146109fd575f80fd5b8063d625d7581461058c578063d78c599b14610953578063e145b68b14610966578063e80c61ed14610979575f80fd5b8063bf1db3f9116100e4578063bf1db3f9146108fa578063bf7e214f1461090d578063ca0e7f081461092d578063d3eb4e4714610940575f80fd5b8063b0628dc3146108ae578063b4d7efe2146108c1578063b6d7cd62146108d4578063bcd65e21146108e7575f80fd5b80638eb9000d1161018a578063a46eb8dc1161015a578063a46eb8dc146107e9578063a5961b4c146107fc578063a76ee01814610888578063af9025001461089b575f80fd5b80638eb9000d146107775780638fb36037146107a25780639f8151e5146107c3578063a2842229146107d6575f80fd5b80638129fc1c116101c55780638129fc1c1461073c57806381d32d6b1461058c5780638ad6e023146107445780638eaa6ac014610757575f80fd5b80637cd81ef8146107035780637cef4842146107165780637d8486fe14610729575f80fd5b806340529b0f116102d657806354f6127f1161026b57806361105e0e1161023b57806361105e0e146106b75780636fac8622146106ca5780637064ffd2146106dd5780637a9e5e4b146106f0575f80fd5b806354f6127f146106115780635a8416b0146106315780635d4345cc146104935780635eede17414610644575f80fd5b8063533086d4116102a6578063533086d4146105c557806353ebe129146105d857806354e5618e146105eb57806354f1fa81146105fe575f80fd5b806340529b0f14610579578063425d08e21461058c5780634d4a7ae91461059f57806351dd844b146105b2575f80fd5b8063248a77dd1161034c57806330a130ba1161031c57806330a130ba1461051d578063353e5b751461053057806338a699a4146105435780633c3f8d0e14610566575f80fd5b8063248a77dd146104d1578063275c0595146104e45780632ae5819d146104f75780632f61088a1461050a575f80fd5b806309648a9d1161038757806309648a9d146104355780630d3581811461046e5780630fad0eb114610493578063228e42ec146104a6575f80fd5b80630232ca49146103ad5780630632b17d146103f557806308c253c614610420575b5f80fd5b6103d86103bb3660046132aa565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b6104086104033660046135e1565b610a10565b6040516001600160401b0390911681526020016103ec565b61043361042e36600461381f565b610ad0565b005b61045c61044336600461386b565b5f90815260076020526040902054610100900460ff1690565b60405160ff90911681526020016103ec565b61045c61047c366004613882565b60ff9081165f908152602081905260409020541690565b6104336104a136600461389d565b610afc565b6103d86104b43660046132aa565b6001600160601b039081165f908152600260205260409020541690565b6103d86104df3660046138d4565b610b1e565b6104336104f236600461391f565b610b3b565b61043361050536600461389d565b610be8565b6104336105183660046139f5565b610bff565b61043361052b366004613b26565b610c9d565b61043361053e366004613b68565b610d3b565b61055661055136600461386b565b610d57565b60405190151581526020016103ec565b610433610574366004613c6e565b610ddf565b61043361058736600461389d565b610e06565b61043361059a366004613e4b565b610e1d565b6104336105ad366004613e8e565b610e45565b6104336105c03660046140b6565b610e6d565b6103d86105d33660046138d4565b610e95565b6103d86105e63660046138d4565b610ea9565b6104336105f9366004614196565b610ebd565b61043361060c3660046141d9565b610ee5565b61062461061f36600461386b565b61103d565b6040516103ec9190614255565b61043361063f366004614267565b6110df565b61068d6106523660046132aa565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016103ec565b6104336106c5366004614366565b61117d565b6104336106d83660046143a9565b61121b565b6104336106eb366004614490565b61124c565b6104336106fe3660046144d2565b61127d565b610433610711366004614586565b6112ff565b6104336107243660046145c4565b611327565b6104336107373660046145e0565b6113b4565b6104336113dc565b610433610752366004614615565b611558565b61076a61076536600461386b565b611580565b6040516103ec9190614658565b6103d86107853660046132aa565b6001600160601b039081165f908152600360205260409020541690565b6107aa6116a1565b6040516001600160e01b031990911681526020016103ec565b6103d86107d13660046138d4565b6116d7565b6104336107e43660046145c4565b6116eb565b6104336107f73660046146b6565b611739565b61087b61080a36600461386b565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b6040516103ec91906146f8565b610433610896366004614739565b61176a565b6104336108a93660046145c4565b611808565b6103d86108bc3660046138d4565b611856565b6104336108cf36600461477c565b61186a565b6104336108e2366004614798565b6118b7565b6104336108f53660046147c5565b6118cd565b610556610908366004613882565b6118f4565b610915611940565b6040516001600160a01b0390911681526020016103ec565b61043361093b366004614822565b61195b565b61043361094e366004614864565b6119f9565b61043361096136600461497c565b611a21565b6104336109743660046149d0565b611a48565b6103d86109873660046138d4565b611a6f565b61055661099a366004614a23565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6109dc6109d7366004614a5f565b611a83565b6040519081526020016103ec565b6104336109f8366004614a8b565b611b04565b610433610a0b36600461389d565b611b35565b5f610a1d335b5f36611b4c565b610a25611c4a565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610acb9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610a82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa69190614acd565b83604051602001610ab79190614ae4565b604051602081830303815290604052611cda565b919050565b610ad933610a16565b610af8610ae783600c61209e565b82604051602001610ab79190614bf9565b5050565b610b0533610a16565b610b19610b1383601561209e565b826120e9565b505050565b5f610b2833610a16565b610b3283836123e6565b90505b92915050565b610b4433610a16565b604051630f37f38f60e41b81526001600160401b0384166004820152610b199073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610b9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc29190614acd565b83604051602001610bd39190614ae4565b604051602081830303815290604052836124df565b610bf133610a16565b610b19610b1383601661209e565b610c0833610a16565b6040516355ee627560e01b8152610af89073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590610c4d906001600160c01b0319871690600401614d40565b602060405180830381865af4158015610c68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8c9190614acd565b82604051602001610ab79190614d55565b610ca633610a16565b6040516355ee627560e01b8152610af89073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610ceb906001600160c01b0319871690600401614d40565b602060405180830381865af4158015610d06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2a9190614acd565b82604051602001610ab79190614d82565b610d4433610a16565b610d51610b138484612655565b50505050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610dbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b359190614e2c565b610de833610a16565b610d51610df58585612655565b83604051602001610bd39190614e47565b610e0f33610a16565b610b19610b1383601d61209e565b610e2633610a16565b610b19610e3484601561209e565b83604051602001610bd39190614eb2565b610e4e33610a16565b610af8610e5c83601661209e565b82604051602001610ab7919061502a565b610e7633610a16565b610b19610e8484601f61209e565b83604051602001610bd3919061521a565b5f610e9f33610a16565b610b3283836126a4565b5f610eb333610a16565b610b328383612785565b610ec633610a16565b610b19610ed484601d61209e565b83604051602001610bd391906152a5565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015610f47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f6b9190614e2c565b15610f995760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff80851690831614610fda5760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401610f90565b60ff8084165f90815260016020908152604080832088851684528252808320858516845290915290205416610d515760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401610f90565b5f81815260076020526040902060010180546060919061105c906152fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611088906152fe565b80156110d35780601f106110aa576101008083540402835291602001916110d3565b820191905f5260205f20905b8154815290600101906020018083116110b657829003601f168201915b50505050509050919050565b6110e833610a16565b6040516355ee627560e01b8152610b199073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee62759061112d906001600160c01b0319881690600401614d40565b602060405180830381865af4158015611148573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116c9190614acd565b83604051602001610bd39190614d82565b61118633610a16565b6040516355ee627560e01b8152610b199073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906111cb906001600160c01b0319881690600401614d40565b602060405180830381865af41580156111e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061120a9190614acd565b83604051602001610bd39190615336565b61122433610a16565b61122d82612866565b610af861123b83601561209e565b82604051602001610ab79190614eb2565b61125533610a16565b61125e82612866565b610af861126c83600b61209e565b82604051602001610ab791906153c7565b33611286611940565b6001600160a01b0316816001600160a01b0316146112c15760405162d1953b60e31b81526001600160a01b0382166004820152602401610f90565b816001600160a01b03163b5f036112f6576040516361798f2f60e11b81526001600160a01b0383166004820152602401610f90565b610af882612914565b61130833610a16565b610b1961131684600f61209e565b83604051602001610bd39190615432565b61133033610a16565b6040516355ee627560e01b8152610b199073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611375906001600160c01b0319871690600401614d40565b602060405180830381865af4158015611390573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b139190614acd565b6113bd33610a16565b610af86113cb83600f61209e565b82604051602001610ab79190615432565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156114205750825b90505f826001600160401b0316600114801561143b5750303b155b905081158015611449575080155b156114675760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561149157845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f691906154bc565b905061150181612974565b611509612988565b5050831561155157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b61156133610a16565b610b1961156f84600c61209e565b83604051602001610bd39190614bf9565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161161a906152fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611646906152fe565b80156116915780601f1061166857610100808354040283529160200191611691565b820191905f5260205f20905b81548152906001019060200180831161167457829003601f168201915b5050505050815250509050919050565b5f8051602061584583398151915280545f9190600160a01b900460ff166116c8575f6116d1565b638fb3603760e01b5b91505090565b5f6116e133610a16565b610b32838361299a565b6116f433610a16565b6040516355ee627560e01b8152610b199073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611375906001600160c01b0319871690600401614d40565b61174233610a16565b61174b82612866565b610af861175983601f61209e565b82604051602001610ab7919061521a565b61177333610a16565b6040516355ee627560e01b8152610b199073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906117b8906001600160c01b0319881690600401614d40565b602060405180830381865af41580156117d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117f79190614acd565b83604051602001610bd39190614d55565b61181133610a16565b6040516355ee627560e01b8152610b199073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611375906001600160c01b0319871690600401614d40565b5f61186033610a16565b610b328383612a7b565b61187333610a16565b604051630f37f38f60e41b81526001600160401b0383166004820152610b199073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401611375565b6118c033610a16565b610d51610b138484612b5c565b6118d633610a16565b610b196118e38484612655565b82604051602001610ab79190614e47565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610da0565b5f80516020615845833981519152546001600160a01b031690565b61196433610a16565b6040516355ee627560e01b8152610af89073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906119a9906001600160c01b0319871690600401614d40565b602060405180830381865af41580156119c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e89190614acd565b82604051602001610ab79190615336565b611a0233610a16565b610b19611a1084600b61209e565b83604051602001610bd391906153c7565b611a2a33610a16565b610d51611a378585612b5c565b83604051602001610bd391906154d7565b611a5133610a16565b610b19611a5e8484612b5c565b82604051602001610ab791906154d7565b5f611a7933610a16565b610b328383612ba8565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611ae0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b329190614acd565b611b0d33610a16565b611b1682612866565b610af8611b2483601d61209e565b82604051602001610ab791906152a5565b611b3e33610a16565b610b19610b1383601f61209e565b5f805160206158458339815191525f80611b84611b67611940565b8730611b7660045f8a8c615579565b611b7f916155a0565b612c89565b9150915081611c425763ffffffff811615611c1f57825460ff60a01b1916600160a01b178355611bb2611940565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611be1939291906155d6565b5f604051808303815f87803b158015611bf8575f80fd5b505af1158015611c0a573d5f803e3d5ffd5b5050845460ff60a01b1916855550611c429050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610f90565b505050505050565b600880545f9182611c5a83615615565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611cb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cd59190615639565b905090565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d4e9190615654565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611da1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc59190614e2c565b15611de8576040516307014a8d60e51b815260ff82166004820152602401610f90565b5f83815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611e4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e729190614e2c565b15611e9c57604051633f92eac960e21b81526004810185905260ff83166024820152604401610f90565b611ea5826118f4565b611ec757604051636cb0978b60e11b815260ff83166004820152602401610f90565b5f611ed0612d91565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784555f878152600760205260409020909150600101611f5a86826156b3565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611fcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fef9190615654565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af415801561203d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612061919061576d565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611ac5565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561213b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215f9190614e2c565b156121805760405163093b89e160e11b815260048101849052602401610f90565b505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121f6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061221a9190614e2c565b1561223b5760405163566ebf7960e01b815260048101869052602401610f90565b60ff808516146123b857815461225790829060ff168187610ee5565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156122d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122fd9190615654565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af415801561234b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061236f919061576d565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b6123c0612d91565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b6001600160601b0382165f90815260056020526040812054839060ff1661242b57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f9081526003602052604090205461244f911684612dfd565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916124c79187918791879163ffffffff90911690615788565b60405180910390a16124d884612e82565b5092915050565b5f6124ea84836120e9565b5f85815260076020526040902090915060010161250784826156b3565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612578573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061259c9190615654565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156125ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061260e919061576d565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611ac5565b6001600160601b0382165f90815260056020526040812054839060ff166126e957604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f9081526004602052604090205461270d911684612f1f565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916124c79187918791879163ffffffff90911690615788565b6001600160601b0382165f90815260056020526040812054839060ff166127ca57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f908152600360205260409020546127ee911684612f1f565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916124c79187918791879163ffffffff90911690615788565b6001600160601b0381165f9081526005602052604090205460ff16156128aa576040516314d5804160e01b81526001600160601b0382166004820152602401610f90565b6001600160601b0381165f908152600560205260409020805460ff191660011790556128d581612e82565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b5f8051602061584583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61297c612f69565b61298581612fb2565b50565b612990612f69565b612998612fc3565b565b6001600160601b0382165f90815260056020526040812054839060ff166129df57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f90815260026020526040902054612a03911684612dfd565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916124c79187918791879163ffffffff90911690615788565b6001600160601b0382165f90815260056020526040812054839060ff16612ac057604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f90815260026020526040902054612ae4911684612f1f565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916124c79187918791879163ffffffff90911690615788565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611ac5565b6001600160601b0382165f90815260056020526040812054839060ff16612bed57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f90815260046020526040902054612c11911684612dfd565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916124c79187918791879163ffffffff90911690615788565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612cf791906157b7565b5f60405180830381855afa9150503d805f8114612d2f576040519150601f19603f3d011682016040523d82523d5f602084013e612d34565b606091505b50915091508115612d86576040815110612d665780806020019051810190612d5c91906157cd565b9094509250612d86565b6020815110612d865780806020019051810190612d839190614e2c565b93505b505094509492505050565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612dd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cd591906157fa565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612e5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b329190615815565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612ec9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eed91906157fa565b6001600160601b03919091165f908152600660205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612e43565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661299857604051631afcd79f60e31b815260040160405180910390fd5b612fba612f69565b61298581612914565b612fcb61301b565b612fd3613061565b612fdb61308e565b612fe36130d1565b612feb6130ed565b612ff361311f565b612ffb613133565b61300361315b565b61300b61319c565b6130136131a6565b6129986131b0565b613028601f5b60056131d8565b613037601f5b6005606e61321a565b613046601f60055b60c861321a565b613055601f5b606e600561321a565b612998601f606e61303f565b61306b600b613021565b613075600b61302e565b61307f600b61304c565b612998600b5b606e60d261321a565b61309a6015600a6131d8565b6130a86015600a601461321a565b6130b76015600a5b601e61321a565b6130c56015600a602861321a565b6129986015602861303f565b6130de60165b603c6131d8565b61299860165b603c60dc61321a565b6130f9601760326131d8565b61310760176032603361321a565b613113601760326130b0565b6129986017603361303f565b61312960186130d7565b61299860186130e4565b61313d6019613021565b613147601961302e565b613151601961304c565b6129986019613085565b613165601b613021565b613174601b60055b604661321a565b613182601b6005600761321a565b61318e601b600761316d565b612998601b6005604861321a565b612998600f613021565b612998600c613021565b6131ba600e613021565b6131c4601d613021565b6131ce601c613021565b612998601e613021565b60ff8281165f9081526020819052604090205416156131f9576131f9615830565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561325257613252615830565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b0381168114612985575f80fd5b8035610acb8161328b565b5f602082840312156132ba575f80fd5b81356132c58161328b565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b0381118282101715613303576133036132cc565b60405290565b604080519081016001600160401b0381118282101715613303576133036132cc565b6040516101c081016001600160401b0381118282101715613303576133036132cc565b60405161012081016001600160401b0381118282101715613303576133036132cc565b60405160a081016001600160401b0381118282101715613303576133036132cc565b60405161020081016001600160401b0381118282101715613303576133036132cc565b60405161024081016001600160401b0381118282101715613303576133036132cc565b60405160c081016001600160401b0381118282101715613303576133036132cc565b60405160e081016001600160401b0381118282101715613303576133036132cc565b604051601f8201601f191681016001600160401b0381118282101715613445576134456132cc565b604052919050565b5f82601f83011261345c575f80fd5b8135602083015f806001600160401b0384111561347b5761347b6132cc565b50601f8301601f19166020016134908161341d565b9150508281528583830111156134a4575f80fd5b828260208301375f92810160200192909252509392505050565b64ffffffffff81168114612985575f80fd5b8035610acb816134be565b8015158114612985575f80fd5b8035610acb816134db565b5f6101008284031215613504575f80fd5b61350c6132e0565b90506135178261329f565b815260208201356001600160401b03811115613531575f80fd5b61353d8482850161344d565b60208301525061354f6040830161329f565b604082015260608201356001600160401b0381111561356c575f80fd5b6135788482850161344d565b60608301525060808201356001600160401b03811115613596575f80fd5b6135a28482850161344d565b6080830152506135b460a083016134d0565b60a08201526135c560c083016134d0565b60c08201526135d660e083016134e8565b60e082015292915050565b5f602082840312156135f1575f80fd5b81356001600160401b03811115613606575f80fd5b613612848285016134f3565b949350505050565b60ff81168114612985575f80fd5b8035610acb8161361a565b5f82601f830112613642575f80fd5b81356001600160401b0381111561365b5761365b6132cc565b8060051b61366b6020820161341d565b91825260208185018101929081019086841115613686575f80fd5b6020860192505b838310156136b15782356136a08161328b565b82526020928301929091019061368d565b9695505050505050565b5f604082840312156136cb575f80fd5b6136d3613309565b823581526020928301359281019290925250919050565b5f6102a082840312156136fb575f80fd5b61370361332b565b905061370e826134e8565b815261371c602083016134e8565b602082015261372d60408301613628565b604082015261373e60608301613628565b606082015261374f6080830161329f565b608082015261376060a0830161329f565b60a082015260c08201356001600160401b0381111561377d575f80fd5b61378984828501613633565b60c08301525061379c8360e084016136bb565b60e08201526137af8361012084016136bb565b6101008201526137c38361016084016136bb565b6101208201526137d7836101a084016136bb565b6101408201526137eb836101e084016136bb565b6101608201526137ff8361022084016136bb565b6101808201526138138361026084016136bb565b6101a082015292915050565b5f8060408385031215613830575f80fd5b823561383b8161328b565b915060208301356001600160401b03811115613855575f80fd5b613861858286016136ea565b9150509250929050565b5f6020828403121561387b575f80fd5b5035919050565b5f60208284031215613892575f80fd5b81356132c58161361a565b5f80604083850312156138ae575f80fd5b82356138b98161328b565b915060208301356138c98161361a565b809150509250929050565b5f80604083850312156138e5575f80fd5b82356138f08161328b565b915060208301356138c98161328b565b6001600160401b0381168114612985575f80fd5b8035610acb81613900565b5f805f60608486031215613931575f80fd5b833561393c81613900565b925060208401356001600160401b03811115613956575f80fd5b613962868287016134f3565b92505060408401356139738161361a565b809150509250925092565b6001600160c01b031981168114612985575f80fd5b8035610acb8161397e565b5f604082840312156139ae575f80fd5b6139b6613309565b905081356139c38161328b565b815260208201356001600160401b038111156139dd575f80fd5b6139e98482850161344d565b60208301525092915050565b5f8060408385031215613a06575f80fd5b8235613a118161397e565b915060208301356001600160401b03811115613a2b575f80fd5b6138618582860161399e565b63ffffffff81168114612985575f80fd5b8035610acb81613a37565b5f6101208284031215613a64575f80fd5b613a6c61334e565b905081356001600160401b03811115613a83575f80fd5b613a8f8482850161344d565b825250602082810135908201526040808301359082015260608083013590820152613abc60808301613a48565b6080820152613acd60a08301613a48565b60a0820152613ade60c083016134e8565b60c0820152613aef60e083016134e8565b60e08201526101008201356001600160401b03811115613b0d575f80fd5b613b198482850161344d565b6101008301525092915050565b5f8060408385031215613b37575f80fd5b8235613b428161397e565b915060208301356001600160401b03811115613b5c575f80fd5b61386185828601613a53565b5f805f60608486031215613b7a575f80fd5b8335613b858161328b565b92506020840135613b95816134be565b915060408401356139738161361a565b61ffff81168114612985575f80fd5b8035610acb81613ba5565b6001600160a01b0381168114612985575f80fd5b8035610acb81613bbf565b5f60a08284031215613bee575f80fd5b613bf6613371565b90508135613c0381613ba5565b81526020820135613c138161328b565b60208201526040820135613c2681613bbf565b604082015260608201356001600160401b03811115613c43575f80fd5b613c4f8482850161344d565b6060830152506080820135613c63816134be565b608082015292915050565b5f805f8060808587031215613c81575f80fd5b8435613c8c8161328b565b93506020850135613c9c816134be565b925060408501356001600160401b03811115613cb6575f80fd5b613cc287828801613bde565b9250506060850135613cd38161361a565b939692955090935050565b5f6102008284031215613cef575f80fd5b613cf7613393565b9050613d028261329f565b8152613d106020830161329f565b6020820152613d2160408301613993565b6040820152613d3260608301613993565b6060820152613d436080830161329f565b6080820152613d5460a0830161329f565b60a0820152613d6560c083016134d0565b60c082015260e08201356001600160401b03811115613d82575f80fd5b613d8e8482850161344d565b60e0830152506101008201356001600160401b03811115613dad575f80fd5b613db98482850161344d565b61010083015250613dcd6101208301613bb4565b610120820152613de06101408301613bb4565b610140820152613df3610160830161329f565b610160820152613e06610180830161329f565b610180820152613e196101a083016134d0565b6101a0820152613e2c6101c083016134d0565b6101c0820152613e3f6101e083016134d0565b6101e082015292915050565b5f805f60608486031215613e5d575f80fd5b8335613e688161328b565b925060208401356001600160401b03811115613e82575f80fd5b61396286828701613cde565b5f80828403610260811215613ea1575f80fd5b8335613eac8161328b565b9250610240601f1982011215613ec0575f80fd5b50613ec96133b6565b613ed56020850161329f565b8152613ee36040850161329f565b6020820152613ef46060850161329f565b6040820152613f056080850161329f565b6060820152613f1660a0850161329f565b6080820152613f2760c0850161329f565b60a0820152613f3860e0850161329f565b60c0820152613f4a610100850161329f565b60e0820152613f5c610120850161329f565b610100820152613f6f610140850161329f565b610120820152613f82610160850161329f565b610140820152613f95610180850161329f565b610160820152613fa86101a0850161329f565b610180820152613fbb6101c0850161329f565b6101a0820152613fce6101e0850161329f565b6101c0820152613fe1610200850161329f565b6101e0820152613ff4610220850161329f565b610200820152614007610240850161329f565b610220820152809150509250929050565b5f60e08284031215614028575f80fd5b6140306133d9565b9050813561403d8161328b565b815261404c83602084016136bb565b602082015260608201356001600160401b03811115614069575f80fd5b6140758482850161344d565b6040830152506080820135614089816134be565b606082015261409a60a083016134d0565b60808201526140ab60c083016134d0565b60a082015292915050565b5f805f606084860312156140c8575f80fd5b83356140d38161328b565b925060208401356001600160401b038111156140ed575f80fd5b61396286828701614018565b5f60808284031215614109575f80fd5b604051608081016001600160401b038111828210171561412b5761412b6132cc565b604052905080823561413c8161397e565b8152602083013561414c816134db565b602082015260408301356001600160401b03811115614169575f80fd5b6141758582860161344d565b604083015250606083013561418981613a37565b6060919091015292915050565b5f805f606084860312156141a8575f80fd5b83356141b38161328b565b925060208401356001600160401b038111156141cd575f80fd5b613962868287016140f9565b5f805f80608085870312156141ec575f80fd5b84356141f78161361a565b935060208501356142078161361a565b925060408501356142178161361a565b91506060850135613cd38161361a565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b326020830184614227565b5f805f60608486031215614279575f80fd5b83356142848161397e565b925060208401356001600160401b0381111561429e575f80fd5b61396286828701613a53565b5f60e082840312156142ba575f80fd5b6142c26133fb565b90506142cd8261329f565b815260208201356001600160401b038111156142e7575f80fd5b6142f38482850161344d565b6020830152506040828101359082015261430f60608301613a48565b606082015261432060808301613a48565b608082015261433160a083016134d0565b60a082015260c08201356001600160401b0381111561434e575f80fd5b61435a8482850161344d565b60c08301525092915050565b5f805f60608486031215614378575f80fd5b83356143838161397e565b925060208401356001600160401b0381111561439d575f80fd5b613962868287016142aa565b5f80604083850312156143ba575f80fd5b82356143c58161328b565b915060208301356001600160401b038111156143df575f80fd5b61386185828601613cde565b5f60a082840312156143fb575f80fd5b614403613371565b905081356001600160401b0381111561441a575f80fd5b6144268482850161344d565b825250602082013561443781613bbf565b6020820152604082013561444a81613bbf565b604082015261445b60608301613bd3565b606082015260808201356001600160401b03811115614478575f80fd5b6144848482850161344d565b60808301525092915050565b5f80604083850312156144a1575f80fd5b82356144ac8161328b565b915060208301356001600160401b038111156144c6575f80fd5b613861858286016143eb565b5f602082840312156144e2575f80fd5b81356132c581613bbf565b5f61010082840312156144fe575f80fd5b6145066132e0565b905081356145138161328b565b815261452160208301613914565b6020820152614532604083016134e8565b6040820152614543606083016134e8565b6060820152614554608083016134e8565b608082015261456560a083016134e8565b60a082015260c0828101359082015260e09182013591810191909152919050565b5f805f6101408486031215614599575f80fd5b83356145a48161328b565b92506145b385602086016144ed565b91506101208401356139738161361a565b5f80604083850312156145d5575f80fd5b82356138b98161397e565b5f8061012083850312156145f2575f80fd5b82356145fd8161328b565b915061460c84602085016144ed565b90509250929050565b5f805f60608486031215614627575f80fd5b83356146328161328b565b925060208401356001600160401b0381111561464c575f80fd5b613962868287016136ea565b6020815261469d60208201835160ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f602083015160a08084015261361260c0840182614227565b5f80604083850312156146c7575f80fd5b82356146d28161328b565b915060208301356001600160401b038111156146ec575f80fd5b61386185828601614018565b60808101610b35828460ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f805f6060848603121561474b575f80fd5b83356147568161397e565b925060208401356001600160401b03811115614770575f80fd5b6139628682870161399e565b5f806040838503121561478d575f80fd5b82356138b981613900565b5f805f606084860312156147aa575f80fd5b83356147b58161328b565b92506020840135613b9581613ba5565b5f805f606084860312156147d7575f80fd5b83356147e28161328b565b925060208401356147f2816134be565b915060408401356001600160401b0381111561480c575f80fd5b61481886828701613bde565b9150509250925092565b5f8060408385031215614833575f80fd5b823561483e8161397e565b915060208301356001600160401b03811115614858575f80fd5b613861858286016142aa565b5f805f60608486031215614876575f80fd5b83356148818161328b565b925060208401356001600160401b0381111561489b575f80fd5b613962868287016143eb565b803562ffffff81168114610acb575f80fd5b5f60e082840312156148c9575f80fd5b6148d16133fb565b90506148dc8261329f565b81526148ea6020830161329f565b60208201526148fb604083016148a7565b604082015261490c606083016148a7565b606082015260808201356001600160401b03811115614929575f80fd5b6149358482850161344d565b60808301525060a08201356001600160401b03811115614953575f80fd5b61495f8482850161344d565b60a08301525061497160c083016134d0565b60c082015292915050565b5f805f806080858703121561498f575f80fd5b843561499a8161328b565b935060208501356149aa81613ba5565b925060408501356001600160401b038111156149c4575f80fd5b613cc2878288016148b9565b5f805f606084860312156149e2575f80fd5b83356149ed8161328b565b925060208401356149fd81613ba5565b915060408401356001600160401b03811115614a17575f80fd5b614818868287016148b9565b5f805f60608486031215614a35575f80fd5b8335614a408161361a565b92506020840135613b958161361a565b60ff1981168114612985575f80fd5b5f8060408385031215614a70575f80fd5b8235614a7b8161361a565b915060208301356138c981614a50565b5f8060408385031215614a9c575f80fd5b8235614aa78161328b565b915060208301356001600160401b03811115614ac1575f80fd5b613861858286016140f9565b5f60208284031215614add575f80fd5b5051919050565b60208152614afe6020820183516001600160601b03169052565b5f60208301516101006040840152614b1a610120840182614227565b90506040840151614b3660608501826001600160601b03169052565b506060840151838203601f19016080850152614b528282614227565b9150506080840151601f198483030160a0850152614b708282614227565b91505060a0840151614b8b60c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525b509392505050565b5f8151808452602084019350602083015f5b82811015614bef5781516001600160601b0316865260209586019590910190600101614bc8565b5093949350505050565b60208152614c0c60208201835115159052565b5f6020830151614c20604084018215159052565b50604083015160ff8116606084015250606083015160ff811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c08301516102a060e0840152614c846102c0840182614bb6565b60e085015180516101008601526020810151610120860152909150506101008401518051610140850152602081015161016085015250610120840151805161018085015260208101516101a08501525061014084015180516101c085015260208101516101e085015250610160840151805161020085015260208101516102208501525061018084015180516102408501526020810151610260850152506101a0840151805161028085015260208101516102a0850152614bae565b6001600160c01b031991909116815260200190565b602081526001600160601b0382511660208201525f60208301516040808401526136126060840182614227565b602081525f82516101206020840152614d9f610140840182614227565b90506020840151604084015260408401516060840152606084015160808401526080840151614dd660a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015180151560e08501525060e084015180151561010085015250610100840151838203601f1901610120850152614e238282614227565b95945050505050565b5f60208284031215614e3c575f80fd5b81516132c5816134db565b6020815261ffff82511660208201526001600160601b03602083015116604082015260018060a01b0360408301511660608201525f606083015160a06080840152614e9560c0840182614227565b905064ffffffffff60808501511660a08401528091505092915050565b60208152614ecc6020820183516001600160601b03169052565b5f6020830151614ee760408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c083015164ffffffffff811660e08401525060e0830151610200610100840152614f6d610220840182614227565b9050610100840151601f1984830301610120850152614f8c8282614227565b915050610120840151614fa661014085018261ffff169052565b5061014084015161ffff8116610160850152506101608401516001600160601b038116610180850152506101808401516001600160601b0381166101a0850152506101a084015164ffffffffff81166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff8116610200850152614bae565b81516001600160601b031681526102408101602083015161505660208401826001600160601b03169052565b50604083015161507160408401826001600160601b03169052565b50606083015161508c60608401826001600160601b03169052565b5060808301516150a760808401826001600160601b03169052565b5060a08301516150c260a08401826001600160601b03169052565b5060c08301516150dd60c08401826001600160601b03169052565b5060e08301516150f860e08401826001600160601b03169052565b506101008301516151156101008401826001600160601b03169052565b506101208301516151326101208401826001600160601b03169052565b5061014083015161514f6101408401826001600160601b03169052565b5061016083015161516c6101608401826001600160601b03169052565b506101808301516151896101808401826001600160601b03169052565b506101a08301516151a66101a08401826001600160601b03169052565b506101c08301516151c36101c08401826001600160601b03169052565b506101e08301516151e06101e08401826001600160601b03169052565b506102008301516151fd6102008401826001600160601b03169052565b506102208301516124d86102208401826001600160601b03169052565b602081526001600160601b0382511660208201525f602083015161524b604084018280518252602090810151910152565b50604083015160e06080840152615266610100840182614227565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f6040830151608060608401526152e260a0840182614227565b905063ffffffff60608501511660808401528091505092915050565b600181811c9082168061531257607f821691505b60208210810361533057634e487b7160e01b5f52602260045260245ffd5b50919050565b602081526001600160601b0382511660208201525f602083015160e06040840152615365610100840182614227565b90506040840151606084015263ffffffff6060850151166080840152608084015161539860a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e0850152614e238282614227565b602081525f825160a060208401526153e260c0840182614227565b60208501516001600160a01b03908116604086810191909152860151811660608087019190915286015116608080860191909152850151848203601f190160a0860152909150614e238282614227565b5f610100820190506001600160601b0383511682526001600160401b0360208401511660208301526040830151151560408301526060830151615479606084018215159052565b50608083015161548d608084018215159052565b5060a08301516154a160a084018215159052565b5060c083015160c083015260e083015160e083015292915050565b5f602082840312156154cc575f80fd5b81516132c581613bbf565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f6040830151615515606084018262ffffff169052565b50606083015162ffffff8116608084015250608083015160e060a0840152615541610100840182614227565b905060a0840151601f198483030160c085015261555e8282614227565b91505060c0840151614bae60e085018264ffffffffff169052565b5f8085851115615587575f80fd5b83861115615593575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156124d8576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6001820161563257634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f60208284031215615649575f80fd5b81516132c581613900565b5f60208284031215615664575f80fd5b81516132c58161361a565b601f821115610b1957805f5260205f20601f840160051c810160208510156156945750805b601f840160051c820191505b81811015611551575f81556001016156a0565b81516001600160401b038111156156cc576156cc6132cc565b6156e0816156da84546152fe565b8461566f565b6020601f821160018114615712575f83156156fb5750848201515b5f19600385901b1c1916600184901b178455611551565b5f84815260208120601f198516915b828110156157415787850151825560209485019460019092019101615721565b508482101561575e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561577d575f80fd5b81516132c581614a50565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b5f82518060208501845e5f920191825250919050565b5f80604083850312156157de575f80fd5b82516157e9816134db565b60208401519092506138c981613a37565b5f6020828403121561580a575f80fd5b81516132c581613a37565b5f60208284031215615825575f80fd5b81516132c58161328b565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220493564f6d9d30d89c81c051154094350f038ee86ab4207edd823e7bbb421061164736f6c634300081a0033",
         | 
| 3297 | 
            -
              "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106103a9575f3560e01c80637cd81ef8116101ea578063b0628dc311610114578063d625d758116100a9578063e9e96c7011610079578063e9e96c701461098c578063f48016ce146109c9578063f71d7ffe146109ea578063fe1f18d6146109fd575f80fd5b8063d625d7581461058c578063d78c599b14610953578063e145b68b14610966578063e80c61ed14610979575f80fd5b8063bf1db3f9116100e4578063bf1db3f9146108fa578063bf7e214f1461090d578063ca0e7f081461092d578063d3eb4e4714610940575f80fd5b8063b0628dc3146108ae578063b4d7efe2146108c1578063b6d7cd62146108d4578063bcd65e21146108e7575f80fd5b80638eb9000d1161018a578063a46eb8dc1161015a578063a46eb8dc146107e9578063a5961b4c146107fc578063a76ee01814610888578063af9025001461089b575f80fd5b80638eb9000d146107775780638fb36037146107a25780639f8151e5146107c3578063a2842229146107d6575f80fd5b80638129fc1c116101c55780638129fc1c1461073c57806381d32d6b1461058c5780638ad6e023146107445780638eaa6ac014610757575f80fd5b80637cd81ef8146107035780637cef4842146107165780637d8486fe14610729575f80fd5b806340529b0f116102d657806354f6127f1161026b57806361105e0e1161023b57806361105e0e146106b75780636fac8622146106ca5780637064ffd2146106dd5780637a9e5e4b146106f0575f80fd5b806354f6127f146106115780635a8416b0146106315780635d4345cc146104935780635eede17414610644575f80fd5b8063533086d4116102a6578063533086d4146105c557806353ebe129146105d857806354e5618e146105eb57806354f1fa81146105fe575f80fd5b806340529b0f14610579578063425d08e21461058c5780634d4a7ae91461059f57806351dd844b146105b2575f80fd5b8063248a77dd1161034c57806330a130ba1161031c57806330a130ba1461051d578063353e5b751461053057806338a699a4146105435780633c3f8d0e14610566575f80fd5b8063248a77dd146104d1578063275c0595146104e45780632ae5819d146104f75780632f61088a1461050a575f80fd5b806309648a9d1161038757806309648a9d146104355780630d3581811461046e5780630fad0eb114610493578063228e42ec146104a6575f80fd5b80630232ca49146103ad5780630632b17d146103f557806308c253c614610420575b5f80fd5b6103d86103bb3660046132aa565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b6104086104033660046135e1565b610a10565b6040516001600160401b0390911681526020016103ec565b61043361042e36600461381f565b610ad0565b005b61045c61044336600461386b565b5f90815260076020526040902054610100900460ff1690565b60405160ff90911681526020016103ec565b61045c61047c366004613882565b60ff9081165f908152602081905260409020541690565b6104336104a136600461389d565b610afc565b6103d86104b43660046132aa565b6001600160601b039081165f908152600260205260409020541690565b6103d86104df3660046138d4565b610b1e565b6104336104f236600461391f565b610b3b565b61043361050536600461389d565b610be8565b6104336105183660046139f5565b610bff565b61043361052b366004613b26565b610c9d565b61043361053e366004613b68565b610d3b565b61055661055136600461386b565b610d57565b60405190151581526020016103ec565b610433610574366004613c6e565b610ddf565b61043361058736600461389d565b610e06565b61043361059a366004613e4b565b610e1d565b6104336105ad366004613e8e565b610e45565b6104336105c03660046140b6565b610e6d565b6103d86105d33660046138d4565b610e95565b6103d86105e63660046138d4565b610ea9565b6104336105f9366004614196565b610ebd565b61043361060c3660046141d9565b610ee5565b61062461061f36600461386b565b61103d565b6040516103ec9190614255565b61043361063f366004614267565b6110df565b61068d6106523660046132aa565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016103ec565b6104336106c5366004614366565b61117d565b6104336106d83660046143a9565b61121b565b6104336106eb366004614490565b61124c565b6104336106fe3660046144d2565b61127d565b610433610711366004614586565b6112ff565b6104336107243660046145c4565b611327565b6104336107373660046145e0565b6113b4565b6104336113dc565b610433610752366004614615565b611558565b61076a61076536600461386b565b611580565b6040516103ec9190614658565b6103d86107853660046132aa565b6001600160601b039081165f908152600360205260409020541690565b6107aa6116a1565b6040516001600160e01b031990911681526020016103ec565b6103d86107d13660046138d4565b6116d7565b6104336107e43660046145c4565b6116eb565b6104336107f73660046146b6565b611739565b61087b61080a36600461386b565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b6040516103ec91906146f8565b610433610896366004614739565b61176a565b6104336108a93660046145c4565b611808565b6103d86108bc3660046138d4565b611856565b6104336108cf36600461477c565b61186a565b6104336108e2366004614798565b6118b7565b6104336108f53660046147c5565b6118cd565b610556610908366004613882565b6118f4565b610915611940565b6040516001600160a01b0390911681526020016103ec565b61043361093b366004614822565b61195b565b61043361094e366004614864565b6119f9565b61043361096136600461497c565b611a21565b6104336109743660046149d0565b611a48565b6103d86109873660046138d4565b611a6f565b61055661099a366004614a23565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6109dc6109d7366004614a5f565b611a83565b6040519081526020016103ec565b6104336109f8366004614a8b565b611b04565b610433610a0b36600461389d565b611b35565b5f610a1d335b5f36611b4c565b610a25611c4a565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610acb9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610a82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa69190614acd565b83604051602001610ab79190614ae4565b604051602081830303815290604052611cda565b919050565b610ad933610a16565b610af8610ae783600c61209e565b82604051602001610ab79190614bf9565b5050565b610b0533610a16565b610b19610b1383601561209e565b826120e9565b505050565b5f610b2833610a16565b610b3283836123e6565b90505b92915050565b610b4433610a16565b604051630f37f38f60e41b81526001600160401b0384166004820152610b199073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610b9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc29190614acd565b83604051602001610bd39190614ae4565b604051602081830303815290604052836124df565b610bf133610a16565b610b19610b1383601661209e565b610c0833610a16565b6040516355ee627560e01b8152610af89073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590610c4d906001600160c01b0319871690600401614d40565b602060405180830381865af4158015610c68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8c9190614acd565b82604051602001610ab79190614d55565b610ca633610a16565b6040516355ee627560e01b8152610af89073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610ceb906001600160c01b0319871690600401614d40565b602060405180830381865af4158015610d06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2a9190614acd565b82604051602001610ab79190614d82565b610d4433610a16565b610d51610b138484612655565b50505050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610dbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b359190614e2c565b610de833610a16565b610d51610df58585612655565b83604051602001610bd39190614e47565b610e0f33610a16565b610b19610b1383601d61209e565b610e2633610a16565b610b19610e3484601561209e565b83604051602001610bd39190614eb2565b610e4e33610a16565b610af8610e5c83601661209e565b82604051602001610ab7919061502a565b610e7633610a16565b610b19610e8484601f61209e565b83604051602001610bd3919061521a565b5f610e9f33610a16565b610b3283836126a4565b5f610eb333610a16565b610b328383612785565b610ec633610a16565b610b19610ed484601d61209e565b83604051602001610bd391906152a5565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015610f47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f6b9190614e2c565b15610f995760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff80851690831614610fda5760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401610f90565b60ff8084165f90815260016020908152604080832088851684528252808320858516845290915290205416610d515760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401610f90565b5f81815260076020526040902060010180546060919061105c906152fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611088906152fe565b80156110d35780601f106110aa576101008083540402835291602001916110d3565b820191905f5260205f20905b8154815290600101906020018083116110b657829003601f168201915b50505050509050919050565b6110e833610a16565b6040516355ee627560e01b8152610b199073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee62759061112d906001600160c01b0319881690600401614d40565b602060405180830381865af4158015611148573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116c9190614acd565b83604051602001610bd39190614d82565b61118633610a16565b6040516355ee627560e01b8152610b199073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906111cb906001600160c01b0319881690600401614d40565b602060405180830381865af41580156111e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061120a9190614acd565b83604051602001610bd39190615336565b61122433610a16565b61122d82612866565b610af861123b83601561209e565b82604051602001610ab79190614eb2565b61125533610a16565b61125e82612866565b610af861126c83600b61209e565b82604051602001610ab791906153c7565b33611286611940565b6001600160a01b0316816001600160a01b0316146112c15760405162d1953b60e31b81526001600160a01b0382166004820152602401610f90565b816001600160a01b03163b5f036112f6576040516361798f2f60e11b81526001600160a01b0383166004820152602401610f90565b610af882612914565b61130833610a16565b610b1961131684600f61209e565b83604051602001610bd39190615432565b61133033610a16565b6040516355ee627560e01b8152610b199073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611375906001600160c01b0319871690600401614d40565b602060405180830381865af4158015611390573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b139190614acd565b6113bd33610a16565b610af86113cb83600f61209e565b82604051602001610ab79190615432565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156114205750825b90505f826001600160401b0316600114801561143b5750303b155b905081158015611449575080155b156114675760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561149157845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f691906154bc565b905061150181612974565b611509612988565b5050831561155157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b61156133610a16565b610b1961156f84600c61209e565b83604051602001610bd39190614bf9565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161161a906152fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611646906152fe565b80156116915780601f1061166857610100808354040283529160200191611691565b820191905f5260205f20905b81548152906001019060200180831161167457829003601f168201915b5050505050815250509050919050565b5f8051602061584583398151915280545f9190600160a01b900460ff166116c8575f6116d1565b638fb3603760e01b5b91505090565b5f6116e133610a16565b610b32838361299a565b6116f433610a16565b6040516355ee627560e01b8152610b199073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611375906001600160c01b0319871690600401614d40565b61174233610a16565b61174b82612866565b610af861175983601f61209e565b82604051602001610ab7919061521a565b61177333610a16565b6040516355ee627560e01b8152610b199073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906117b8906001600160c01b0319881690600401614d40565b602060405180830381865af41580156117d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117f79190614acd565b83604051602001610bd39190614d55565b61181133610a16565b6040516355ee627560e01b8152610b199073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611375906001600160c01b0319871690600401614d40565b5f61186033610a16565b610b328383612a7b565b61187333610a16565b604051630f37f38f60e41b81526001600160401b0383166004820152610b199073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401611375565b6118c033610a16565b610d51610b138484612b5c565b6118d633610a16565b610b196118e38484612655565b82604051602001610ab79190614e47565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610da0565b5f80516020615845833981519152546001600160a01b031690565b61196433610a16565b6040516355ee627560e01b8152610af89073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906119a9906001600160c01b0319871690600401614d40565b602060405180830381865af41580156119c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e89190614acd565b82604051602001610ab79190615336565b611a0233610a16565b610b19611a1084600b61209e565b83604051602001610bd391906153c7565b611a2a33610a16565b610d51611a378585612b5c565b83604051602001610bd391906154d7565b611a5133610a16565b610b19611a5e8484612b5c565b82604051602001610ab791906154d7565b5f611a7933610a16565b610b328383612ba8565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611ae0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b329190614acd565b611b0d33610a16565b611b1682612866565b610af8611b2483601d61209e565b82604051602001610ab791906152a5565b611b3e33610a16565b610b19610b1383601f61209e565b5f805160206158458339815191525f80611b84611b67611940565b8730611b7660045f8a8c615579565b611b7f916155a0565b612c89565b9150915081611c425763ffffffff811615611c1f57825460ff60a01b1916600160a01b178355611bb2611940565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611be1939291906155d6565b5f604051808303815f87803b158015611bf8575f80fd5b505af1158015611c0a573d5f803e3d5ffd5b5050845460ff60a01b1916855550611c429050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610f90565b505050505050565b600880545f9182611c5a83615615565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611cb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cd59190615639565b905090565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d4e9190615654565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611da1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc59190614e2c565b15611de8576040516307014a8d60e51b815260ff82166004820152602401610f90565b5f83815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611e4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e729190614e2c565b15611e9c57604051633f92eac960e21b81526004810185905260ff83166024820152604401610f90565b611ea5826118f4565b611ec757604051636cb0978b60e11b815260ff83166004820152602401610f90565b5f611ed0612d91565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784555f878152600760205260409020909150600101611f5a86826156b3565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611fcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fef9190615654565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af415801561203d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612061919061576d565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611ac5565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561213b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215f9190614e2c565b156121805760405163093b89e160e11b815260048101849052602401610f90565b505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121f6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061221a9190614e2c565b1561223b5760405163566ebf7960e01b815260048101869052602401610f90565b60ff808516146123b857815461225790829060ff168187610ee5565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156122d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122fd9190615654565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af415801561234b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061236f919061576d565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b6123c0612d91565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b6001600160601b0382165f90815260056020526040812054839060ff1661242b57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f9081526003602052604090205461244f911684612dfd565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916124c79187918791879163ffffffff90911690615788565b60405180910390a16124d884612e82565b5092915050565b5f6124ea84836120e9565b5f85815260076020526040902090915060010161250784826156b3565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612578573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061259c9190615654565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156125ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061260e919061576d565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611ac5565b6001600160601b0382165f90815260056020526040812054839060ff166126e957604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f9081526004602052604090205461270d911684612f1f565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916124c79187918791879163ffffffff90911690615788565b6001600160601b0382165f90815260056020526040812054839060ff166127ca57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f908152600360205260409020546127ee911684612f1f565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916124c79187918791879163ffffffff90911690615788565b6001600160601b0381165f9081526005602052604090205460ff16156128aa576040516314d5804160e01b81526001600160601b0382166004820152602401610f90565b6001600160601b0381165f908152600560205260409020805460ff191660011790556128d581612e82565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b5f8051602061584583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61297c612f69565b61298581612fb2565b50565b612990612f69565b612998612fc3565b565b6001600160601b0382165f90815260056020526040812054839060ff166129df57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f90815260026020526040902054612a03911684612dfd565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916124c79187918791879163ffffffff90911690615788565b6001600160601b0382165f90815260056020526040812054839060ff16612ac057604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f90815260026020526040902054612ae4911684612f1f565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916124c79187918791879163ffffffff90911690615788565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611ac5565b6001600160601b0382165f90815260056020526040812054839060ff16612bed57604051631e94ffd760e11b81526001600160601b0382166004820152602401610f90565b6001600160601b038085165f90815260046020526040902054612c11911684612dfd565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916124c79187918791879163ffffffff90911690615788565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612cf791906157b7565b5f60405180830381855afa9150503d805f8114612d2f576040519150601f19603f3d011682016040523d82523d5f602084013e612d34565b606091505b50915091508115612d86576040815110612d665780806020019051810190612d5c91906157cd565b9094509250612d86565b6020815110612d865780806020019051810190612d839190614e2c565b93505b505094509492505050565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612dd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cd591906157fa565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612e5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b329190615815565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612ec9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eed91906157fa565b6001600160601b03919091165f908152600660205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612e43565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661299857604051631afcd79f60e31b815260040160405180910390fd5b612fba612f69565b61298581612914565b612fcb61301b565b612fd3613061565b612fdb61308e565b612fe36130d1565b612feb6130ed565b612ff361311f565b612ffb613133565b61300361315b565b61300b61319c565b6130136131a6565b6129986131b0565b613028601f5b60056131d8565b613037601f5b6005606e61321a565b613046601f60055b60c861321a565b613055601f5b606e600561321a565b612998601f606e61303f565b61306b600b613021565b613075600b61302e565b61307f600b61304c565b612998600b5b606e60d261321a565b61309a6015600a6131d8565b6130a86015600a601461321a565b6130b76015600a5b601e61321a565b6130c56015600a602861321a565b6129986015602861303f565b6130de60165b603c6131d8565b61299860165b603c60dc61321a565b6130f9601760326131d8565b61310760176032603361321a565b613113601760326130b0565b6129986017603361303f565b61312960186130d7565b61299860186130e4565b61313d6019613021565b613147601961302e565b613151601961304c565b6129986019613085565b613165601b613021565b613174601b60055b604661321a565b613182601b6005600761321a565b61318e601b600761316d565b612998601b6005604861321a565b612998600f613021565b612998600c613021565b6131ba600e613021565b6131c4601d613021565b6131ce601c613021565b612998601e613021565b60ff8281165f9081526020819052604090205416156131f9576131f9615830565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561325257613252615830565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b0381168114612985575f80fd5b8035610acb8161328b565b5f602082840312156132ba575f80fd5b81356132c58161328b565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b0381118282101715613303576133036132cc565b60405290565b604080519081016001600160401b0381118282101715613303576133036132cc565b6040516101c081016001600160401b0381118282101715613303576133036132cc565b60405161012081016001600160401b0381118282101715613303576133036132cc565b60405160a081016001600160401b0381118282101715613303576133036132cc565b60405161020081016001600160401b0381118282101715613303576133036132cc565b60405161024081016001600160401b0381118282101715613303576133036132cc565b60405160c081016001600160401b0381118282101715613303576133036132cc565b60405160e081016001600160401b0381118282101715613303576133036132cc565b604051601f8201601f191681016001600160401b0381118282101715613445576134456132cc565b604052919050565b5f82601f83011261345c575f80fd5b8135602083015f806001600160401b0384111561347b5761347b6132cc565b50601f8301601f19166020016134908161341d565b9150508281528583830111156134a4575f80fd5b828260208301375f92810160200192909252509392505050565b64ffffffffff81168114612985575f80fd5b8035610acb816134be565b8015158114612985575f80fd5b8035610acb816134db565b5f6101008284031215613504575f80fd5b61350c6132e0565b90506135178261329f565b815260208201356001600160401b03811115613531575f80fd5b61353d8482850161344d565b60208301525061354f6040830161329f565b604082015260608201356001600160401b0381111561356c575f80fd5b6135788482850161344d565b60608301525060808201356001600160401b03811115613596575f80fd5b6135a28482850161344d565b6080830152506135b460a083016134d0565b60a08201526135c560c083016134d0565b60c08201526135d660e083016134e8565b60e082015292915050565b5f602082840312156135f1575f80fd5b81356001600160401b03811115613606575f80fd5b613612848285016134f3565b949350505050565b60ff81168114612985575f80fd5b8035610acb8161361a565b5f82601f830112613642575f80fd5b81356001600160401b0381111561365b5761365b6132cc565b8060051b61366b6020820161341d565b91825260208185018101929081019086841115613686575f80fd5b6020860192505b838310156136b15782356136a08161328b565b82526020928301929091019061368d565b9695505050505050565b5f604082840312156136cb575f80fd5b6136d3613309565b823581526020928301359281019290925250919050565b5f6102a082840312156136fb575f80fd5b61370361332b565b905061370e826134e8565b815261371c602083016134e8565b602082015261372d60408301613628565b604082015261373e60608301613628565b606082015261374f6080830161329f565b608082015261376060a0830161329f565b60a082015260c08201356001600160401b0381111561377d575f80fd5b61378984828501613633565b60c08301525061379c8360e084016136bb565b60e08201526137af8361012084016136bb565b6101008201526137c38361016084016136bb565b6101208201526137d7836101a084016136bb565b6101408201526137eb836101e084016136bb565b6101608201526137ff8361022084016136bb565b6101808201526138138361026084016136bb565b6101a082015292915050565b5f8060408385031215613830575f80fd5b823561383b8161328b565b915060208301356001600160401b03811115613855575f80fd5b613861858286016136ea565b9150509250929050565b5f6020828403121561387b575f80fd5b5035919050565b5f60208284031215613892575f80fd5b81356132c58161361a565b5f80604083850312156138ae575f80fd5b82356138b98161328b565b915060208301356138c98161361a565b809150509250929050565b5f80604083850312156138e5575f80fd5b82356138f08161328b565b915060208301356138c98161328b565b6001600160401b0381168114612985575f80fd5b8035610acb81613900565b5f805f60608486031215613931575f80fd5b833561393c81613900565b925060208401356001600160401b03811115613956575f80fd5b613962868287016134f3565b92505060408401356139738161361a565b809150509250925092565b6001600160c01b031981168114612985575f80fd5b8035610acb8161397e565b5f604082840312156139ae575f80fd5b6139b6613309565b905081356139c38161328b565b815260208201356001600160401b038111156139dd575f80fd5b6139e98482850161344d565b60208301525092915050565b5f8060408385031215613a06575f80fd5b8235613a118161397e565b915060208301356001600160401b03811115613a2b575f80fd5b6138618582860161399e565b63ffffffff81168114612985575f80fd5b8035610acb81613a37565b5f6101208284031215613a64575f80fd5b613a6c61334e565b905081356001600160401b03811115613a83575f80fd5b613a8f8482850161344d565b825250602082810135908201526040808301359082015260608083013590820152613abc60808301613a48565b6080820152613acd60a08301613a48565b60a0820152613ade60c083016134e8565b60c0820152613aef60e083016134e8565b60e08201526101008201356001600160401b03811115613b0d575f80fd5b613b198482850161344d565b6101008301525092915050565b5f8060408385031215613b37575f80fd5b8235613b428161397e565b915060208301356001600160401b03811115613b5c575f80fd5b61386185828601613a53565b5f805f60608486031215613b7a575f80fd5b8335613b858161328b565b92506020840135613b95816134be565b915060408401356139738161361a565b61ffff81168114612985575f80fd5b8035610acb81613ba5565b6001600160a01b0381168114612985575f80fd5b8035610acb81613bbf565b5f60a08284031215613bee575f80fd5b613bf6613371565b90508135613c0381613ba5565b81526020820135613c138161328b565b60208201526040820135613c2681613bbf565b604082015260608201356001600160401b03811115613c43575f80fd5b613c4f8482850161344d565b6060830152506080820135613c63816134be565b608082015292915050565b5f805f8060808587031215613c81575f80fd5b8435613c8c8161328b565b93506020850135613c9c816134be565b925060408501356001600160401b03811115613cb6575f80fd5b613cc287828801613bde565b9250506060850135613cd38161361a565b939692955090935050565b5f6102008284031215613cef575f80fd5b613cf7613393565b9050613d028261329f565b8152613d106020830161329f565b6020820152613d2160408301613993565b6040820152613d3260608301613993565b6060820152613d436080830161329f565b6080820152613d5460a0830161329f565b60a0820152613d6560c083016134d0565b60c082015260e08201356001600160401b03811115613d82575f80fd5b613d8e8482850161344d565b60e0830152506101008201356001600160401b03811115613dad575f80fd5b613db98482850161344d565b61010083015250613dcd6101208301613bb4565b610120820152613de06101408301613bb4565b610140820152613df3610160830161329f565b610160820152613e06610180830161329f565b610180820152613e196101a083016134d0565b6101a0820152613e2c6101c083016134d0565b6101c0820152613e3f6101e083016134d0565b6101e082015292915050565b5f805f60608486031215613e5d575f80fd5b8335613e688161328b565b925060208401356001600160401b03811115613e82575f80fd5b61396286828701613cde565b5f80828403610260811215613ea1575f80fd5b8335613eac8161328b565b9250610240601f1982011215613ec0575f80fd5b50613ec96133b6565b613ed56020850161329f565b8152613ee36040850161329f565b6020820152613ef46060850161329f565b6040820152613f056080850161329f565b6060820152613f1660a0850161329f565b6080820152613f2760c0850161329f565b60a0820152613f3860e0850161329f565b60c0820152613f4a610100850161329f565b60e0820152613f5c610120850161329f565b610100820152613f6f610140850161329f565b610120820152613f82610160850161329f565b610140820152613f95610180850161329f565b610160820152613fa86101a0850161329f565b610180820152613fbb6101c0850161329f565b6101a0820152613fce6101e0850161329f565b6101c0820152613fe1610200850161329f565b6101e0820152613ff4610220850161329f565b610200820152614007610240850161329f565b610220820152809150509250929050565b5f60e08284031215614028575f80fd5b6140306133d9565b9050813561403d8161328b565b815261404c83602084016136bb565b602082015260608201356001600160401b03811115614069575f80fd5b6140758482850161344d565b6040830152506080820135614089816134be565b606082015261409a60a083016134d0565b60808201526140ab60c083016134d0565b60a082015292915050565b5f805f606084860312156140c8575f80fd5b83356140d38161328b565b925060208401356001600160401b038111156140ed575f80fd5b61396286828701614018565b5f60808284031215614109575f80fd5b604051608081016001600160401b038111828210171561412b5761412b6132cc565b604052905080823561413c8161397e565b8152602083013561414c816134db565b602082015260408301356001600160401b03811115614169575f80fd5b6141758582860161344d565b604083015250606083013561418981613a37565b6060919091015292915050565b5f805f606084860312156141a8575f80fd5b83356141b38161328b565b925060208401356001600160401b038111156141cd575f80fd5b613962868287016140f9565b5f805f80608085870312156141ec575f80fd5b84356141f78161361a565b935060208501356142078161361a565b925060408501356142178161361a565b91506060850135613cd38161361a565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b326020830184614227565b5f805f60608486031215614279575f80fd5b83356142848161397e565b925060208401356001600160401b0381111561429e575f80fd5b61396286828701613a53565b5f60e082840312156142ba575f80fd5b6142c26133fb565b90506142cd8261329f565b815260208201356001600160401b038111156142e7575f80fd5b6142f38482850161344d565b6020830152506040828101359082015261430f60608301613a48565b606082015261432060808301613a48565b608082015261433160a083016134d0565b60a082015260c08201356001600160401b0381111561434e575f80fd5b61435a8482850161344d565b60c08301525092915050565b5f805f60608486031215614378575f80fd5b83356143838161397e565b925060208401356001600160401b0381111561439d575f80fd5b613962868287016142aa565b5f80604083850312156143ba575f80fd5b82356143c58161328b565b915060208301356001600160401b038111156143df575f80fd5b61386185828601613cde565b5f60a082840312156143fb575f80fd5b614403613371565b905081356001600160401b0381111561441a575f80fd5b6144268482850161344d565b825250602082013561443781613bbf565b6020820152604082013561444a81613bbf565b604082015261445b60608301613bd3565b606082015260808201356001600160401b03811115614478575f80fd5b6144848482850161344d565b60808301525092915050565b5f80604083850312156144a1575f80fd5b82356144ac8161328b565b915060208301356001600160401b038111156144c6575f80fd5b613861858286016143eb565b5f602082840312156144e2575f80fd5b81356132c581613bbf565b5f61010082840312156144fe575f80fd5b6145066132e0565b905081356145138161328b565b815261452160208301613914565b6020820152614532604083016134e8565b6040820152614543606083016134e8565b6060820152614554608083016134e8565b608082015261456560a083016134e8565b60a082015260c0828101359082015260e09182013591810191909152919050565b5f805f6101408486031215614599575f80fd5b83356145a48161328b565b92506145b385602086016144ed565b91506101208401356139738161361a565b5f80604083850312156145d5575f80fd5b82356138b98161397e565b5f8061012083850312156145f2575f80fd5b82356145fd8161328b565b915061460c84602085016144ed565b90509250929050565b5f805f60608486031215614627575f80fd5b83356146328161328b565b925060208401356001600160401b0381111561464c575f80fd5b613962868287016136ea565b6020815261469d60208201835160ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f602083015160a08084015261361260c0840182614227565b5f80604083850312156146c7575f80fd5b82356146d28161328b565b915060208301356001600160401b038111156146ec575f80fd5b61386185828601614018565b60808101610b35828460ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f805f6060848603121561474b575f80fd5b83356147568161397e565b925060208401356001600160401b03811115614770575f80fd5b6139628682870161399e565b5f806040838503121561478d575f80fd5b82356138b981613900565b5f805f606084860312156147aa575f80fd5b83356147b58161328b565b92506020840135613b9581613ba5565b5f805f606084860312156147d7575f80fd5b83356147e28161328b565b925060208401356147f2816134be565b915060408401356001600160401b0381111561480c575f80fd5b61481886828701613bde565b9150509250925092565b5f8060408385031215614833575f80fd5b823561483e8161397e565b915060208301356001600160401b03811115614858575f80fd5b613861858286016142aa565b5f805f60608486031215614876575f80fd5b83356148818161328b565b925060208401356001600160401b0381111561489b575f80fd5b613962868287016143eb565b803562ffffff81168114610acb575f80fd5b5f60e082840312156148c9575f80fd5b6148d16133fb565b90506148dc8261329f565b81526148ea6020830161329f565b60208201526148fb604083016148a7565b604082015261490c606083016148a7565b606082015260808201356001600160401b03811115614929575f80fd5b6149358482850161344d565b60808301525060a08201356001600160401b03811115614953575f80fd5b61495f8482850161344d565b60a08301525061497160c083016134d0565b60c082015292915050565b5f805f806080858703121561498f575f80fd5b843561499a8161328b565b935060208501356149aa81613ba5565b925060408501356001600160401b038111156149c4575f80fd5b613cc2878288016148b9565b5f805f606084860312156149e2575f80fd5b83356149ed8161328b565b925060208401356149fd81613ba5565b915060408401356001600160401b03811115614a17575f80fd5b614818868287016148b9565b5f805f60608486031215614a35575f80fd5b8335614a408161361a565b92506020840135613b958161361a565b60ff1981168114612985575f80fd5b5f8060408385031215614a70575f80fd5b8235614a7b8161361a565b915060208301356138c981614a50565b5f8060408385031215614a9c575f80fd5b8235614aa78161328b565b915060208301356001600160401b03811115614ac1575f80fd5b613861858286016140f9565b5f60208284031215614add575f80fd5b5051919050565b60208152614afe6020820183516001600160601b03169052565b5f60208301516101006040840152614b1a610120840182614227565b90506040840151614b3660608501826001600160601b03169052565b506060840151838203601f19016080850152614b528282614227565b9150506080840151601f198483030160a0850152614b708282614227565b91505060a0840151614b8b60c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525b509392505050565b5f8151808452602084019350602083015f5b82811015614bef5781516001600160601b0316865260209586019590910190600101614bc8565b5093949350505050565b60208152614c0c60208201835115159052565b5f6020830151614c20604084018215159052565b50604083015160ff8116606084015250606083015160ff811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c08301516102a060e0840152614c846102c0840182614bb6565b60e085015180516101008601526020810151610120860152909150506101008401518051610140850152602081015161016085015250610120840151805161018085015260208101516101a08501525061014084015180516101c085015260208101516101e085015250610160840151805161020085015260208101516102208501525061018084015180516102408501526020810151610260850152506101a0840151805161028085015260208101516102a0850152614bae565b6001600160c01b031991909116815260200190565b602081526001600160601b0382511660208201525f60208301516040808401526136126060840182614227565b602081525f82516101206020840152614d9f610140840182614227565b90506020840151604084015260408401516060840152606084015160808401526080840151614dd660a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015180151560e08501525060e084015180151561010085015250610100840151838203601f1901610120850152614e238282614227565b95945050505050565b5f60208284031215614e3c575f80fd5b81516132c5816134db565b6020815261ffff82511660208201526001600160601b03602083015116604082015260018060a01b0360408301511660608201525f606083015160a06080840152614e9560c0840182614227565b905064ffffffffff60808501511660a08401528091505092915050565b60208152614ecc6020820183516001600160601b03169052565b5f6020830151614ee760408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c083015164ffffffffff811660e08401525060e0830151610200610100840152614f6d610220840182614227565b9050610100840151601f1984830301610120850152614f8c8282614227565b915050610120840151614fa661014085018261ffff169052565b5061014084015161ffff8116610160850152506101608401516001600160601b038116610180850152506101808401516001600160601b0381166101a0850152506101a084015164ffffffffff81166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff8116610200850152614bae565b81516001600160601b031681526102408101602083015161505660208401826001600160601b03169052565b50604083015161507160408401826001600160601b03169052565b50606083015161508c60608401826001600160601b03169052565b5060808301516150a760808401826001600160601b03169052565b5060a08301516150c260a08401826001600160601b03169052565b5060c08301516150dd60c08401826001600160601b03169052565b5060e08301516150f860e08401826001600160601b03169052565b506101008301516151156101008401826001600160601b03169052565b506101208301516151326101208401826001600160601b03169052565b5061014083015161514f6101408401826001600160601b03169052565b5061016083015161516c6101608401826001600160601b03169052565b506101808301516151896101808401826001600160601b03169052565b506101a08301516151a66101a08401826001600160601b03169052565b506101c08301516151c36101c08401826001600160601b03169052565b506101e08301516151e06101e08401826001600160601b03169052565b506102008301516151fd6102008401826001600160601b03169052565b506102208301516124d86102208401826001600160601b03169052565b602081526001600160601b0382511660208201525f602083015161524b604084018280518252602090810151910152565b50604083015160e06080840152615266610100840182614227565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f6040830151608060608401526152e260a0840182614227565b905063ffffffff60608501511660808401528091505092915050565b600181811c9082168061531257607f821691505b60208210810361533057634e487b7160e01b5f52602260045260245ffd5b50919050565b602081526001600160601b0382511660208201525f602083015160e06040840152615365610100840182614227565b90506040840151606084015263ffffffff6060850151166080840152608084015161539860a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e0850152614e238282614227565b602081525f825160a060208401526153e260c0840182614227565b60208501516001600160a01b03908116604086810191909152860151811660608087019190915286015116608080860191909152850151848203601f190160a0860152909150614e238282614227565b5f610100820190506001600160601b0383511682526001600160401b0360208401511660208301526040830151151560408301526060830151615479606084018215159052565b50608083015161548d608084018215159052565b5060a08301516154a160a084018215159052565b5060c083015160c083015260e083015160e083015292915050565b5f602082840312156154cc575f80fd5b81516132c581613bbf565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f6040830151615515606084018262ffffff169052565b50606083015162ffffff8116608084015250608083015160e060a0840152615541610100840182614227565b905060a0840151601f198483030160c085015261555e8282614227565b91505060c0840151614bae60e085018264ffffffffff169052565b5f8085851115615587575f80fd5b83861115615593575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156124d8576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6001820161563257634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f60208284031215615649575f80fd5b81516132c581613900565b5f60208284031215615664575f80fd5b81516132c58161361a565b601f821115610b1957805f5260205f20601f840160051c810160208510156156945750805b601f840160051c820191505b81811015611551575f81556001016156a0565b81516001600160401b038111156156cc576156cc6132cc565b6156e0816156da84546152fe565b8461566f565b6020601f821160018114615712575f83156156fb5750848201515b5f19600385901b1c1916600184901b178455611551565b5f84815260208120601f198516915b828110156157415787850151825560209485019460019092019101615721565b508482101561575e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6020828403121561577d575f80fd5b81516132c581614a50565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b5f82518060208501845e5f920191825250919050565b5f80604083850312156157de575f80fd5b82516157e9816134db565b60208401519092506138c981613a37565b5f6020828403121561580a575f80fd5b81516132c581613a37565b5f60208284031215615825575f80fd5b81516132c58161328b565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220493564f6d9d30d89c81c051154094350f038ee86ab4207edd823e7bbb421061164736f6c634300081a0033",
         | 
| 2681 | 
            +
              "bytecode": "0x60806040525f6006553480156012575f80fd5b506159b7806100205f395ff3fe608060405234801561000f575f80fd5b5060043610610297575f3560e01c80637d417f0d11610161578063b4d7efe2116100ca578063e9e96c7011610084578063e9e96c70146107b5578063f0ea17c3146107f2578063f48016ce14610812578063f9b3fe3c14610833578063fe1f18d614610846578063febe92af14610859575f80fd5b8063b4d7efe214610729578063bf1db3f91461073c578063bf7e214f1461074f578063d06458c61461076f578063d7719f461461078f578063e80c61ed146107a2575f80fd5b80639f8151e51161011b5780639f8151e514610633578063a284222914610646578063a5961b4c14610659578063af902500146106f0578063b0628dc314610703578063b1d7d56814610716575f80fd5b80637d417f0d146105a65780638129fc1c146105b95780638eb9000d146105c15780638fb36037146105ec578063962605591461060d57806396f4df2f14610620575f80fd5b806340529b0f1161020357806353ebe129116101bd57806353ebe129146104c757806354f1fa81146104da57806357f80bbf146104ed5780635eede1741461050d578063733044ca146105805780637a9e5e4b14610593575f80fd5b806340529b0f146104485780634793b4ab1461045b578063490840b41461047b5780634a8243921461048e5780634bb2d197146104a1578063533086d4146104b4575f80fd5b8063248a77dd11610254578063248a77dd146103a157806327b1d792146103b45780632bce2d7c146103d45780633048cb3c146103e757806334777712146103fa57806338a699a414610425575f80fd5b80630232ca491461029b57806308077cd9146102e357806309648a9d146102f85780630d358181146103315780631d3be47714610356578063228e42ec14610376575b5f80fd5b6102c66102a9366004614487565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b6102f66102f136600461471f565b610879565b005b61031f61030636600461477e565b5f90815260076020526040902054610100900460ff1690565b60405160ff90911681526020016102da565b61031f61033f366004614795565b60ff9081165f908152602081905260409020541690565b6103696103643660046147c5565b6109c0565b6040516102da919061480e565b6102c6610384366004614487565b6001600160601b039081165f908152600260205260409020541690565b6102c66103af3660046148cc565b610c34565b6103c76103c2366004614487565b610c4f565b6040516102da9190614903565b6102f66103e2366004614a27565b610ce9565b6102f66103f5366004614ab6565b610dc3565b61040d610408366004614be7565b610e6d565b6040516001600160401b0390911681526020016102da565b61043861043336600461477e565b61105f565b60405190151581526020016102da565b6102f6610456366004614c18565b6110ed565b61046e610469366004614487565b61115c565b6040516102da9190614c44565b6102f6610489366004614d6d565b61124f565b6102f661049c366004614e35565b611395565b6102f66104af366004614f7c565b61157e565b6102c66104c23660046148cc565b611764565b6102c66104d53660046148cc565b611778565b6102f66104e8366004614fbe565b61178c565b6105006104fb366004614487565b6118ea565b6040516102da9190615017565b61055661051b366004614487565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016102da565b6102f661058e3660046150aa565b6119cb565b6102f66105a13660046150ed565b611b82565b6102f66105b4366004615108565b611c08565b6102f6611e5e565b6102c66105cf366004614487565b6001600160601b039081165f908152600360205260409020541690565b6105f4611fd6565b6040516001600160e01b031990911681526020016102da565b6102f661061b36600461514b565b61200c565b6102f661062e36600461518e565b6121cd565b6102c66106413660046148cc565b6122e5565b6102f66106543660046151cc565b6122f9565b6106bf61066736600461477e565b60408051606080820183525f80835260208084018290529284018190529384526007825292829020825193840183525460ff80821685526101008204169184019190915262010000900464ffffffffff169082015290565b60408051825160ff9081168252602080850151909116908201529181015164ffffffffff16908201526060016102da565b6102f66106fe3660046151cc565b6123cf565b6102c66107113660046148cc565b6124a5565b6102f66107243660046151e8565b6124b9565b6102f661073736600461522a565b612568565b61043861074a366004614795565b612638565b610757612684565b6040516001600160a01b0390911681526020016102da565b61078261077d3660046147c5565b61269f565b6040516102da9190615246565b6102f661079d366004615324565b6128be565b6102c66107b03660046148cc565b6129f8565b6104386107c3366004615366565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b610805610800366004614487565b612a0c565b6040516102da91906153a3565b6108256108203660046153df565b612af0565b6040519081526020016102da565b6102f6610841366004615411565b612b71565b6102f6610854366004614c18565b612c51565b61086c610867366004615453565b612cb1565b6040516102da919061546e565b610885335b5f36612e82565b5f610891846016612f80565b90505f8061089f8385612fcb565b5f858152600d602090815260409182902089518154838c0151948c015160608d01516001600160601b03908116600160781b026bffffffffffffffffffffffff60781b1964ffffffffff938416600160501b0216600160501b600160d81b0319988416650100000000000269ffffffffffffffffffff19909516939095169290921792909217959095169190911793909317815560808a01518051920151909216600160a01b026001600160a01b0390911617600182015560a08801519294509092508691600282019061097390826155b0565b509050507f2f017e855ca4666f28134f4e57d6c215643dd22172128f0455f479cd7c57f2e88682863332876040516109b09695949392919061566a565b60405180910390a1505050505050565b60408051610100810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c0830181905260e083015291516355ee627560e01b81529091600c9173__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590610a43906001600160c01b03198816906004016156b5565b602060405180830381865af4158015610a5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8291906156ca565b815260208082019290925260409081015f2081516101008101835281546001600160601b038082168352600160601b8204169482019490945263ffffffff600160c01b8504811693820193909352600160e01b909304909116606083015260018101546001600160a01b038116608084015264ffffffffff600160a01b9091041660a083015260028101805460c084019190610b1d9061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b499061552f565b8015610b945780601f10610b6b57610100808354040283529160200191610b94565b820191905f5260205f20905b815481529060010190602001808311610b7757829003601f168201915b50505050508152602001600382018054610bad9061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd99061552f565b8015610c245780601f10610bfb57610100808354040283529160200191610c24565b820191905f5260205f20905b815481529060010190602001808311610c0757829003601f168201915b5050505050815250509050919050565b5f610c3e3361087e565b610c4883836131e5565b9392505050565b604080516080810182525f8082526020820181905291810191909152606080820152600b5f610c7f846017612f80565b815260208082019290925260409081015f208151608081018352815460c081901b6001600160c01b0319168252600160401b810460ff16151594820194909452600160481b90930463ffffffff1691830191909152600181018054606084019190610bad9061552f565b610cf23361087e565b5f610cfe846017612f80565b90505f80610d0c8385612fcb565b5f858152600b602090815260409182902089518154928b0151938b015163ffffffff16600160481b0263ffffffff60481b19941515600160401b0268ffffffffffffffffff1990941660c09290921c919091179290921792909216178155606088015192945090925086916001820190610d8690826155b0565b509050507fe960847e97f8a43de8e7a7a6152c864a89cb6b55e8b46681b41d4c614fbee9778682863332876040516109b09695949392919061566a565b610dcc3361087e565b5f610dd884600b612f80565b90505f80610de68385612fcb565b5f858152600860205260409020875192945090925086918190610e0990826155b0565b5060209190910151600190910180546001600160a01b0319166001600160a01b039092169190911790556040517ffb6ab1b17bdd1e79b770513680d33dd87b6b352476f3d4f9fc2418ad57ab9905906109b09088908490889033903290899061566a565b5f610e773361087e565b610e7f613355565b604051630f37f38f60e41b81526001600160401b03821660048201529091505f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610eda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610efe91906156ca565b9050610f09816133e5565b5f818152600e602090815260409182902085518154928701519387015160608801516001600160601b039283166001600160c01b031990951694909417600160601b92909516919091029390931765ffffffffffff60c01b1916600160c01b9315159390930264ffffffffff60c81b191692909217600160c81b64ffffffffff92831602178255608085015160018301805464ffffffffff19169190921617905560a08401518491906002820190610fc190826155b0565b5060c08201516003820190610fd690826155b0565b5060e08201516004820190610feb90826155b0565b5050505f818152600760205260409020547fe296db687d9aabcda96659491302a529c398d8dcf066ecab41adebed06a71d55908390610100900460ff16604080516001600160401b03909316835260ff9091166020830152339082015232606082015260800160405180910390a150919050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af41580156110c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e791906156e1565b92915050565b6110f63361087e565b5f611102836017612f80565b90505f806111108385612fcb565b915091507fe960847e97f8a43de8e7a7a6152c864a89cb6b55e8b46681b41d4c614fbee97785828633328760405161114d9695949392919061566a565b60405180910390a15050505050565b6111a36040805160c0810182525f80825260208083018290528284018290526060830182905283518085019094528184528301529060808201908152602001606081525090565b600d5f6111b1846016612f80565b815260208082019290925260409081015f20815160c081018352815464ffffffffff8082168352650100000000008204811683870152600160501b820416828501526001600160601b03600160781b90910481166060830152835180850190945260018301546001600160a01b0381168552600160a01b90041693830193909352608083019190915260028101805460a084019190610bad9061552f565b6112583361087e565b5f61126483600f612f80565b905061126f816133e5565b5f8181526009602090815260408083208551868401516001600160601b03909116600160601b6001600160a01b03928316021782558683015160019092018054606089015160808a015160a08b015160c08c0151969095166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b921515929092029190911760ff60b81b1916600160b81b9215159290920291909117905560079091529020547f55c89d942c4cdaf50df15dfa812580b4246be40868dd2e7b4f002ec972657d6b908490610100900460ff165b604080516001600160601b03909316835260ff909116602083015233908201523260608201526080015b60405180910390a1505050565b61139e3361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906113e1906001600160c01b03198716906004016156b5565b602060405180830381865af41580156113fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142091906156ca565b905061142b816133e5565b5f818152600c6020908152604091829020845181549286015193860151606087015163ffffffff908116600160e01b026001600160e01b0391909216600160c01b02166001600160c01b036001600160601b03968716600160601b026001600160c01b03199096169690931695909517939093171692909217178155608083015160018201805460a086015164ffffffffff16600160a01b026001600160c81b03199091166001600160a01b039093169290921791909117905560c083015183919060028201906114fc90826155b0565b5060e0820151600382019061151190826155b0565b5050505f818152600760205260409020547f91da34dfa31974c4906c0658e7beb45ba0721f93a70e50942e77932cce7d8b0d908490610100900460ff165b604080516001600160c01b0319909316835260ff90911660208301523390820152326060820152608001611388565b6115873361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906115ca906001600160c01b03198716906004016156b5565b602060405180830381865af41580156115e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160991906156ca565b9050611614816133e5565b5f818152600a60209081526040918290208451918501516001600160a01b03928316600160a01b6001600160601b039092168202178255928501516001820180546060880151608089015160a08a015160c08b01519588166001600160c01b03199094169390931763ffffffff9092169097021765ffffffffffff60c01b1916600160c01b64ffffffffff9097169690960260ff60e81b191695909517600160e81b951515959095029490941760ff60f01b1916600160f01b911515919091021790925560e08401516002830180546001600160a01b03191691909216179055610100830151839190600382019061170c90826155b0565b50610120820151600482019061172290826155b0565b5050505f818152600760205260409020547f05bfde9bf10cfb02076d77cd133bc8b091c41ef515166c17b2361a684fc6b924908490610100900460ff1661154f565b5f61176e3361087e565b610c488383613690565b5f6117823361087e565b610c4883836137e8565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156117ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061181291906156e1565b156118405760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146118815760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401611837565b60ff8084165f908152600160209081526040808320888516845282528083208585168452909152902054166118e45760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401611837565b50505050565b6040805160e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260095f61193084600f612f80565b815260208082019290925260409081015f20815160e08101835281546001600160601b03811682526001600160a01b03600160601b9091048116948201949094526001909101549283169181019190915260ff600160a01b8304811615156060830152600160a81b8304811615156080830152600160b01b83048116151560a0830152600160b81b909204909116151560c082015292915050565b6119d43361087e565b604051630f37f38f60e41b81526001600160401b03841660048201525f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015611a2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a5091906156ca565b90505f80611a5e8385612fcb565b5f858152600e602090815260409182902089518154928b0151938b015160608c01516001600160601b039283166001600160c01b031990951694909417600160601b92909516919091029390931765ffffffffffff60c01b1916600160c01b9315159390930264ffffffffff60c81b191692909217600160c81b64ffffffffff92831602178255608089015160018301805464ffffffffff19169190921617905560a088015192945090925086916002820190611b1b90826155b0565b5060c08201516003820190611b3090826155b0565b5060e08201516004820190611b4590826155b0565b509050507fcd6efe20de8bda1c84f56479214f5c845ed9932acb46890901bb98bef682554d8682863332876040516109b0969594939291906156fc565b33611b8b612684565b6001600160a01b0316816001600160a01b031614611bc65760405162d1953b60e31b81526001600160a01b0382166004820152602401611837565b816001600160a01b03163b5f03611bfb576040516361798f2f60e11b81526001600160a01b0383166004820152602401611837565b611c0482613940565b5050565b611c113361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611c54906001600160c01b03198816906004016156b5565b602060405180830381865af4158015611c6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9391906156ca565b90505f80611ca18385612fcb565b9150915084600a5f8581526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151815f0160146101000a8154816001600160601b0302191690836001600160601b031602179055506040820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160010160146101000a81548163ffffffff021916908363ffffffff16021790555060808201518160010160186101000a81548164ffffffffff021916908364ffffffffff16021790555060a082015181600101601d6101000a81548160ff02191690831515021790555060c082015181600101601e6101000a81548160ff02191690831515021790555060e0820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816003019081611e0b91906155b0565b506101208201516004820190611e2190826155b0565b509050507fa8e6a06b96b5dad840c21bc79949e878d0f743ad0a1ba821d6d0870fcec079bb8682863332876040516109b096959493929190615747565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015611ea25750825b90505f826001600160401b03166001148015611ebd5750303b155b905081158015611ecb575080155b15611ee95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f1357845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f789190615793565b9050611f83816139a0565b611f8b6139b4565b50508315611fcf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161114d565b5050505050565b5f8051602061596283398151915280545f9190600160a01b900460ff16611ffd575f612006565b638fb3603760e01b5b91505090565b6120153361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590612058906001600160c01b03198816906004016156b5565b602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209791906156ca565b90505f806120a58385612fcb565b5f858152600c602090815260409182902089518154928b0151938b015160608c015163ffffffff908116600160e01b026001600160e01b0391909216600160c01b02166001600160c01b036001600160601b03968716600160601b026001600160c01b03199096169690931695909517939093171692909217178155608088015160018201805460a08b015164ffffffffff16600160a01b026001600160c81b03199091166001600160a01b039093169290921791909117905560c08801519294509092508691600282019061217b90826155b0565b5060e0820151600382019061219090826155b0565b509050507fc4ad93e06e3375a8710bb9cd30ed30b0a69d9aab524480a05f51568c66b8e3c98682863332876040516109b096959493929190615747565b6121d63361087e565b5f6121e284600f612f80565b90505f806121f08385612fcb565b5f858152600960209081526040918290208951918a01516001600160601b03909216600160601b6001600160a01b0393841602178155898301516001909101805460608c015160808d015160a08e015160c08f0151959096166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b931515939093029290921760ff60b81b1916600160b81b911515919091021790555191935091507fab6330e3b0f09e536bb75b9c192c588e6833a785d9097c0483661778fc3b5ca1906109b09088908490889033903290899061566a565b5f6122ef3361087e565b610c4883836139c6565b6123023361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590612345906001600160c01b03198716906004016156b5565b602060405180830381865af4158015612360573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061238491906156ca565b90505f806123928385612fcb565b915091507fa8e6a06b96b5dad840c21bc79949e878d0f743ad0a1ba821d6d0870fcec079bb85828633328760405161114d96959493929190615747565b6123d83361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee62759061241b906001600160c01b03198716906004016156b5565b602060405180830381865af4158015612436573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061245a91906156ca565b90505f806124688385612fcb565b915091507fc4ad93e06e3375a8710bb9cd30ed30b0a69d9aab524480a05f51568c66b8e3c985828633328760405161114d96959493929190615747565b5f6124af3361087e565b610c488383613b1e565b6124c23361087e565b6124cb82613c76565b5f6124d783600b612f80565b90506124e2816133e5565b5f8181526008602052604090208251839190819061250090826155b0565b50602091820151600190910180546001600160a01b0319166001600160a01b039092169190911790555f828152600790915260409020547f99debd4964e0a4ae18ad50bcea2c6cc21c02c47c6526460f830cda565bb35ffd908490610100900460ff1661135e565b6125713361087e565b604051630f37f38f60e41b81526001600160401b03831660048201525f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af41580156125c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125ed91906156ca565b90505f806125fb8385612fcb565b915091507fcd6efe20de8bda1c84f56479214f5c845ed9932acb46890901bb98bef682554d85828633328760405161114d969594939291906156fc565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024016110a8565b5f80516020615962833981519152546001600160a01b031690565b60408051610140810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c0830182905260e08301829052610100830181905261012083015291516355ee627560e01b81529091600a9173__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590612732906001600160c01b03198816906004016156b5565b602060405180830381865af415801561274d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061277191906156ca565b815260208082019290925260409081015f2081516101408101835281546001600160a01b0380821683526001600160601b03600160a01b92839004169583019590955260018301548086169483019490945263ffffffff90840416606082015264ffffffffff600160c01b840416608082015260ff600160e81b84048116151560a0830152600160f01b909304909216151560c0830152600281015490921660e08201526003820180549192916101008401919061282e9061552f565b80601f016020809104026020016040519081016040528092919081815260200182805461285a9061552f565b80156128a55780601f1061287c576101008083540402835291602001916128a5565b820191905f5260205f20905b81548152906001019060200180831161288857829003601f168201915b50505050508152602001600482018054610bad9061552f565b6128c73361087e565b6128d082613c76565b5f6128dc836016612f80565b90506128e7816133e5565b5f818152600d602090815260409182902084518154838701519487015160608801516001600160601b03908116600160781b026bffffffffffffffffffffffff60781b1964ffffffffff938416600160501b0216600160501b600160d81b0319988416650100000000000269ffffffffffffffffffff19909516939095169290921792909217959095169190911793909317815560808501518051920151909216600160a01b026001600160a01b0390911617600182015560a083015183919060028201906129b690826155b0565b5050505f818152600760205260409020547fe4ae723f12a479272b917f87ec8cec8e499456fd990a74003daf0b80d0b32ed3908490610100900460ff1661135e565b5f612a023361087e565b610c488383613d79565b60408051808201909152606081525f602082015260085f612a2e84600b612f80565b81526020019081526020015f206040518060400160405290815f82018054612a559061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054612a819061552f565b8015612acc5780601f10612aa357610100808354040283529160200191612acc565b820191905f5260205f20905b815481529060010190602001808311612aaf57829003601f168201915b5050509183525050600191909101546001600160a01b031660209091015292915050565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015612b4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c4891906156ca565b612b7a3361087e565b612b8382613c76565b5f612b8f836017612f80565b9050612b9a816133e5565b5f818152600b602090815260409182902084518154928601519386015163ffffffff16600160481b0263ffffffff60481b19941515600160401b0268ffffffffffffffffff1990941660c09290921c91909117929092179290921617815560608301518391906001820190612c0f90826155b0565b5050505f818152600760205260409020547f74d7be5c20e6cf628ccae9cc370ffd1d2a95a8164eb772c89be0ed1242752d0e908490610100900460ff1661135e565b612c5a3361087e565b5f612c66836016612f80565b90505f80612c748385612fcb565b915091507f2f017e855ca4666f28134f4e57d6c215643dd22172128f0455f479cd7c57f2e885828633328760405161114d9695949392919061566a565b60408051610100810182525f8082526020820181905281830181905260608083018290526080830182905260a0830181905260c0830181905260e08301529151630f37f38f60e41b81526001600160401b03841660048201529091600e9173__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015612d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d6d91906156ca565b815260208082019290925260409081015f2081516101008101835281546001600160601b038082168352600160601b82041694820194909452600160c01b840460ff16151592810192909252600160c81b90920464ffffffffff9081166060830152600183015416608082015260028201805491929160a084019190612df29061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054612e1e9061552f565b8015612e695780601f10612e4057610100808354040283529160200191612e69565b820191905f5260205f20905b815481529060010190602001808311612e4c57829003601f168201915b5050505050815260200160038201805461282e9061552f565b5f805160206159628339815191525f80612eba612e9d612684565b8730612eac60045f8a8c6157ae565b612eb5916157d5565b613ed1565b9150915081612f785763ffffffff811615612f5557825460ff60a01b1916600160a01b178355612ee8612684565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612f179392919061580b565b5f604051808303815f87803b158015612f2e575f80fd5b505af1158015612f40573d5f803e3d5ffd5b5050845460ff60a01b1916855550612f789050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611837565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401612b32565b60405163037c8cb160e51b815260ff821660048201525f90819073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561301f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061304391906156e1565b1561306457604051631260077f60e21b815260048101859052602401611837565b50505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930464ffffffffff1692919073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156130dd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061310191906156e1565b15613122576040516310b1404560e21b815260048101869052602401611837565b60ff8085161461315157805461313e90839060ff16818761178c565b805461ff00191661010060ff8616021781555b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613198573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131bc919061584a565b815464ffffffffff91909116620100000266ffffffffff00001990911617905590939092509050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613254573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327891906156e1565b6132a057604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f908152600360205260409020546132c4911684613fd9565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fc813323abc29b7cc59ddd274e5941cad2a987aa85c181fbde230bfb449b000969161333d9187918791879164ffffffffff90911690615865565b60405180910390a161334e8461405e565b5092915050565b600680545f918261336583615895565b9091555050600654604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af41580156133bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133e091906158b9565b905090565b604051634b00e98f60e11b8152600481018290525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015613435573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061345991906158d4565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156134ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134d091906156e1565b156134f357604051633d61be7d60e11b815260ff82166004820152602401611837565b5f828152600760205260409081902080549151638d38cd4b60e01b81526201000090920464ffffffffff1660048301529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af415801561355e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358291906156e1565b156135ac57604051637791d47d60e01b81526004810184905260ff83166024820152604401611837565b6135b582612638565b6135d7576040516391eb5e8760e01b815260ff83166004820152602401611837565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561361f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613643919061584a565b60ff9384165f81815260208190526040902054845461ffff19169091179416610100029390931766ffffffffff000019166201000064ffffffffff94909416939093029290921790555050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156136ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061372391906156e1565b61374b57604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f9081526004602052604090205461376f9116846140fd565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f5d0252a8f87c13449ff1a0e89d6a9d8dff6a3860c4cbbae6bd98d16f0924115b9161333d9187918791879164ffffffffff90911690615865565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613857573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387b91906156e1565b6138a357604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f908152600360205260409020546138c79116846140fd565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fcc72dbc9604f941e2273f4dfa0b71700384aa0f5da7c3fef80ecb075ac0010f89161333d9187918791879164ffffffffff90911690615865565b5f8051602061596283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6139a8614147565b6139b181614190565b50565b6139bc614147565b6139c46141a1565b565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613a35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a5991906156e1565b613a8157604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260026020526040902054613aa5911684613fd9565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fa9c12735dda7f4e5a00ab4e6a4cfdc194c4f03f3885a5f18abfa66b77b8cdae39161333d9187918791879164ffffffffff90911690615865565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613b8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bb191906156e1565b613bd957604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260026020526040902054613bfd9116846140fd565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f561cfda68ea43752c3141f3761d148409c741e20d766a95c64721f2c6ace5ba29161333d9187918791879164ffffffffff90911690615865565b6001600160601b0381165f9081526005602052604090819020549051638d38cd4b60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613ce4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d0891906156e1565b15613d31576040516314d5804160e01b81526001600160601b0382166004820152602401611837565b613d3a8161405e565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613de8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0c91906156e1565b613e3457604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260046020526040902054613e58911684613fd9565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f52a6c3cc342afb5a41442a5b4757dbdd11e508f0f75a902a75a29d0409905a999161333d9187918791879164ffffffffff90911690615865565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613f3f91906158ef565b5f60405180830381855afa9150503d805f8114613f77576040519150601f19603f3d011682016040523d82523d5f602084013e613f7c565b606091505b50915091508115613fce576040815110613fae5780806020019051810190613fa49190615905565b9094509250613fce565b6020815110613fce5780806020019051810190613fcb91906156e1565b93505b505094509492505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561403a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c489190615932565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156140a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140c9919061584a565b6001600160601b03919091165f908152600560205260409020805464ffffffffff191664ffffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa229060440161401f565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166139c457604051631afcd79f60e31b815260040160405180910390fd5b614198614147565b6139b181613940565b6141a96141f9565b6141b1614216565b6141b961424a565b6141c161428e565b6141c96142aa565b6141d16142f7565b6141d9614317565b6141e161432b565b6141e961436a565b6141f1614374565b6139c4614388565b61420660165b60056143b0565b6139c460165b60055b60c86143f2565b614220600b6141ff565b61422e600b6005606e6143f2565b61423c600b606e60056143f2565b6139c4600b606e60d26143f2565b6142566015600a6143b0565b6142656015600a5b60146143f2565b6142746015600a5b601e6143f2565b6142826015600a60286143f2565b6139c46015602861420f565b61429b602b5b603c6143b0565b6139c4602b5b603c60dc6143f2565b6142b6602d60326143b0565b6142c2602d603261425e565b6142d0602d603260336143f2565b6142dc602d603261426d565b6142e8602d603361420f565b6139c4602d60335b60486143f2565b614301602e614294565b61430b602e6142a1565b6139c4602e603c6142f0565b614321602c6141ff565b6139c4602c61420c565b614335602f6141ff565b614344602f60055b60466143f2565b614352602f600560076143f2565b61435e602f600761433d565b6139c4602f60056142f0565b6139c4600f6141ff565b61437e600c6141ff565b6139c460296141ff565b614392600e6141ff565b61439c60176141ff565b6143a660306141ff565b6139c460316141ff565b60ff8281165f9081526020819052604090205416156143d1576143d161594d565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561442a5761442a61594d565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b03811681146139b1575f80fd5b803561448281614463565b919050565b5f60208284031215614497575f80fd5b8135610c4881614463565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156144d8576144d86144a2565b60405290565b60405160c081016001600160401b03811182821017156144d8576144d86144a2565b60405161010081016001600160401b03811182821017156144d8576144d86144a2565b60405160e081016001600160401b03811182821017156144d8576144d86144a2565b60405161014081016001600160401b03811182821017156144d8576144d86144a2565b64ffffffffff811681146139b1575f80fd5b803561448281614568565b6001600160a01b03811681146139b1575f80fd5b803561448281614585565b5f604082840312156145b4575f80fd5b6145bc6144b6565b905081356145c981614585565b815260208201356145d981614463565b602082015292915050565b5f82601f8301126145f3575f80fd5b8135602083015f806001600160401b03841115614612576146126144a2565b50604051601f19601f85018116603f011681018181106001600160401b0382111715614640576146406144a2565b604052838152905080828401871015614657575f80fd5b838360208301375f602085830101528094505050505092915050565b5f60e08284031215614683575f80fd5b61468b6144de565b9050813561469881614568565b815260208201356146a881614568565b60208201526146b96040830161457a565b60408201526146ca60608301614477565b60608201526146dc83608084016145a4565b608082015260c08201356001600160401b038111156146f9575f80fd5b614705848285016145e4565b60a08301525092915050565b60ff811681146139b1575f80fd5b5f805f60608486031215614731575f80fd5b833561473c81614463565b925060208401356001600160401b03811115614756575f80fd5b61476286828701614673565b925050604084013561477381614711565b809150509250925092565b5f6020828403121561478e575f80fd5b5035919050565b5f602082840312156147a5575f80fd5b8135610c4881614711565b6001600160c01b0319811681146139b1575f80fd5b5f602082840312156147d5575f80fd5b8135610c48816147b0565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201525f602083015161483d60408401826001600160601b03169052565b50604083015163ffffffff8116606084015250606083015163ffffffff811660808401525060808301516001600160a01b03811660a08401525060a083015164ffffffffff811660c08401525060c083015161010060e08401526148a56101208401826147e0565b905060e0840151601f19848303016101008501526148c382826147e0565b95945050505050565b5f80604083850312156148dd575f80fd5b82356148e881614463565b915060208301356148f881614463565b809150509250929050565b602081526001600160401b0360c01b825116602082015260208201511515604082015263ffffffff60408301511660608201525f606083015160808084015261494f60a08401826147e0565b949350505050565b80151581146139b1575f80fd5b803561448281614957565b63ffffffff811681146139b1575f80fd5b80356144828161496f565b5f6080828403121561499b575f80fd5b604051608081016001600160401b03811182821017156149bd576149bd6144a2565b60405290508082356149ce816147b0565b815260208301356149de81614957565b602082015260408301356149f18161496f565b604082015260608301356001600160401b03811115614a0e575f80fd5b614a1a858286016145e4565b6060830152505092915050565b5f805f60608486031215614a39575f80fd5b8335614a4481614463565b925060208401356001600160401b03811115614a5e575f80fd5b6147628682870161498b565b5f60408284031215614a7a575f80fd5b614a826144b6565b905081356001600160401b03811115614a99575f80fd5b614aa5848285016145e4565b82525060208201356145d981614585565b5f805f60608486031215614ac8575f80fd5b8335614ad381614463565b925060208401356001600160401b03811115614aed575f80fd5b61476286828701614a6a565b5f6101008284031215614b0a575f80fd5b614b12614500565b9050614b1d82614477565b8152614b2b60208301614477565b6020820152614b3c60408301614964565b6040820152614b4d6060830161457a565b6060820152614b5e6080830161457a565b608082015260a08201356001600160401b03811115614b7b575f80fd5b614b87848285016145e4565b60a08301525060c08201356001600160401b03811115614ba5575f80fd5b614bb1848285016145e4565b60c08301525060e08201356001600160401b03811115614bcf575f80fd5b614bdb848285016145e4565b60e08301525092915050565b5f60208284031215614bf7575f80fd5b81356001600160401b03811115614c0c575f80fd5b61494f84828501614af9565b5f8060408385031215614c29575f80fd5b8235614c3481614463565b915060208301356148f881614711565b6020815264ffffffffff825116602082015264ffffffffff602083015116604082015264ffffffffff60408301511660608201526001600160601b0360608301511660808201525f6080830151614cba60a084018280516001600160a01b031682526020908101516001600160601b0316910152565b5060a083015160e08084015261494f6101008401826147e0565b5f60e08284031215614ce4575f80fd5b614cec614523565b90508135614cf981614463565b81526020820135614d0981614585565b60208201526040820135614d1c81614585565b60408201526060820135614d2f81614957565b6060820152614d4060808301614964565b6080820152614d5160a08301614964565b60a0820152614d6260c08301614964565b60c082015292915050565b5f806101008385031215614d7f575f80fd5b8235614d8a81614463565b9150614d998460208501614cd4565b90509250929050565b5f6101008284031215614db3575f80fd5b614dbb614500565b9050614dc682614477565b8152614dd460208301614477565b6020820152614de560408301614980565b6040820152614df660608301614980565b6060820152614e0760808301614599565b6080820152614e1860a0830161457a565b60a082015260c08201356001600160401b03811115614ba5575f80fd5b5f8060408385031215614e46575f80fd5b8235614e51816147b0565b915060208301356001600160401b03811115614e6b575f80fd5b614e7785828601614da2565b9150509250929050565b5f6101408284031215614e92575f80fd5b614e9a614545565b9050614ea582614599565b8152614eb360208301614477565b6020820152614ec460408301614599565b6040820152614ed560608301614980565b6060820152614ee66080830161457a565b6080820152614ef760a08301614964565b60a0820152614f0860c08301614964565b60c0820152614f1960e08301614599565b60e08201526101008201356001600160401b03811115614f37575f80fd5b614f43848285016145e4565b610100830152506101208201356001600160401b03811115614f63575f80fd5b614f6f848285016145e4565b6101208301525092915050565b5f8060408385031215614f8d575f80fd5b8235614f98816147b0565b915060208301356001600160401b03811115614fb2575f80fd5b614e7785828601614e81565b5f805f8060808587031215614fd1575f80fd5b8435614fdc81614711565b93506020850135614fec81614711565b92506040850135614ffc81614711565b9150606085013561500c81614711565b939692955090935050565b5f60e0820190506001600160601b03835116825260018060a01b03602084015116602083015260018060a01b036040840151166040830152606083015115156060830152608083015161506e608084018215159052565b5060a083015161508260a084018215159052565b5060c083015161334e60c084018215159052565b6001600160401b03811681146139b1575f80fd5b5f805f606084860312156150bc575f80fd5b83356150c781615096565b925060208401356001600160401b038111156150e1575f80fd5b61476286828701614af9565b5f602082840312156150fd575f80fd5b8135610c4881614585565b5f805f6060848603121561511a575f80fd5b8335615125816147b0565b925060208401356001600160401b0381111561513f575f80fd5b61476286828701614e81565b5f805f6060848603121561515d575f80fd5b8335615168816147b0565b925060208401356001600160401b03811115615182575f80fd5b61476286828701614da2565b5f805f61012084860312156151a1575f80fd5b83356151ac81614463565b92506151bb8560208601614cd4565b915061010084013561477381614711565b5f80604083850312156151dd575f80fd5b8235614c34816147b0565b5f80604083850312156151f9575f80fd5b823561520481614463565b915060208301356001600160401b0381111561521e575f80fd5b614e7785828601614a6a565b5f806040838503121561523b575f80fd5b8235614c3481615096565b602081526152606020820183516001600160a01b03169052565b5f602083015161527b60408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015163ffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015180151560c08401525060c083015180151560e08401525060e08301516001600160a01b038116610100840152506101008301516101406101208401526153056101608401826147e0565b9050610120840151601f19848303016101408501526148c382826147e0565b5f8060408385031215615335575f80fd5b823561534081614463565b915060208301356001600160401b0381111561535a575f80fd5b614e7785828601614673565b5f805f60608486031215615378575f80fd5b833561538381614711565b9250602084013561539381614711565b9150604084013561477381614711565b602081525f8251604060208401526153be60608401826147e0565b602094909401516001600160a01b0316604093909301929092525090919050565b5f80604083850312156153f0575f80fd5b82356153fb81614711565b9150602083013560ff19811681146148f8575f80fd5b5f8060408385031215615422575f80fd5b823561542d81614463565b915060208301356001600160401b03811115615447575f80fd5b614e778582860161498b565b5f60208284031215615463575f80fd5b8135610c4881615096565b602081526154886020820183516001600160601b03169052565b5f60208301516154a360408401826001600160601b03169052565b506040830151801515606084015250606083015164ffffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015161010060c08401526154f36101208401826147e0565b905060c0840151601f198483030160e085015261551082826147e0565b91505060e0840151601f19848303016101008501526148c382826147e0565b600181811c9082168061554357607f821691505b60208210810361556157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156155ab57805f5260205f20601f840160051c8101602085101561558c5750805b601f840160051c820191505b81811015611fcf575f8155600101615598565b505050565b81516001600160401b038111156155c9576155c96144a2565b6155dd816155d7845461552f565b84615567565b6020601f82116001811461560f575f83156155f85750848201515b5f19600385901b1c1916600184901b178455611fcf565b5f84815260208120601f198516915b8281101561563e578785015182556020948501946001909201910161561e565b508482101561565b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160601b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160c01b031991909116815260200190565b5f602082840312156156da575f80fd5b5051919050565b5f602082840312156156f1575f80fd5b8151610c4881614957565b6001600160401b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160c01b031996909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b5f602082840312156157a3575f80fd5b8151610c4881614585565b5f80858511156157bc575f80fd5b838611156157c8575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561334e576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6020828403121561585a575f80fd5b8151610c4881614568565b6001600160601b03948516815292841660208401529216604082015264ffffffffff909116606082015260800190565b5f600182016158b257634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f602082840312156158c9575f80fd5b8151610c4881615096565b5f602082840312156158e4575f80fd5b8151610c4881614711565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615916575f80fd5b825161592181614957565b60208401519092506148f88161496f565b5f60208284031215615942575f80fd5b8151610c4881614463565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220fc2b418046b2ae51be66326ff89d2d52df4e45b9f76543f184b35deed1a9906b64736f6c634300081a0033",
         | 
| 2682 | 
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610297575f3560e01c80637d417f0d11610161578063b4d7efe2116100ca578063e9e96c7011610084578063e9e96c70146107b5578063f0ea17c3146107f2578063f48016ce14610812578063f9b3fe3c14610833578063fe1f18d614610846578063febe92af14610859575f80fd5b8063b4d7efe214610729578063bf1db3f91461073c578063bf7e214f1461074f578063d06458c61461076f578063d7719f461461078f578063e80c61ed146107a2575f80fd5b80639f8151e51161011b5780639f8151e514610633578063a284222914610646578063a5961b4c14610659578063af902500146106f0578063b0628dc314610703578063b1d7d56814610716575f80fd5b80637d417f0d146105a65780638129fc1c146105b95780638eb9000d146105c15780638fb36037146105ec578063962605591461060d57806396f4df2f14610620575f80fd5b806340529b0f1161020357806353ebe129116101bd57806353ebe129146104c757806354f1fa81146104da57806357f80bbf146104ed5780635eede1741461050d578063733044ca146105805780637a9e5e4b14610593575f80fd5b806340529b0f146104485780634793b4ab1461045b578063490840b41461047b5780634a8243921461048e5780634bb2d197146104a1578063533086d4146104b4575f80fd5b8063248a77dd11610254578063248a77dd146103a157806327b1d792146103b45780632bce2d7c146103d45780633048cb3c146103e757806334777712146103fa57806338a699a414610425575f80fd5b80630232ca491461029b57806308077cd9146102e357806309648a9d146102f85780630d358181146103315780631d3be47714610356578063228e42ec14610376575b5f80fd5b6102c66102a9366004614487565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b6102f66102f136600461471f565b610879565b005b61031f61030636600461477e565b5f90815260076020526040902054610100900460ff1690565b60405160ff90911681526020016102da565b61031f61033f366004614795565b60ff9081165f908152602081905260409020541690565b6103696103643660046147c5565b6109c0565b6040516102da919061480e565b6102c6610384366004614487565b6001600160601b039081165f908152600260205260409020541690565b6102c66103af3660046148cc565b610c34565b6103c76103c2366004614487565b610c4f565b6040516102da9190614903565b6102f66103e2366004614a27565b610ce9565b6102f66103f5366004614ab6565b610dc3565b61040d610408366004614be7565b610e6d565b6040516001600160401b0390911681526020016102da565b61043861043336600461477e565b61105f565b60405190151581526020016102da565b6102f6610456366004614c18565b6110ed565b61046e610469366004614487565b61115c565b6040516102da9190614c44565b6102f6610489366004614d6d565b61124f565b6102f661049c366004614e35565b611395565b6102f66104af366004614f7c565b61157e565b6102c66104c23660046148cc565b611764565b6102c66104d53660046148cc565b611778565b6102f66104e8366004614fbe565b61178c565b6105006104fb366004614487565b6118ea565b6040516102da9190615017565b61055661051b366004614487565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016102da565b6102f661058e3660046150aa565b6119cb565b6102f66105a13660046150ed565b611b82565b6102f66105b4366004615108565b611c08565b6102f6611e5e565b6102c66105cf366004614487565b6001600160601b039081165f908152600360205260409020541690565b6105f4611fd6565b6040516001600160e01b031990911681526020016102da565b6102f661061b36600461514b565b61200c565b6102f661062e36600461518e565b6121cd565b6102c66106413660046148cc565b6122e5565b6102f66106543660046151cc565b6122f9565b6106bf61066736600461477e565b60408051606080820183525f80835260208084018290529284018190529384526007825292829020825193840183525460ff80821685526101008204169184019190915262010000900464ffffffffff169082015290565b60408051825160ff9081168252602080850151909116908201529181015164ffffffffff16908201526060016102da565b6102f66106fe3660046151cc565b6123cf565b6102c66107113660046148cc565b6124a5565b6102f66107243660046151e8565b6124b9565b6102f661073736600461522a565b612568565b61043861074a366004614795565b612638565b610757612684565b6040516001600160a01b0390911681526020016102da565b61078261077d3660046147c5565b61269f565b6040516102da9190615246565b6102f661079d366004615324565b6128be565b6102c66107b03660046148cc565b6129f8565b6104386107c3366004615366565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b610805610800366004614487565b612a0c565b6040516102da91906153a3565b6108256108203660046153df565b612af0565b6040519081526020016102da565b6102f6610841366004615411565b612b71565b6102f6610854366004614c18565b612c51565b61086c610867366004615453565b612cb1565b6040516102da919061546e565b610885335b5f36612e82565b5f610891846016612f80565b90505f8061089f8385612fcb565b5f858152600d602090815260409182902089518154838c0151948c015160608d01516001600160601b03908116600160781b026bffffffffffffffffffffffff60781b1964ffffffffff938416600160501b0216600160501b600160d81b0319988416650100000000000269ffffffffffffffffffff19909516939095169290921792909217959095169190911793909317815560808a01518051920151909216600160a01b026001600160a01b0390911617600182015560a08801519294509092508691600282019061097390826155b0565b509050507f2f017e855ca4666f28134f4e57d6c215643dd22172128f0455f479cd7c57f2e88682863332876040516109b09695949392919061566a565b60405180910390a1505050505050565b60408051610100810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c0830181905260e083015291516355ee627560e01b81529091600c9173__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590610a43906001600160c01b03198816906004016156b5565b602060405180830381865af4158015610a5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8291906156ca565b815260208082019290925260409081015f2081516101008101835281546001600160601b038082168352600160601b8204169482019490945263ffffffff600160c01b8504811693820193909352600160e01b909304909116606083015260018101546001600160a01b038116608084015264ffffffffff600160a01b9091041660a083015260028101805460c084019190610b1d9061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b499061552f565b8015610b945780601f10610b6b57610100808354040283529160200191610b94565b820191905f5260205f20905b815481529060010190602001808311610b7757829003601f168201915b50505050508152602001600382018054610bad9061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd99061552f565b8015610c245780601f10610bfb57610100808354040283529160200191610c24565b820191905f5260205f20905b815481529060010190602001808311610c0757829003601f168201915b5050505050815250509050919050565b5f610c3e3361087e565b610c4883836131e5565b9392505050565b604080516080810182525f8082526020820181905291810191909152606080820152600b5f610c7f846017612f80565b815260208082019290925260409081015f208151608081018352815460c081901b6001600160c01b0319168252600160401b810460ff16151594820194909452600160481b90930463ffffffff1691830191909152600181018054606084019190610bad9061552f565b610cf23361087e565b5f610cfe846017612f80565b90505f80610d0c8385612fcb565b5f858152600b602090815260409182902089518154928b0151938b015163ffffffff16600160481b0263ffffffff60481b19941515600160401b0268ffffffffffffffffff1990941660c09290921c919091179290921792909216178155606088015192945090925086916001820190610d8690826155b0565b509050507fe960847e97f8a43de8e7a7a6152c864a89cb6b55e8b46681b41d4c614fbee9778682863332876040516109b09695949392919061566a565b610dcc3361087e565b5f610dd884600b612f80565b90505f80610de68385612fcb565b5f858152600860205260409020875192945090925086918190610e0990826155b0565b5060209190910151600190910180546001600160a01b0319166001600160a01b039092169190911790556040517ffb6ab1b17bdd1e79b770513680d33dd87b6b352476f3d4f9fc2418ad57ab9905906109b09088908490889033903290899061566a565b5f610e773361087e565b610e7f613355565b604051630f37f38f60e41b81526001600160401b03821660048201529091505f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610eda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610efe91906156ca565b9050610f09816133e5565b5f818152600e602090815260409182902085518154928701519387015160608801516001600160601b039283166001600160c01b031990951694909417600160601b92909516919091029390931765ffffffffffff60c01b1916600160c01b9315159390930264ffffffffff60c81b191692909217600160c81b64ffffffffff92831602178255608085015160018301805464ffffffffff19169190921617905560a08401518491906002820190610fc190826155b0565b5060c08201516003820190610fd690826155b0565b5060e08201516004820190610feb90826155b0565b5050505f818152600760205260409020547fe296db687d9aabcda96659491302a529c398d8dcf066ecab41adebed06a71d55908390610100900460ff16604080516001600160401b03909316835260ff9091166020830152339082015232606082015260800160405180910390a150919050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af41580156110c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e791906156e1565b92915050565b6110f63361087e565b5f611102836017612f80565b90505f806111108385612fcb565b915091507fe960847e97f8a43de8e7a7a6152c864a89cb6b55e8b46681b41d4c614fbee97785828633328760405161114d9695949392919061566a565b60405180910390a15050505050565b6111a36040805160c0810182525f80825260208083018290528284018290526060830182905283518085019094528184528301529060808201908152602001606081525090565b600d5f6111b1846016612f80565b815260208082019290925260409081015f20815160c081018352815464ffffffffff8082168352650100000000008204811683870152600160501b820416828501526001600160601b03600160781b90910481166060830152835180850190945260018301546001600160a01b0381168552600160a01b90041693830193909352608083019190915260028101805460a084019190610bad9061552f565b6112583361087e565b5f61126483600f612f80565b905061126f816133e5565b5f8181526009602090815260408083208551868401516001600160601b03909116600160601b6001600160a01b03928316021782558683015160019092018054606089015160808a015160a08b015160c08c0151969095166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b921515929092029190911760ff60b81b1916600160b81b9215159290920291909117905560079091529020547f55c89d942c4cdaf50df15dfa812580b4246be40868dd2e7b4f002ec972657d6b908490610100900460ff165b604080516001600160601b03909316835260ff909116602083015233908201523260608201526080015b60405180910390a1505050565b61139e3361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906113e1906001600160c01b03198716906004016156b5565b602060405180830381865af41580156113fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142091906156ca565b905061142b816133e5565b5f818152600c6020908152604091829020845181549286015193860151606087015163ffffffff908116600160e01b026001600160e01b0391909216600160c01b02166001600160c01b036001600160601b03968716600160601b026001600160c01b03199096169690931695909517939093171692909217178155608083015160018201805460a086015164ffffffffff16600160a01b026001600160c81b03199091166001600160a01b039093169290921791909117905560c083015183919060028201906114fc90826155b0565b5060e0820151600382019061151190826155b0565b5050505f818152600760205260409020547f91da34dfa31974c4906c0658e7beb45ba0721f93a70e50942e77932cce7d8b0d908490610100900460ff165b604080516001600160c01b0319909316835260ff90911660208301523390820152326060820152608001611388565b6115873361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906115ca906001600160c01b03198716906004016156b5565b602060405180830381865af41580156115e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160991906156ca565b9050611614816133e5565b5f818152600a60209081526040918290208451918501516001600160a01b03928316600160a01b6001600160601b039092168202178255928501516001820180546060880151608089015160a08a015160c08b01519588166001600160c01b03199094169390931763ffffffff9092169097021765ffffffffffff60c01b1916600160c01b64ffffffffff9097169690960260ff60e81b191695909517600160e81b951515959095029490941760ff60f01b1916600160f01b911515919091021790925560e08401516002830180546001600160a01b03191691909216179055610100830151839190600382019061170c90826155b0565b50610120820151600482019061172290826155b0565b5050505f818152600760205260409020547f05bfde9bf10cfb02076d77cd133bc8b091c41ef515166c17b2361a684fc6b924908490610100900460ff1661154f565b5f61176e3361087e565b610c488383613690565b5f6117823361087e565b610c4883836137e8565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156117ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061181291906156e1565b156118405760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146118815760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401611837565b60ff8084165f908152600160209081526040808320888516845282528083208585168452909152902054166118e45760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401611837565b50505050565b6040805160e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260095f61193084600f612f80565b815260208082019290925260409081015f20815160e08101835281546001600160601b03811682526001600160a01b03600160601b9091048116948201949094526001909101549283169181019190915260ff600160a01b8304811615156060830152600160a81b8304811615156080830152600160b01b83048116151560a0830152600160b81b909204909116151560c082015292915050565b6119d43361087e565b604051630f37f38f60e41b81526001600160401b03841660048201525f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015611a2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a5091906156ca565b90505f80611a5e8385612fcb565b5f858152600e602090815260409182902089518154928b0151938b015160608c01516001600160601b039283166001600160c01b031990951694909417600160601b92909516919091029390931765ffffffffffff60c01b1916600160c01b9315159390930264ffffffffff60c81b191692909217600160c81b64ffffffffff92831602178255608089015160018301805464ffffffffff19169190921617905560a088015192945090925086916002820190611b1b90826155b0565b5060c08201516003820190611b3090826155b0565b5060e08201516004820190611b4590826155b0565b509050507fcd6efe20de8bda1c84f56479214f5c845ed9932acb46890901bb98bef682554d8682863332876040516109b0969594939291906156fc565b33611b8b612684565b6001600160a01b0316816001600160a01b031614611bc65760405162d1953b60e31b81526001600160a01b0382166004820152602401611837565b816001600160a01b03163b5f03611bfb576040516361798f2f60e11b81526001600160a01b0383166004820152602401611837565b611c0482613940565b5050565b611c113361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611c54906001600160c01b03198816906004016156b5565b602060405180830381865af4158015611c6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9391906156ca565b90505f80611ca18385612fcb565b9150915084600a5f8581526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151815f0160146101000a8154816001600160601b0302191690836001600160601b031602179055506040820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160010160146101000a81548163ffffffff021916908363ffffffff16021790555060808201518160010160186101000a81548164ffffffffff021916908364ffffffffff16021790555060a082015181600101601d6101000a81548160ff02191690831515021790555060c082015181600101601e6101000a81548160ff02191690831515021790555060e0820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816003019081611e0b91906155b0565b506101208201516004820190611e2190826155b0565b509050507fa8e6a06b96b5dad840c21bc79949e878d0f743ad0a1ba821d6d0870fcec079bb8682863332876040516109b096959493929190615747565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015611ea25750825b90505f826001600160401b03166001148015611ebd5750303b155b905081158015611ecb575080155b15611ee95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f1357845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f789190615793565b9050611f83816139a0565b611f8b6139b4565b50508315611fcf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161114d565b5050505050565b5f8051602061596283398151915280545f9190600160a01b900460ff16611ffd575f612006565b638fb3603760e01b5b91505090565b6120153361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590612058906001600160c01b03198816906004016156b5565b602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209791906156ca565b90505f806120a58385612fcb565b5f858152600c602090815260409182902089518154928b0151938b015160608c015163ffffffff908116600160e01b026001600160e01b0391909216600160c01b02166001600160c01b036001600160601b03968716600160601b026001600160c01b03199096169690931695909517939093171692909217178155608088015160018201805460a08b015164ffffffffff16600160a01b026001600160c81b03199091166001600160a01b039093169290921791909117905560c08801519294509092508691600282019061217b90826155b0565b5060e0820151600382019061219090826155b0565b509050507fc4ad93e06e3375a8710bb9cd30ed30b0a69d9aab524480a05f51568c66b8e3c98682863332876040516109b096959493929190615747565b6121d63361087e565b5f6121e284600f612f80565b90505f806121f08385612fcb565b5f858152600960209081526040918290208951918a01516001600160601b03909216600160601b6001600160a01b0393841602178155898301516001909101805460608c015160808d015160a08e015160c08f0151959096166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b931515939093029290921760ff60b81b1916600160b81b911515919091021790555191935091507fab6330e3b0f09e536bb75b9c192c588e6833a785d9097c0483661778fc3b5ca1906109b09088908490889033903290899061566a565b5f6122ef3361087e565b610c4883836139c6565b6123023361087e565b6040516355ee627560e01b81525f9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590612345906001600160c01b03198716906004016156b5565b602060405180830381865af4158015612360573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061238491906156ca565b90505f806123928385612fcb565b915091507fa8e6a06b96b5dad840c21bc79949e878d0f743ad0a1ba821d6d0870fcec079bb85828633328760405161114d96959493929190615747565b6123d83361087e565b6040516355ee627560e01b81525f9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee62759061241b906001600160c01b03198716906004016156b5565b602060405180830381865af4158015612436573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061245a91906156ca565b90505f806124688385612fcb565b915091507fc4ad93e06e3375a8710bb9cd30ed30b0a69d9aab524480a05f51568c66b8e3c985828633328760405161114d96959493929190615747565b5f6124af3361087e565b610c488383613b1e565b6124c23361087e565b6124cb82613c76565b5f6124d783600b612f80565b90506124e2816133e5565b5f8181526008602052604090208251839190819061250090826155b0565b50602091820151600190910180546001600160a01b0319166001600160a01b039092169190911790555f828152600790915260409020547f99debd4964e0a4ae18ad50bcea2c6cc21c02c47c6526460f830cda565bb35ffd908490610100900460ff1661135e565b6125713361087e565b604051630f37f38f60e41b81526001600160401b03831660048201525f9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af41580156125c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125ed91906156ca565b90505f806125fb8385612fcb565b915091507fcd6efe20de8bda1c84f56479214f5c845ed9932acb46890901bb98bef682554d85828633328760405161114d969594939291906156fc565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024016110a8565b5f80516020615962833981519152546001600160a01b031690565b60408051610140810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c0830182905260e08301829052610100830181905261012083015291516355ee627560e01b81529091600a9173__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590612732906001600160c01b03198816906004016156b5565b602060405180830381865af415801561274d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061277191906156ca565b815260208082019290925260409081015f2081516101408101835281546001600160a01b0380821683526001600160601b03600160a01b92839004169583019590955260018301548086169483019490945263ffffffff90840416606082015264ffffffffff600160c01b840416608082015260ff600160e81b84048116151560a0830152600160f01b909304909216151560c0830152600281015490921660e08201526003820180549192916101008401919061282e9061552f565b80601f016020809104026020016040519081016040528092919081815260200182805461285a9061552f565b80156128a55780601f1061287c576101008083540402835291602001916128a5565b820191905f5260205f20905b81548152906001019060200180831161288857829003601f168201915b50505050508152602001600482018054610bad9061552f565b6128c73361087e565b6128d082613c76565b5f6128dc836016612f80565b90506128e7816133e5565b5f818152600d602090815260409182902084518154838701519487015160608801516001600160601b03908116600160781b026bffffffffffffffffffffffff60781b1964ffffffffff938416600160501b0216600160501b600160d81b0319988416650100000000000269ffffffffffffffffffff19909516939095169290921792909217959095169190911793909317815560808501518051920151909216600160a01b026001600160a01b0390911617600182015560a083015183919060028201906129b690826155b0565b5050505f818152600760205260409020547fe4ae723f12a479272b917f87ec8cec8e499456fd990a74003daf0b80d0b32ed3908490610100900460ff1661135e565b5f612a023361087e565b610c488383613d79565b60408051808201909152606081525f602082015260085f612a2e84600b612f80565b81526020019081526020015f206040518060400160405290815f82018054612a559061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054612a819061552f565b8015612acc5780601f10612aa357610100808354040283529160200191612acc565b820191905f5260205f20905b815481529060010190602001808311612aaf57829003601f168201915b5050509183525050600191909101546001600160a01b031660209091015292915050565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015612b4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c4891906156ca565b612b7a3361087e565b612b8382613c76565b5f612b8f836017612f80565b9050612b9a816133e5565b5f818152600b602090815260409182902084518154928601519386015163ffffffff16600160481b0263ffffffff60481b19941515600160401b0268ffffffffffffffffff1990941660c09290921c91909117929092179290921617815560608301518391906001820190612c0f90826155b0565b5050505f818152600760205260409020547f74d7be5c20e6cf628ccae9cc370ffd1d2a95a8164eb772c89be0ed1242752d0e908490610100900460ff1661135e565b612c5a3361087e565b5f612c66836016612f80565b90505f80612c748385612fcb565b915091507f2f017e855ca4666f28134f4e57d6c215643dd22172128f0455f479cd7c57f2e885828633328760405161114d9695949392919061566a565b60408051610100810182525f8082526020820181905281830181905260608083018290526080830182905260a0830181905260c0830181905260e08301529151630f37f38f60e41b81526001600160401b03841660048201529091600e9173__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015612d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d6d91906156ca565b815260208082019290925260409081015f2081516101008101835281546001600160601b038082168352600160601b82041694820194909452600160c01b840460ff16151592810192909252600160c81b90920464ffffffffff9081166060830152600183015416608082015260028201805491929160a084019190612df29061552f565b80601f0160208091040260200160405190810160405280929190818152602001828054612e1e9061552f565b8015612e695780601f10612e4057610100808354040283529160200191612e69565b820191905f5260205f20905b815481529060010190602001808311612e4c57829003601f168201915b5050505050815260200160038201805461282e9061552f565b5f805160206159628339815191525f80612eba612e9d612684565b8730612eac60045f8a8c6157ae565b612eb5916157d5565b613ed1565b9150915081612f785763ffffffff811615612f5557825460ff60a01b1916600160a01b178355612ee8612684565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612f179392919061580b565b5f604051808303815f87803b158015612f2e575f80fd5b505af1158015612f40573d5f803e3d5ffd5b5050845460ff60a01b1916855550612f789050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611837565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401612b32565b60405163037c8cb160e51b815260ff821660048201525f90819073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561301f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061304391906156e1565b1561306457604051631260077f60e21b815260048101859052602401611837565b50505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930464ffffffffff1692919073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156130dd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061310191906156e1565b15613122576040516310b1404560e21b815260048101869052602401611837565b60ff8085161461315157805461313e90839060ff16818761178c565b805461ff00191661010060ff8616021781555b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613198573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131bc919061584a565b815464ffffffffff91909116620100000266ffffffffff00001990911617905590939092509050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613254573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327891906156e1565b6132a057604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f908152600360205260409020546132c4911684613fd9565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fc813323abc29b7cc59ddd274e5941cad2a987aa85c181fbde230bfb449b000969161333d9187918791879164ffffffffff90911690615865565b60405180910390a161334e8461405e565b5092915050565b600680545f918261336583615895565b9091555050600654604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af41580156133bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133e091906158b9565b905090565b604051634b00e98f60e11b8152600481018290525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015613435573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061345991906158d4565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156134ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134d091906156e1565b156134f357604051633d61be7d60e11b815260ff82166004820152602401611837565b5f828152600760205260409081902080549151638d38cd4b60e01b81526201000090920464ffffffffff1660048301529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af415801561355e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358291906156e1565b156135ac57604051637791d47d60e01b81526004810184905260ff83166024820152604401611837565b6135b582612638565b6135d7576040516391eb5e8760e01b815260ff83166004820152602401611837565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561361f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613643919061584a565b60ff9384165f81815260208190526040902054845461ffff19169091179416610100029390931766ffffffffff000019166201000064ffffffffff94909416939093029290921790555050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156136ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061372391906156e1565b61374b57604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f9081526004602052604090205461376f9116846140fd565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f5d0252a8f87c13449ff1a0e89d6a9d8dff6a3860c4cbbae6bd98d16f0924115b9161333d9187918791879164ffffffffff90911690615865565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613857573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387b91906156e1565b6138a357604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f908152600360205260409020546138c79116846140fd565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fcc72dbc9604f941e2273f4dfa0b71700384aa0f5da7c3fef80ecb075ac0010f89161333d9187918791879164ffffffffff90911690615865565b5f8051602061596283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6139a8614147565b6139b181614190565b50565b6139bc614147565b6139c46141a1565b565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613a35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a5991906156e1565b613a8157604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260026020526040902054613aa5911684613fd9565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fa9c12735dda7f4e5a00ab4e6a4cfdc194c4f03f3885a5f18abfa66b77b8cdae39161333d9187918791879164ffffffffff90911690615865565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613b8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bb191906156e1565b613bd957604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260026020526040902054613bfd9116846140fd565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f561cfda68ea43752c3141f3761d148409c741e20d766a95c64721f2c6ace5ba29161333d9187918791879164ffffffffff90911690615865565b6001600160601b0381165f9081526005602052604090819020549051638d38cd4b60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613ce4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d0891906156e1565b15613d31576040516314d5804160e01b81526001600160601b0382166004820152602401611837565b613d3a8161405e565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015613de8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0c91906156e1565b613e3457604051631e94ffd760e11b81526001600160601b0382166004820152602401611837565b6001600160601b038085165f90815260046020526040902054613e58911684613fd9565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f52a6c3cc342afb5a41442a5b4757dbdd11e508f0f75a902a75a29d0409905a999161333d9187918791879164ffffffffff90911690615865565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613f3f91906158ef565b5f60405180830381855afa9150503d805f8114613f77576040519150601f19603f3d011682016040523d82523d5f602084013e613f7c565b606091505b50915091508115613fce576040815110613fae5780806020019051810190613fa49190615905565b9094509250613fce565b6020815110613fce5780806020019051810190613fcb91906156e1565b93505b505094509492505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561403a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c489190615932565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156140a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140c9919061584a565b6001600160601b03919091165f908152600560205260409020805464ffffffffff191664ffffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa229060440161401f565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166139c457604051631afcd79f60e31b815260040160405180910390fd5b614198614147565b6139b181613940565b6141a96141f9565b6141b1614216565b6141b961424a565b6141c161428e565b6141c96142aa565b6141d16142f7565b6141d9614317565b6141e161432b565b6141e961436a565b6141f1614374565b6139c4614388565b61420660165b60056143b0565b6139c460165b60055b60c86143f2565b614220600b6141ff565b61422e600b6005606e6143f2565b61423c600b606e60056143f2565b6139c4600b606e60d26143f2565b6142566015600a6143b0565b6142656015600a5b60146143f2565b6142746015600a5b601e6143f2565b6142826015600a60286143f2565b6139c46015602861420f565b61429b602b5b603c6143b0565b6139c4602b5b603c60dc6143f2565b6142b6602d60326143b0565b6142c2602d603261425e565b6142d0602d603260336143f2565b6142dc602d603261426d565b6142e8602d603361420f565b6139c4602d60335b60486143f2565b614301602e614294565b61430b602e6142a1565b6139c4602e603c6142f0565b614321602c6141ff565b6139c4602c61420c565b614335602f6141ff565b614344602f60055b60466143f2565b614352602f600560076143f2565b61435e602f600761433d565b6139c4602f60056142f0565b6139c4600f6141ff565b61437e600c6141ff565b6139c460296141ff565b614392600e6141ff565b61439c60176141ff565b6143a660306141ff565b6139c460316141ff565b60ff8281165f9081526020819052604090205416156143d1576143d161594d565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561442a5761442a61594d565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b03811681146139b1575f80fd5b803561448281614463565b919050565b5f60208284031215614497575f80fd5b8135610c4881614463565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156144d8576144d86144a2565b60405290565b60405160c081016001600160401b03811182821017156144d8576144d86144a2565b60405161010081016001600160401b03811182821017156144d8576144d86144a2565b60405160e081016001600160401b03811182821017156144d8576144d86144a2565b60405161014081016001600160401b03811182821017156144d8576144d86144a2565b64ffffffffff811681146139b1575f80fd5b803561448281614568565b6001600160a01b03811681146139b1575f80fd5b803561448281614585565b5f604082840312156145b4575f80fd5b6145bc6144b6565b905081356145c981614585565b815260208201356145d981614463565b602082015292915050565b5f82601f8301126145f3575f80fd5b8135602083015f806001600160401b03841115614612576146126144a2565b50604051601f19601f85018116603f011681018181106001600160401b0382111715614640576146406144a2565b604052838152905080828401871015614657575f80fd5b838360208301375f602085830101528094505050505092915050565b5f60e08284031215614683575f80fd5b61468b6144de565b9050813561469881614568565b815260208201356146a881614568565b60208201526146b96040830161457a565b60408201526146ca60608301614477565b60608201526146dc83608084016145a4565b608082015260c08201356001600160401b038111156146f9575f80fd5b614705848285016145e4565b60a08301525092915050565b60ff811681146139b1575f80fd5b5f805f60608486031215614731575f80fd5b833561473c81614463565b925060208401356001600160401b03811115614756575f80fd5b61476286828701614673565b925050604084013561477381614711565b809150509250925092565b5f6020828403121561478e575f80fd5b5035919050565b5f602082840312156147a5575f80fd5b8135610c4881614711565b6001600160c01b0319811681146139b1575f80fd5b5f602082840312156147d5575f80fd5b8135610c48816147b0565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201525f602083015161483d60408401826001600160601b03169052565b50604083015163ffffffff8116606084015250606083015163ffffffff811660808401525060808301516001600160a01b03811660a08401525060a083015164ffffffffff811660c08401525060c083015161010060e08401526148a56101208401826147e0565b905060e0840151601f19848303016101008501526148c382826147e0565b95945050505050565b5f80604083850312156148dd575f80fd5b82356148e881614463565b915060208301356148f881614463565b809150509250929050565b602081526001600160401b0360c01b825116602082015260208201511515604082015263ffffffff60408301511660608201525f606083015160808084015261494f60a08401826147e0565b949350505050565b80151581146139b1575f80fd5b803561448281614957565b63ffffffff811681146139b1575f80fd5b80356144828161496f565b5f6080828403121561499b575f80fd5b604051608081016001600160401b03811182821017156149bd576149bd6144a2565b60405290508082356149ce816147b0565b815260208301356149de81614957565b602082015260408301356149f18161496f565b604082015260608301356001600160401b03811115614a0e575f80fd5b614a1a858286016145e4565b6060830152505092915050565b5f805f60608486031215614a39575f80fd5b8335614a4481614463565b925060208401356001600160401b03811115614a5e575f80fd5b6147628682870161498b565b5f60408284031215614a7a575f80fd5b614a826144b6565b905081356001600160401b03811115614a99575f80fd5b614aa5848285016145e4565b82525060208201356145d981614585565b5f805f60608486031215614ac8575f80fd5b8335614ad381614463565b925060208401356001600160401b03811115614aed575f80fd5b61476286828701614a6a565b5f6101008284031215614b0a575f80fd5b614b12614500565b9050614b1d82614477565b8152614b2b60208301614477565b6020820152614b3c60408301614964565b6040820152614b4d6060830161457a565b6060820152614b5e6080830161457a565b608082015260a08201356001600160401b03811115614b7b575f80fd5b614b87848285016145e4565b60a08301525060c08201356001600160401b03811115614ba5575f80fd5b614bb1848285016145e4565b60c08301525060e08201356001600160401b03811115614bcf575f80fd5b614bdb848285016145e4565b60e08301525092915050565b5f60208284031215614bf7575f80fd5b81356001600160401b03811115614c0c575f80fd5b61494f84828501614af9565b5f8060408385031215614c29575f80fd5b8235614c3481614463565b915060208301356148f881614711565b6020815264ffffffffff825116602082015264ffffffffff602083015116604082015264ffffffffff60408301511660608201526001600160601b0360608301511660808201525f6080830151614cba60a084018280516001600160a01b031682526020908101516001600160601b0316910152565b5060a083015160e08084015261494f6101008401826147e0565b5f60e08284031215614ce4575f80fd5b614cec614523565b90508135614cf981614463565b81526020820135614d0981614585565b60208201526040820135614d1c81614585565b60408201526060820135614d2f81614957565b6060820152614d4060808301614964565b6080820152614d5160a08301614964565b60a0820152614d6260c08301614964565b60c082015292915050565b5f806101008385031215614d7f575f80fd5b8235614d8a81614463565b9150614d998460208501614cd4565b90509250929050565b5f6101008284031215614db3575f80fd5b614dbb614500565b9050614dc682614477565b8152614dd460208301614477565b6020820152614de560408301614980565b6040820152614df660608301614980565b6060820152614e0760808301614599565b6080820152614e1860a0830161457a565b60a082015260c08201356001600160401b03811115614ba5575f80fd5b5f8060408385031215614e46575f80fd5b8235614e51816147b0565b915060208301356001600160401b03811115614e6b575f80fd5b614e7785828601614da2565b9150509250929050565b5f6101408284031215614e92575f80fd5b614e9a614545565b9050614ea582614599565b8152614eb360208301614477565b6020820152614ec460408301614599565b6040820152614ed560608301614980565b6060820152614ee66080830161457a565b6080820152614ef760a08301614964565b60a0820152614f0860c08301614964565b60c0820152614f1960e08301614599565b60e08201526101008201356001600160401b03811115614f37575f80fd5b614f43848285016145e4565b610100830152506101208201356001600160401b03811115614f63575f80fd5b614f6f848285016145e4565b6101208301525092915050565b5f8060408385031215614f8d575f80fd5b8235614f98816147b0565b915060208301356001600160401b03811115614fb2575f80fd5b614e7785828601614e81565b5f805f8060808587031215614fd1575f80fd5b8435614fdc81614711565b93506020850135614fec81614711565b92506040850135614ffc81614711565b9150606085013561500c81614711565b939692955090935050565b5f60e0820190506001600160601b03835116825260018060a01b03602084015116602083015260018060a01b036040840151166040830152606083015115156060830152608083015161506e608084018215159052565b5060a083015161508260a084018215159052565b5060c083015161334e60c084018215159052565b6001600160401b03811681146139b1575f80fd5b5f805f606084860312156150bc575f80fd5b83356150c781615096565b925060208401356001600160401b038111156150e1575f80fd5b61476286828701614af9565b5f602082840312156150fd575f80fd5b8135610c4881614585565b5f805f6060848603121561511a575f80fd5b8335615125816147b0565b925060208401356001600160401b0381111561513f575f80fd5b61476286828701614e81565b5f805f6060848603121561515d575f80fd5b8335615168816147b0565b925060208401356001600160401b03811115615182575f80fd5b61476286828701614da2565b5f805f61012084860312156151a1575f80fd5b83356151ac81614463565b92506151bb8560208601614cd4565b915061010084013561477381614711565b5f80604083850312156151dd575f80fd5b8235614c34816147b0565b5f80604083850312156151f9575f80fd5b823561520481614463565b915060208301356001600160401b0381111561521e575f80fd5b614e7785828601614a6a565b5f806040838503121561523b575f80fd5b8235614c3481615096565b602081526152606020820183516001600160a01b03169052565b5f602083015161527b60408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015163ffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015180151560c08401525060c083015180151560e08401525060e08301516001600160a01b038116610100840152506101008301516101406101208401526153056101608401826147e0565b9050610120840151601f19848303016101408501526148c382826147e0565b5f8060408385031215615335575f80fd5b823561534081614463565b915060208301356001600160401b0381111561535a575f80fd5b614e7785828601614673565b5f805f60608486031215615378575f80fd5b833561538381614711565b9250602084013561539381614711565b9150604084013561477381614711565b602081525f8251604060208401526153be60608401826147e0565b602094909401516001600160a01b0316604093909301929092525090919050565b5f80604083850312156153f0575f80fd5b82356153fb81614711565b9150602083013560ff19811681146148f8575f80fd5b5f8060408385031215615422575f80fd5b823561542d81614463565b915060208301356001600160401b03811115615447575f80fd5b614e778582860161498b565b5f60208284031215615463575f80fd5b8135610c4881615096565b602081526154886020820183516001600160601b03169052565b5f60208301516154a360408401826001600160601b03169052565b506040830151801515606084015250606083015164ffffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015161010060c08401526154f36101208401826147e0565b905060c0840151601f198483030160e085015261551082826147e0565b91505060e0840151601f19848303016101008501526148c382826147e0565b600181811c9082168061554357607f821691505b60208210810361556157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156155ab57805f5260205f20601f840160051c8101602085101561558c5750805b601f840160051c820191505b81811015611fcf575f8155600101615598565b505050565b81516001600160401b038111156155c9576155c96144a2565b6155dd816155d7845461552f565b84615567565b6020601f82116001811461560f575f83156155f85750848201515b5f19600385901b1c1916600184901b178455611fcf565b5f84815260208120601f198516915b8281101561563e578785015182556020948501946001909201910161561e565b508482101561565b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160601b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160c01b031991909116815260200190565b5f602082840312156156da575f80fd5b5051919050565b5f602082840312156156f1575f80fd5b8151610c4881614957565b6001600160401b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160c01b031996909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b5f602082840312156157a3575f80fd5b8151610c4881614585565b5f80858511156157bc575f80fd5b838611156157c8575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561334e576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6020828403121561585a575f80fd5b8151610c4881614568565b6001600160601b03948516815292841660208401529216604082015264ffffffffff909116606082015260800190565b5f600182016158b257634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f602082840312156158c9575f80fd5b8151610c4881615096565b5f602082840312156158e4575f80fd5b8151610c4881614711565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615916575f80fd5b825161592181614957565b60208401519092506148f88161496f565b5f60208284031215615942575f80fd5b8151610c4881614463565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220fc2b418046b2ae51be66326ff89d2d52df4e45b9f76543f184b35deed1a9906b64736f6c634300081a0033",
         | 
| 3298 2683 | 
             
              "linkReferences": {
         | 
| 3299 2684 | 
             
                "contracts/type/Amount.sol": {
         | 
| 3300 2685 | 
             
                  "AmountLib": [
         | 
| 3301 2686 | 
             
                    {
         | 
| 3302 2687 | 
             
                      "length": 20,
         | 
| 3303 | 
            -
                      "start":  | 
| 2688 | 
            +
                      "start": 16417
         | 
| 3304 2689 | 
             
                    },
         | 
| 3305 2690 | 
             
                    {
         | 
| 3306 2691 | 
             
                      "length": 20,
         | 
| 3307 | 
            -
                      "start":  | 
| 2692 | 
            +
                      "start": 16709
         | 
| 3308 2693 | 
             
                    }
         | 
| 3309 2694 | 
             
                  ]
         | 
| 3310 2695 | 
             
                },
         | 
| @@ -3312,95 +2697,95 @@ | |
| 3312 2697 | 
             
                  "BlocknumberLib": [
         | 
| 3313 2698 | 
             
                    {
         | 
| 3314 2699 | 
             
                      "length": 20,
         | 
| 3315 | 
            -
                      "start":  | 
| 2700 | 
            +
                      "start": 12659
         | 
| 3316 2701 | 
             
                    },
         | 
| 3317 2702 | 
             
                    {
         | 
| 3318 2703 | 
             
                      "length": 20,
         | 
| 3319 | 
            -
                      "start":  | 
| 3320 | 
            -
                    }
         | 
| 3321 | 
            -
                  ]
         | 
| 3322 | 
            -
                },
         | 
| 3323 | 
            -
                "contracts/type/ClaimId.sol": {
         | 
| 3324 | 
            -
                  "ClaimIdLib": [
         | 
| 2704 | 
            +
                      "start": 12860
         | 
| 2705 | 
            +
                    },
         | 
| 3325 2706 | 
             
                    {
         | 
| 3326 2707 | 
             
                      "length": 20,
         | 
| 3327 | 
            -
                      "start":  | 
| 3328 | 
            -
                    }
         | 
| 3329 | 
            -
                  ]
         | 
| 3330 | 
            -
                },
         | 
| 3331 | 
            -
                "contracts/type/DistributorType.sol": {
         | 
| 3332 | 
            -
                  "DistributorTypeLib": [
         | 
| 2708 | 
            +
                      "start": 13638
         | 
| 2709 | 
            +
                    },
         | 
| 3333 2710 | 
             
                    {
         | 
| 3334 2711 | 
             
                      "length": 20,
         | 
| 3335 | 
            -
                      "start":  | 
| 2712 | 
            +
                      "start": 13818
         | 
| 3336 2713 | 
             
                    },
         | 
| 3337 2714 | 
             
                    {
         | 
| 3338 2715 | 
             
                      "length": 20,
         | 
| 3339 | 
            -
                      "start":  | 
| 2716 | 
            +
                      "start": 14055
         | 
| 3340 2717 | 
             
                    },
         | 
| 3341 2718 | 
             
                    {
         | 
| 3342 2719 | 
             
                      "length": 20,
         | 
| 3343 | 
            -
                      "start":  | 
| 3344 | 
            -
                    }
         | 
| 3345 | 
            -
                  ]
         | 
| 3346 | 
            -
                },
         | 
| 3347 | 
            -
                "contracts/type/Key32.sol": {
         | 
| 3348 | 
            -
                  "Key32Lib": [
         | 
| 2720 | 
            +
                      "start": 14399
         | 
| 2721 | 
            +
                    },
         | 
| 3349 2722 | 
             
                    {
         | 
| 3350 2723 | 
             
                      "length": 20,
         | 
| 3351 | 
            -
                      "start":  | 
| 2724 | 
            +
                      "start": 14877
         | 
| 3352 2725 | 
             
                    },
         | 
| 3353 2726 | 
             
                    {
         | 
| 3354 2727 | 
             
                      "length": 20,
         | 
| 3355 | 
            -
                      "start":  | 
| 2728 | 
            +
                      "start": 15221
         | 
| 3356 2729 | 
             
                    },
         | 
| 3357 2730 | 
             
                    {
         | 
| 3358 2731 | 
             
                      "length": 20,
         | 
| 3359 | 
            -
                      "start":  | 
| 2732 | 
            +
                      "start": 15564
         | 
| 3360 2733 | 
             
                    },
         | 
| 3361 2734 | 
             
                    {
         | 
| 3362 2735 | 
             
                      "length": 20,
         | 
| 3363 | 
            -
                      "start":  | 
| 2736 | 
            +
                      "start": 15824
         | 
| 3364 2737 | 
             
                    },
         | 
| 3365 2738 | 
             
                    {
         | 
| 3366 2739 | 
             
                      "length": 20,
         | 
| 3367 | 
            -
                      "start":  | 
| 2740 | 
            +
                      "start": 16512
         | 
| 2741 | 
            +
                    }
         | 
| 2742 | 
            +
                  ]
         | 
| 2743 | 
            +
                },
         | 
| 2744 | 
            +
                "contracts/type/DistributorType.sol": {
         | 
| 2745 | 
            +
                  "DistributorTypeLib": [
         | 
| 2746 | 
            +
                    {
         | 
| 2747 | 
            +
                      "length": 20,
         | 
| 2748 | 
            +
                      "start": 5560
         | 
| 3368 2749 | 
             
                    },
         | 
| 3369 2750 | 
             
                    {
         | 
| 3370 2751 | 
             
                      "length": 20,
         | 
| 3371 | 
            -
                      "start":  | 
| 2752 | 
            +
                      "start": 7234
         | 
| 3372 2753 | 
             
                    },
         | 
| 3373 2754 | 
             
                    {
         | 
| 3374 2755 | 
             
                      "length": 20,
         | 
| 3375 | 
            -
                      "start":  | 
| 2756 | 
            +
                      "start": 9011
         | 
| 3376 2757 | 
             
                    },
         | 
| 3377 2758 | 
             
                    {
         | 
| 3378 2759 | 
             
                      "length": 20,
         | 
| 3379 | 
            -
                      "start":  | 
| 2760 | 
            +
                      "start": 10016
         | 
| 3380 2761 | 
             
                    }
         | 
| 3381 2762 | 
             
                  ]
         | 
| 3382 2763 | 
             
                },
         | 
| 3383 | 
            -
                "contracts/type/ | 
| 3384 | 
            -
                  " | 
| 2764 | 
            +
                "contracts/type/Key32.sol": {
         | 
| 2765 | 
            +
                  "Key32Lib": [
         | 
| 2766 | 
            +
                    {
         | 
| 2767 | 
            +
                      "length": 20,
         | 
| 2768 | 
            +
                      "start": 11060
         | 
| 2769 | 
            +
                    },
         | 
| 3385 2770 | 
             
                    {
         | 
| 3386 2771 | 
             
                      "length": 20,
         | 
| 3387 | 
            -
                      "start":  | 
| 2772 | 
            +
                      "start": 13341
         | 
| 3388 2773 | 
             
                    }
         | 
| 3389 2774 | 
             
                  ]
         | 
| 3390 2775 | 
             
                },
         | 
| 3391 | 
            -
                "contracts/type/ | 
| 3392 | 
            -
                  " | 
| 2776 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 2777 | 
            +
                  "NftIdLib": [
         | 
| 3393 2778 | 
             
                    {
         | 
| 3394 2779 | 
             
                      "length": 20,
         | 
| 3395 | 
            -
                      "start":  | 
| 2780 | 
            +
                      "start": 12233
         | 
| 3396 2781 | 
             
                    }
         | 
| 3397 2782 | 
             
                  ]
         | 
| 3398 2783 | 
             
                },
         | 
| 3399 | 
            -
                "contracts/type/ | 
| 3400 | 
            -
                  " | 
| 2784 | 
            +
                "contracts/type/ObjectType.sol": {
         | 
| 2785 | 
            +
                  "ObjectTypeLib": [
         | 
| 3401 2786 | 
             
                    {
         | 
| 3402 2787 | 
             
                      "length": 20,
         | 
| 3403 | 
            -
                      "start":  | 
| 2788 | 
            +
                      "start": 13460
         | 
| 3404 2789 | 
             
                    }
         | 
| 3405 2790 | 
             
                  ]
         | 
| 3406 2791 | 
             
                },
         | 
| @@ -3408,15 +2793,19 @@ | |
| 3408 2793 | 
             
                  "ReferralLib": [
         | 
| 3409 2794 | 
             
                    {
         | 
| 3410 2795 | 
             
                      "length": 20,
         | 
| 3411 | 
            -
                      "start":  | 
| 2796 | 
            +
                      "start": 2609
         | 
| 3412 2797 | 
             
                    },
         | 
| 3413 2798 | 
             
                    {
         | 
| 3414 2799 | 
             
                      "length": 20,
         | 
| 3415 | 
            -
                      "start":  | 
| 2800 | 
            +
                      "start": 5071
         | 
| 3416 2801 | 
             
                    },
         | 
| 3417 2802 | 
             
                    {
         | 
| 3418 2803 | 
             
                      "length": 20,
         | 
| 3419 | 
            -
                      "start":  | 
| 2804 | 
            +
                      "start": 8262
         | 
| 2805 | 
            +
                    },
         | 
| 2806 | 
            +
                    {
         | 
| 2807 | 
            +
                      "length": 20,
         | 
| 2808 | 
            +
                      "start": 9225
         | 
| 3420 2809 | 
             
                    }
         | 
| 3421 2810 | 
             
                  ]
         | 
| 3422 2811 | 
             
                },
         | 
| @@ -3424,35 +2813,23 @@ | |
| 3424 2813 | 
             
                  "RequestIdLib": [
         | 
| 3425 2814 | 
             
                    {
         | 
| 3426 2815 | 
             
                      "length": 20,
         | 
| 3427 | 
            -
                      "start":  | 
| 3428 | 
            -
                    },
         | 
| 3429 | 
            -
                    {
         | 
| 3430 | 
            -
                      "length": 20,
         | 
| 3431 | 
            -
                      "start": 2946
         | 
| 2816 | 
            +
                      "start": 3778
         | 
| 3432 2817 | 
             
                    },
         | 
| 3433 2818 | 
             
                    {
         | 
| 3434 2819 | 
             
                      "length": 20,
         | 
| 3435 | 
            -
                      "start":  | 
| 2820 | 
            +
                      "start": 6676
         | 
| 3436 2821 | 
             
                    },
         | 
| 3437 2822 | 
             
                    {
         | 
| 3438 2823 | 
             
                      "length": 20,
         | 
| 3439 | 
            -
                      "start":  | 
| 3440 | 
            -
                    }
         | 
| 3441 | 
            -
                  ]
         | 
| 3442 | 
            -
                },
         | 
| 3443 | 
            -
                "contracts/type/RiskId.sol": {
         | 
| 3444 | 
            -
                  "RiskIdLib": [
         | 
| 3445 | 
            -
                    {
         | 
| 3446 | 
            -
                      "length": 20,
         | 
| 3447 | 
            -
                      "start": 3127
         | 
| 2824 | 
            +
                      "start": 9649
         | 
| 3448 2825 | 
             
                    },
         | 
| 3449 2826 | 
             
                    {
         | 
| 3450 2827 | 
             
                      "length": 20,
         | 
| 3451 | 
            -
                      "start":  | 
| 2828 | 
            +
                      "start": 11569
         | 
| 3452 2829 | 
             
                    },
         | 
| 3453 2830 | 
             
                    {
         | 
| 3454 2831 | 
             
                      "length": 20,
         | 
| 3455 | 
            -
                      "start":  | 
| 2832 | 
            +
                      "start": 13220
         | 
| 3456 2833 | 
             
                    }
         | 
| 3457 2834 | 
             
                  ]
         | 
| 3458 2835 | 
             
                },
         | 
| @@ -3460,27 +2837,23 @@ | |
| 3460 2837 | 
             
                  "StateIdLib": [
         | 
| 3461 2838 | 
             
                    {
         | 
| 3462 2839 | 
             
                      "length": 20,
         | 
| 3463 | 
            -
                      "start":  | 
| 3464 | 
            -
                    },
         | 
| 3465 | 
            -
                    {
         | 
| 3466 | 
            -
                      "length": 20,
         | 
| 3467 | 
            -
                      "start": 3883
         | 
| 2840 | 
            +
                      "start": 4266
         | 
| 3468 2841 | 
             
                    },
         | 
| 3469 2842 | 
             
                    {
         | 
| 3470 2843 | 
             
                      "length": 20,
         | 
| 3471 | 
            -
                      "start":  | 
| 2844 | 
            +
                      "start": 6102
         | 
| 3472 2845 | 
             
                    },
         | 
| 3473 2846 | 
             
                    {
         | 
| 3474 2847 | 
             
                      "length": 20,
         | 
| 3475 | 
            -
                      "start":  | 
| 2848 | 
            +
                      "start": 9858
         | 
| 3476 2849 | 
             
                    },
         | 
| 3477 2850 | 
             
                    {
         | 
| 3478 2851 | 
             
                      "length": 20,
         | 
| 3479 | 
            -
                      "start":  | 
| 2852 | 
            +
                      "start": 12295
         | 
| 3480 2853 | 
             
                    },
         | 
| 3481 2854 | 
             
                    {
         | 
| 3482 2855 | 
             
                      "length": 20,
         | 
| 3483 | 
            -
                      "start":  | 
| 2856 | 
            +
                      "start": 12485
         | 
| 3484 2857 | 
             
                    }
         | 
| 3485 2858 | 
             
                  ]
         | 
| 3486 2859 | 
             
                }
         | 
| @@ -3490,11 +2863,11 @@ | |
| 3490 2863 | 
             
                  "AmountLib": [
         | 
| 3491 2864 | 
             
                    {
         | 
| 3492 2865 | 
             
                      "length": 20,
         | 
| 3493 | 
            -
                      "start":  | 
| 2866 | 
            +
                      "start": 16385
         | 
| 3494 2867 | 
             
                    },
         | 
| 3495 2868 | 
             
                    {
         | 
| 3496 2869 | 
             
                      "length": 20,
         | 
| 3497 | 
            -
                      "start":  | 
| 2870 | 
            +
                      "start": 16677
         | 
| 3498 2871 | 
             
                    }
         | 
| 3499 2872 | 
             
                  ]
         | 
| 3500 2873 | 
             
                },
         | 
| @@ -3502,59 +2875,59 @@ | |
| 3502 2875 | 
             
                  "BlocknumberLib": [
         | 
| 3503 2876 | 
             
                    {
         | 
| 3504 2877 | 
             
                      "length": 20,
         | 
| 3505 | 
            -
                      "start":  | 
| 2878 | 
            +
                      "start": 12627
         | 
| 3506 2879 | 
             
                    },
         | 
| 3507 2880 | 
             
                    {
         | 
| 3508 2881 | 
             
                      "length": 20,
         | 
| 3509 | 
            -
                      "start":  | 
| 3510 | 
            -
                    }
         | 
| 3511 | 
            -
                  ]
         | 
| 3512 | 
            -
                },
         | 
| 3513 | 
            -
                "contracts/type/ClaimId.sol": {
         | 
| 3514 | 
            -
                  "ClaimIdLib": [
         | 
| 2882 | 
            +
                      "start": 12828
         | 
| 2883 | 
            +
                    },
         | 
| 3515 2884 | 
             
                    {
         | 
| 3516 2885 | 
             
                      "length": 20,
         | 
| 3517 | 
            -
                      "start":  | 
| 3518 | 
            -
                    }
         | 
| 3519 | 
            -
                  ]
         | 
| 3520 | 
            -
                },
         | 
| 3521 | 
            -
                "contracts/type/DistributorType.sol": {
         | 
| 3522 | 
            -
                  "DistributorTypeLib": [
         | 
| 2886 | 
            +
                      "start": 13606
         | 
| 2887 | 
            +
                    },
         | 
| 3523 2888 | 
             
                    {
         | 
| 3524 2889 | 
             
                      "length": 20,
         | 
| 3525 | 
            -
                      "start":  | 
| 2890 | 
            +
                      "start": 13786
         | 
| 3526 2891 | 
             
                    },
         | 
| 3527 2892 | 
             
                    {
         | 
| 3528 2893 | 
             
                      "length": 20,
         | 
| 3529 | 
            -
                      "start":  | 
| 2894 | 
            +
                      "start": 14023
         | 
| 3530 2895 | 
             
                    },
         | 
| 3531 2896 | 
             
                    {
         | 
| 3532 2897 | 
             
                      "length": 20,
         | 
| 3533 | 
            -
                      "start":  | 
| 3534 | 
            -
                    }
         | 
| 3535 | 
            -
             | 
| 3536 | 
            -
             | 
| 3537 | 
            -
             | 
| 3538 | 
            -
             | 
| 2898 | 
            +
                      "start": 14367
         | 
| 2899 | 
            +
                    },
         | 
| 2900 | 
            +
                    {
         | 
| 2901 | 
            +
                      "length": 20,
         | 
| 2902 | 
            +
                      "start": 14845
         | 
| 2903 | 
            +
                    },
         | 
| 3539 2904 | 
             
                    {
         | 
| 3540 2905 | 
             
                      "length": 20,
         | 
| 3541 | 
            -
                      "start":  | 
| 2906 | 
            +
                      "start": 15189
         | 
| 3542 2907 | 
             
                    },
         | 
| 3543 2908 | 
             
                    {
         | 
| 3544 2909 | 
             
                      "length": 20,
         | 
| 3545 | 
            -
                      "start":  | 
| 2910 | 
            +
                      "start": 15532
         | 
| 3546 2911 | 
             
                    },
         | 
| 3547 2912 | 
             
                    {
         | 
| 3548 2913 | 
             
                      "length": 20,
         | 
| 3549 | 
            -
                      "start":  | 
| 2914 | 
            +
                      "start": 15792
         | 
| 3550 2915 | 
             
                    },
         | 
| 3551 2916 | 
             
                    {
         | 
| 3552 2917 | 
             
                      "length": 20,
         | 
| 3553 | 
            -
                      "start":  | 
| 2918 | 
            +
                      "start": 16480
         | 
| 2919 | 
            +
                    }
         | 
| 2920 | 
            +
                  ]
         | 
| 2921 | 
            +
                },
         | 
| 2922 | 
            +
                "contracts/type/DistributorType.sol": {
         | 
| 2923 | 
            +
                  "DistributorTypeLib": [
         | 
| 2924 | 
            +
                    {
         | 
| 2925 | 
            +
                      "length": 20,
         | 
| 2926 | 
            +
                      "start": 5528
         | 
| 3554 2927 | 
             
                    },
         | 
| 3555 2928 | 
             
                    {
         | 
| 3556 2929 | 
             
                      "length": 20,
         | 
| 3557 | 
            -
                      "start":  | 
| 2930 | 
            +
                      "start": 7202
         | 
| 3558 2931 | 
             
                    },
         | 
| 3559 2932 | 
             
                    {
         | 
| 3560 2933 | 
             
                      "length": 20,
         | 
| @@ -3562,11 +2935,19 @@ | |
| 3562 2935 | 
             
                    },
         | 
| 3563 2936 | 
             
                    {
         | 
| 3564 2937 | 
             
                      "length": 20,
         | 
| 3565 | 
            -
                      "start":  | 
| 2938 | 
            +
                      "start": 9984
         | 
| 2939 | 
            +
                    }
         | 
| 2940 | 
            +
                  ]
         | 
| 2941 | 
            +
                },
         | 
| 2942 | 
            +
                "contracts/type/Key32.sol": {
         | 
| 2943 | 
            +
                  "Key32Lib": [
         | 
| 2944 | 
            +
                    {
         | 
| 2945 | 
            +
                      "length": 20,
         | 
| 2946 | 
            +
                      "start": 11028
         | 
| 3566 2947 | 
             
                    },
         | 
| 3567 2948 | 
             
                    {
         | 
| 3568 2949 | 
             
                      "length": 20,
         | 
| 3569 | 
            -
                      "start":  | 
| 2950 | 
            +
                      "start": 13309
         | 
| 3570 2951 | 
             
                    }
         | 
| 3571 2952 | 
             
                  ]
         | 
| 3572 2953 | 
             
                },
         | 
| @@ -3574,7 +2955,7 @@ | |
| 3574 2955 | 
             
                  "NftIdLib": [
         | 
| 3575 2956 | 
             
                    {
         | 
| 3576 2957 | 
             
                      "length": 20,
         | 
| 3577 | 
            -
                      "start":  | 
| 2958 | 
            +
                      "start": 12201
         | 
| 3578 2959 | 
             
                    }
         | 
| 3579 2960 | 
             
                  ]
         | 
| 3580 2961 | 
             
                },
         | 
| @@ -3582,15 +2963,7 @@ | |
| 3582 2963 | 
             
                  "ObjectTypeLib": [
         | 
| 3583 2964 | 
             
                    {
         | 
| 3584 2965 | 
             
                      "length": 20,
         | 
| 3585 | 
            -
                      "start":  | 
| 3586 | 
            -
                    }
         | 
| 3587 | 
            -
                  ]
         | 
| 3588 | 
            -
                },
         | 
| 3589 | 
            -
                "contracts/type/PayoutId.sol": {
         | 
| 3590 | 
            -
                  "PayoutIdLib": [
         | 
| 3591 | 
            -
                    {
         | 
| 3592 | 
            -
                      "length": 20,
         | 
| 3593 | 
            -
                      "start": 9858
         | 
| 2966 | 
            +
                      "start": 13428
         | 
| 3594 2967 | 
             
                    }
         | 
| 3595 2968 | 
             
                  ]
         | 
| 3596 2969 | 
             
                },
         | 
| @@ -3598,15 +2971,19 @@ | |
| 3598 2971 | 
             
                  "ReferralLib": [
         | 
| 3599 2972 | 
             
                    {
         | 
| 3600 2973 | 
             
                      "length": 20,
         | 
| 3601 | 
            -
                      "start":  | 
| 2974 | 
            +
                      "start": 2577
         | 
| 2975 | 
            +
                    },
         | 
| 2976 | 
            +
                    {
         | 
| 2977 | 
            +
                      "length": 20,
         | 
| 2978 | 
            +
                      "start": 5039
         | 
| 3602 2979 | 
             
                    },
         | 
| 3603 2980 | 
             
                    {
         | 
| 3604 2981 | 
             
                      "length": 20,
         | 
| 3605 | 
            -
                      "start":  | 
| 2982 | 
            +
                      "start": 8230
         | 
| 3606 2983 | 
             
                    },
         | 
| 3607 2984 | 
             
                    {
         | 
| 3608 2985 | 
             
                      "length": 20,
         | 
| 3609 | 
            -
                      "start":  | 
| 2986 | 
            +
                      "start": 9193
         | 
| 3610 2987 | 
             
                    }
         | 
| 3611 2988 | 
             
                  ]
         | 
| 3612 2989 | 
             
                },
         | 
| @@ -3614,35 +2991,23 @@ | |
| 3614 2991 | 
             
                  "RequestIdLib": [
         | 
| 3615 2992 | 
             
                    {
         | 
| 3616 2993 | 
             
                      "length": 20,
         | 
| 3617 | 
            -
                      "start":  | 
| 3618 | 
            -
                    },
         | 
| 3619 | 
            -
                    {
         | 
| 3620 | 
            -
                      "length": 20,
         | 
| 3621 | 
            -
                      "start": 2918
         | 
| 2994 | 
            +
                      "start": 3746
         | 
| 3622 2995 | 
             
                    },
         | 
| 3623 2996 | 
             
                    {
         | 
| 3624 2997 | 
             
                      "length": 20,
         | 
| 3625 | 
            -
                      "start":  | 
| 2998 | 
            +
                      "start": 6644
         | 
| 3626 2999 | 
             
                    },
         | 
| 3627 3000 | 
             
                    {
         | 
| 3628 3001 | 
             
                      "length": 20,
         | 
| 3629 | 
            -
                      "start":  | 
| 3630 | 
            -
                    }
         | 
| 3631 | 
            -
                  ]
         | 
| 3632 | 
            -
                },
         | 
| 3633 | 
            -
                "contracts/type/RiskId.sol": {
         | 
| 3634 | 
            -
                  "RiskIdLib": [
         | 
| 3635 | 
            -
                    {
         | 
| 3636 | 
            -
                      "length": 20,
         | 
| 3637 | 
            -
                      "start": 3099
         | 
| 3002 | 
            +
                      "start": 9617
         | 
| 3638 3003 | 
             
                    },
         | 
| 3639 3004 | 
             
                    {
         | 
| 3640 3005 | 
             
                      "length": 20,
         | 
| 3641 | 
            -
                      "start":  | 
| 3006 | 
            +
                      "start": 11537
         | 
| 3642 3007 | 
             
                    },
         | 
| 3643 3008 | 
             
                    {
         | 
| 3644 3009 | 
             
                      "length": 20,
         | 
| 3645 | 
            -
                      "start":  | 
| 3010 | 
            +
                      "start": 13188
         | 
| 3646 3011 | 
             
                    }
         | 
| 3647 3012 | 
             
                  ]
         | 
| 3648 3013 | 
             
                },
         | 
| @@ -3650,27 +3015,23 @@ | |
| 3650 3015 | 
             
                  "StateIdLib": [
         | 
| 3651 3016 | 
             
                    {
         | 
| 3652 3017 | 
             
                      "length": 20,
         | 
| 3653 | 
            -
                      "start":  | 
| 3654 | 
            -
                    },
         | 
| 3655 | 
            -
                    {
         | 
| 3656 | 
            -
                      "length": 20,
         | 
| 3657 | 
            -
                      "start": 3855
         | 
| 3018 | 
            +
                      "start": 4234
         | 
| 3658 3019 | 
             
                    },
         | 
| 3659 3020 | 
             
                    {
         | 
| 3660 3021 | 
             
                      "length": 20,
         | 
| 3661 | 
            -
                      "start":  | 
| 3022 | 
            +
                      "start": 6070
         | 
| 3662 3023 | 
             
                    },
         | 
| 3663 3024 | 
             
                    {
         | 
| 3664 3025 | 
             
                      "length": 20,
         | 
| 3665 | 
            -
                      "start":  | 
| 3026 | 
            +
                      "start": 9826
         | 
| 3666 3027 | 
             
                    },
         | 
| 3667 3028 | 
             
                    {
         | 
| 3668 3029 | 
             
                      "length": 20,
         | 
| 3669 | 
            -
                      "start":  | 
| 3030 | 
            +
                      "start": 12263
         | 
| 3670 3031 | 
             
                    },
         | 
| 3671 3032 | 
             
                    {
         | 
| 3672 3033 | 
             
                      "length": 20,
         | 
| 3673 | 
            -
                      "start":  | 
| 3034 | 
            +
                      "start": 12453
         | 
| 3674 3035 | 
             
                    }
         | 
| 3675 3036 | 
             
                  ]
         | 
| 3676 3037 | 
             
                }
         |